Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/15/14 16:14:09 (10 years ago)
Author:
pfleck
Message:

#2208 Implemented GreedyOrienteeringTourCreator

File:
1 edited

Legend:

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

    r11187 r11191  
    3434    }
    3535    public ILookupParameter<IntegerVector> SolutionParameter {
    36       get { return (ILookupParameter<IntegerVector>)Parameters["Solution"]; }
     36      get { return (ILookupParameter<IntegerVector>)Parameters["IntegerVector"]; }
    3737    }
    3838    public ILookupParameter<DoubleArray> ScoresParameter {
     
    5353      : base() {
    5454      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The evaluated quality of the Orienteering solution."));
    55       Parameters.Add(new LookupParameter<IntegerVector>("Solution", "The Orienteering Solution given in path representation."));
     55      Parameters.Add(new LookupParameter<IntegerVector>("IntegerVector", "The Orienteering Solution given in path representation."));
    5656      Parameters.Add(new LookupParameter<DoubleArray>("Scores", "The scores of the points."));
    5757    }
Note: See TracChangeset for help on using the changeset viewer.