- Timestamp:
- 07/28/11 14:16:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPProblemInstance.cs
r5867 r6607 27 27 using HeuristicLab.Core; 28 28 using HeuristicLab.Data; 29 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 29 30 30 31 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { … … 50 51 bool Feasible(IVRPEncoding solution); 51 52 bool Feasible(Tour tour); 52 double Evaluate(IVRPEncoding solution); 53 double Evaluate(Tour tour); 53 VRPEvaluation Evaluate(IVRPEncoding solution); 54 VRPEvaluation Evaluate(Tour tour); 55 bool Feasible(VRPEvaluation eval); 54 56 } 55 57 }
Note: See TracChangeset
for help on using the changeset viewer.