Changeset 17356 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/TSPSolution.cs
- Timestamp:
- 11/20/19 14:32:01 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/TSPSolution.cs
r17335 r17356 46 46 } 47 47 48 [Storable] 49 private ITSPData tspData; 48 [Storable] private ITSPData tspData; 50 49 public ITSPData TSPData { 51 50 get { return tspData; } … … 57 56 } 58 57 59 [Storable] 60 private Permutation tour; 58 [Storable] private Permutation tour; 61 59 public Permutation Tour { 62 60 get { return tour; } … … 67 65 } 68 66 } 69 [Storable] 70 private DoubleValue tourLength; 67 [Storable] private DoubleValue tourLength; 71 68 public DoubleValue TourLength { 72 69 get { return tourLength; }
Note: See TracChangeset
for help on using the changeset viewer.