Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/10/10 13:00:54 (14 years ago)
Author:
svonolfe
Message:

Improved performance of PotvinEncoding(#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs

    r4369 r4378  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Optimization;
     28using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2829
    2930namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     
    3132    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
    3233   
    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);
    3737  }
    3838}
Note: See TracChangeset for help on using the changeset viewer.