Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/15/11 16:32:43 (13 years ago)
Author:
svonolfe
Message:

Added support for multiple moves in tabu search (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/ThreeOpt/AlbaTranslocationMove.cs

    r4752 r6772  
    2828using HeuristicLab.Data;
    2929using HeuristicLab.Problems.VehicleRouting.Interfaces;
     30using HeuristicLab.Optimization;
    3031
    3132namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
     
    6970    }
    7071
     72    public ITabuMaker GetTabuMaker() {
     73      return new AlbaTranslocationMoveTabuMaker();
     74    }
     75
     76    public ITabuChecker GetTabuChecker() {
     77      return new AlbaTranslocationMoveHardTabuCriterion();
     78    }
     79
     80    public ITabuChecker GetSoftTabuChecker() {
     81      return new AlbaTranslocationMoveSoftTabuCriterion();
     82    }
     83
    7184    #endregion
    7285  }
Note: See TracChangeset for help on using the changeset viewer.