Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/14 14:59:20 (10 years ago)
Author:
pfleck
Message:

#2208 improved visualization of orienteering solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Analyzers/BestOrienteeringSolutionAnalyser.cs

    r11190 r11240  
    9595      var solution = BestSolutionParameter.ActualValue;
    9696      var coordinates = CoordinatesParameter.ActualValue;
     97      var scores = ScoresParameter.ActualValue;
    9798      if (solution == null) {
    9899        solution = new OrienteeringSolution(
    99100          (IntegerVector)solutions[bestIndex].Clone(),
    100101          coordinates,
     102          scores,
    101103          new DoubleValue(qualities[bestIndex].Value));
    102104        BestSolutionParameter.ActualValue = solution;
     
    105107        if (solution.Quality.Value < qualities[bestIndex].Value) {
    106108          solution.Coordinates = coordinates;
     109          solution.Scores = scores;
    107110          solution.IntegerVector = (IntegerVector)solutions[bestIndex].Clone();
    108111          solution.Quality.Value = qualities[bestIndex].Value;
Note: See TracChangeset for help on using the changeset viewer.