Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4857 for trunk


Ignore:
Timestamp:
11/19/10 15:32:19 (13 years ago)
Author:
svonolfe
Message:

Fixed some minor issues (#1236)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs

    r4856 r4857  
    218218      Parameters.Add(new ValueParameter<DoubleArray>("ServiceTime", "The service time of each customer.", new DoubleArray()));
    219219      Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
    220       Parameters.Add(new OptionalValueParameter<IVRPEncoding>("BestKnownSolution", "The best known solution of this TSP instance."));
     220      Parameters.Add(new OptionalValueParameter<IVRPEncoding>("BestKnownSolution", "The best known solution of this VRP instance."));
    221221      Parameters.Add(new ValueParameter<DoubleValue>("EvalFleetUsageFactor", "The fleet usage factor considered in the evaluation.", new DoubleValue(100)));
    222222      Parameters.Add(new ValueParameter<DoubleValue>("EvalTimeFactor", "The time factor considered in the evaluation.", new DoubleValue(0)));
     
    716716
    717717      if (cities != Coordinates.Rows - 1)
    718         ErrorHandling.ShowErrorDialog(new Exception("Invalid solution"));
     718        ErrorHandling.ShowErrorDialog(new Exception("The optimal solution does not seem to correspond  with the problem data."));
    719719      else
    720720        BestKnownSolutionParameter.Value = encoding;
Note: See TracChangeset for help on using the changeset viewer.