Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/OrienteeringEvaluation.cs @ 11327

Last change on this file since 11327 was 11327, checked in by pfleck, 10 years ago

#2208

  • Added distance and penalty visualization for orienteering solution.
  • Added Evaluate method in IOrienteeringEvaluator for evaluation of new best solutions (still need some design improvements).
File size: 223 bytes
Line 
1using HeuristicLab.Data;
2
3namespace HeuristicLab.Problems.Orienteering {
4  public class OrienteeringEvaluation {
5    public DoubleValue Quality;
6    public DoubleValue Penalty;
7    public DoubleValue Distance;
8  }
9}
Note: See TracBrowser for help on using the repository browser.