Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/15 12:01:21 (9 years ago)
Author:
apolidur
Message:

#2221: First version of 1-shift and 2-p-opt moves

Location:
branches/PTSP/HeuristicLab.Problems.PTSP/3.3/MoveEvaluators
Files:
3 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PTSP/HeuristicLab.Problems.PTSP/3.3/MoveEvaluators/PTSPPathMoveEvaluator.cs

    r12191 r12219  
    4747      get { return (ILookupParameter<BoolValue>)Parameters["UseDistanceMatrix"]; }
    4848    }
     49    public IValueParameter<ItemList<ItemList<IntValue>>> RealizationsParameter {
     50      get { return (IValueParameter<ItemList<ItemList<IntValue>>>)Parameters["Realizations"]; }
     51    }
    4952
    5053    [StorableConstructor]
     
    5760      Parameters.Add(new LookupParameter<DistanceMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities."));
    5861      Parameters.Add(new LookupParameter<BoolValue>("UseDistanceMatrix", "True if a distance matrix should be calculated (if it does not exist already) and used for evaluation, otherwise false."));
     62      Parameters.Add(new ValueParameter<ItemList<ItemList<IntValue>>>("Realizations", "The concrete..."));
    5963    }
    6064
Note: See TracChangeset for help on using the changeset viewer.