Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10362


Ignore:
Timestamp:
01/21/14 10:29:26 (10 years ago)
Author:
pfleck
Message:

#2141 - corrected assignment of the evaluator after deserialization

File:
1 edited

Legend:

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

    r10360 r10362  
    190190    private void AttachProblemInstanceEventHandlers() {
    191191      if (ProblemInstance != null) {
    192         EvaluatorParameter.Value = ProblemInstance.SolutionEvaluator;
     192        ProblemInstance.SolutionEvaluator = EvaluatorParameter.Value;
    193193        ProblemInstance.EvaluationChanged += new EventHandler(ProblemInstance_EvaluationChanged);
    194194      }
Note: See TracChangeset for help on using the changeset viewer.