Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/14 13:28:18 (10 years ago)
Author:
pfleck
Message:

#2208

  • Uses average distance as maximum distance when interpreting VRP as OP.
  • Add offset to "Begin" label position in visualization so that it does not overlap with the "End" label when start- and endpoint are the same.
File:
1 edited

Legend:

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

    r11307 r11314  
    383383      TerminusPoint = new IntValue(data.Dimension - 1); // Last city is interpreted als end point
    384384
    385       MaximumDistance = new DoubleValue(DistanceMatrix[0, data.Dimension - 1] * 10.0); // distance from start to end first to last city is interpreted as maximum distance
     385      MaximumDistance = new DoubleValue(DistanceMatrix.Average() * 5.0); // distance from start to end first to last city is interpreted as maximum distance
    386386      Scores = new DoubleArray(Enumerable.Repeat(1.0, data.Dimension).ToArray()); // all scores are 1
    387387    }
Note: See TracChangeset for help on using the changeset viewer.