Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/16 14:14:11 (7 years ago)
Author:
abeham
Message:

#2701:

  • Added TryGetBy(First|Second) method to BidirectionalDictionary
  • Updated linear linkage encoding
    • Added move generator and moves for shift, merge, split, and extract moves
    • Added unit test (Apply/Undo)
  • Updated MemPR (linear linkage)
    • Added basic tabu walk
  • Fixed bug in MemPR (permutation)
  • Updated Tests project
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MemPRAlgorithm/HeuristicLab.Tests/HeuristicLab-3.3/Samples/TabuSearchTspSampleTest.cs

    r14185 r14477  
    6262      TravelingSalesmanProblem tspProblem = new TravelingSalesmanProblem();
    6363      tspProblem.Load(provider.LoadData(instance));
    64       tspProblem.UseDistanceMatrix.Value = true;
     64      tspProblem.UseDistanceMatrix = true;
    6565      #endregion
    6666      #region Algorithm Configuration
     
    7676      ts.MoveGenerator = moveGenerator;
    7777      var moveEvaluator = ts.MoveEvaluatorParameter.ValidValues
    78         .OfType<TSPInversionMoveRoundedEuclideanPathEvaluator>()
     78        .OfType<TSPInversionMovePathEvaluator>()
    7979        .Single();
    8080      ts.MoveEvaluator = moveEvaluator;
Note: See TracChangeset for help on using the changeset viewer.