Changeset 14733 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Example.cs
- Timestamp:
- 03/08/17 11:57:42 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Example.cs
r14727 r14733 2 2 3 3 using HeuristicLab.Common; 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 4 5 6 [StorableClass] 5 7 public class Example : DeepCloneable { 6 8 public Example() { … … 17 19 } 18 20 21 [StorableConstructor] 22 public Example(bool deserializing) { } 23 19 24 public void CopyTo(Example example) { 20 25 example.InputArgs = this.InputArgs; … … 30 35 } 31 36 37 [Storable] 32 38 public string[] InputArgs { get; set; } 39 [Storable] 33 40 public string[] OutputArgs { get; set; } 41 [Storable] 34 42 public long[] InputInt { get; set; } 43 [Storable] 35 44 public double[] InputFloat { get; set; } 45 [Storable] 36 46 public bool[] InputBoolean { get; set; } 47 [Storable] 37 48 public long[] OutputInt { get; set; } 49 [Storable] 38 50 public double[] OutputFloat { get; set; } 51 [Storable] 39 52 public bool[] OutputBoolean { get; set; } 40 41 53 42 54 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.