Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/12 13:46:48 (12 years ago)
Author:
svonolfe
Message:

Moved parameters from the ProblemInstance to the Problem (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs

    r6711 r7852  
    121121    void CapacityParameter_ValueChanged(object sender, EventArgs e) {
    122122      CapacityParameter.Value.ValueChanged += new EventHandler(Capacity_ValueChanged);
    123       BestKnownSolution = null;
     123      EvalBestKnownSolution();
    124124    }
    125125    void Capacity_ValueChanged(object sender, EventArgs e) {
    126       BestKnownSolution = null;
     126      EvalBestKnownSolution();
    127127    }
    128128    void OverloadPenaltyParameter_ValueChanged(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.