- Timestamp:
- 09/02/13 15:11:53 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Solution.cs
r9890 r9926 35 35 public string Path { get; set; } 36 36 37 [Storable] 38 public int NrOfRounds { get; set; } 39 37 40 [StorableConstructor] 38 41 private Solution(bool deserializing) : base(deserializing) { } … … 41 44 Tree = cloner.Clone(original.Tree); 42 45 Path = (string)original.Path.Clone(); 46 NrOfRounds = original.NrOfRounds; 43 47 } 44 48 45 public Solution(ISymbolicExpressionTree tree, string path )49 public Solution(ISymbolicExpressionTree tree, string path, int nrOfRounds) 46 50 : base() { 47 51 this.Tree = tree; 48 52 this.Path = path; 53 this.NrOfRounds = nrOfRounds; 49 54 } 50 55
Note: See TracChangeset
for help on using the changeset viewer.