Changeset 8195
- Timestamp:
- 07/03/12 14:13:18 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/SamplesTest.cs
r8132 r8195 44 44 using HeuristicLab.Problems.DataAnalysis.Symbolic.Classification; 45 45 using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression; 46 using HeuristicLab.Problems.Instances; 46 47 using HeuristicLab.Problems.Instances.DataAnalysis; 47 48 using HeuristicLab.Problems.Instances.TSPLIB; 49 using HeuristicLab.Problems.Instances.VehicleRouting; 48 50 using HeuristicLab.Problems.Knapsack; 49 51 using HeuristicLab.Problems.TestFunctions; … … 51 53 using HeuristicLab.Problems.VehicleRouting; 52 54 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 53 using HeuristicLab.Problems.VehicleRouting.Encodings.Alba;54 55 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin; 55 56 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 56 57 using HeuristicLab.Selection; 57 58 using Microsoft.VisualStudio.TestTools.UnitTesting; 58 using HeuristicLab.Problems.Instances.VehicleRouting;59 using HeuristicLab.Problems.Instances;60 59 61 60 … … 133 132 134 133 SolomonFormatInstanceProvider instanceProvider = new SolomonInstanceProvider(); 135 IVRPData data = instanceProvider. LoadData("C101.txt", "C101.opt.txt");134 IVRPData data = instanceProvider.Import("C101.txt", "C101.opt.txt"); 136 135 vrpProblem.Load(data); 137 136 vrpProblem.Name = "C101 VRP (imported from Solomon)";
Note: See TracChangeset
for help on using the changeset viewer.