- Timestamp:
- 11/19/15 09:57:06 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.GeneticProgramming/3.3/LawnMower
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.GeneticProgramming/3.3/LawnMower/Problem.cs
r13267 r13269 50 50 } 51 51 52 #region item cloning and persistence 52 53 [StorableConstructor] 53 54 protected Problem(bool deserializing) : base(deserializing) { } … … 59 60 return new Problem(this, cloner); 60 61 } 62 #endregion 61 63 62 64 public Problem() -
trunk/sources/HeuristicLab.Problems.GeneticProgramming/3.3/LawnMower/Solution.cs
r13267 r13269 37 37 public double Quality { get; private set; } 38 38 39 #region item cloning and persistence 39 40 [StorableConstructor] 40 41 private Solution(bool deserializing) : base(deserializing) { } … … 52 53 return new Solution(this, cloner); 53 54 } 55 #endregion 54 56 55 57 public Solution(ISymbolicExpressionTree tree, int length, int width, double quality)
Note: See TracChangeset
for help on using the changeset viewer.