Changeset 16875 for trunk/HeuristicLab.Problems.TravelingSalesman
- Timestamp:
- 04/29/19 15:22:17 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.TravelingSalesman/3.3/TravelingSalesmanProblem.cs
r16565 r16875 24 24 using System.IO; 25 25 using System.Linq; 26 using HEAL.Attic; 26 27 using HeuristicLab.Analysis; 27 28 using HeuristicLab.Common; … … 32 33 using HeuristicLab.Optimization.Operators; 33 34 using HeuristicLab.Parameters; 34 using HEAL.Attic;35 35 using HeuristicLab.PluginInfrastructure; 36 36 using HeuristicLab.Problems.Instances; … … 210 210 if (oldCoordinates != null) { 211 211 Parameters.Remove(oldCoordinates); 212 Parameters.Add(new OptionalValueParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.", oldCoordinates.Value , oldCoordinates.GetsCollected));212 Parameters.Add(new OptionalValueParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.", oldCoordinates.Value) { GetsCollected = oldCoordinates.GetsCollected }); 213 213 } 214 214
Note: See TracChangeset
for help on using the changeset viewer.