Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/FloatVector/FloatVectorErcOptions.cs @ 14952

Last change on this file since 14952 was 14952, checked in by pkimmesw, 7 years ago

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File size: 1.0 KB
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.FloatVector {
2  using System.Collections.Generic;
3
4  using HeuristicLab.Common;
5  using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
6
7  [StorableClass]
8  public class FloatVectorErcOptions : ErcOption<IReadOnlyList<double>> {
9    public FloatVectorErcOptions() { }
10    public FloatVectorErcOptions(params WeightedErcItem<IReadOnlyList<double>>[] values) : base(true, values) { }
11
12    public FloatVectorErcOptions(bool isEnabled, params WeightedErcItem<IReadOnlyList<double>>[] values) : base(isEnabled, values) { }
13
14    [StorableConstructor]
15    protected FloatVectorErcOptions(bool deserializing) : base(deserializing) { }
16
17    public FloatVectorErcOptions(FloatVectorErcOptions origin, Cloner cloner) : base(origin, cloner) { }
18
19    public override IDeepCloneable Clone(Cloner cloner) {
20      return new FloatVectorErcOptions(this, cloner);
21    }
22
23    public override string ToString() {
24      return "FloatVector";
25    }
26  }
27}
Note: See TracBrowser for help on using the repository browser.