- Timestamp:
- 09/10/10 13:00:54 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs
r4369 r4378 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 28 29 29 30 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { … … 31 32 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } 32 33 33 bool Feasible(IVRPProblemInstance instance, IVRPEncoding solution); 34 bool Feasible(IVRPProblemInstance instance, Tour tour); 35 double Evaluate(IVRPProblemInstance instance, IVRPEncoding solution); 36 double Evaluate(IVRPProblemInstance instance, Tour tour); 34 VRPEvaluation Evaluate(IVRPProblemInstance instance, IVRPEncoding solution); 35 VRPEvaluation Evaluate(IVRPProblemInstance instance, Tour tour); 36 bool Feasible(VRPEvaluation evaluation); 37 37 } 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.