Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/10 18:00:07 (15 years ago)
Author:
abeham
Message:

updated tabu search #840

Location:
trunk/sources/HeuristicLab.Optimization/3.3
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj

    r2997 r3044  
    8686    <None Include="HeuristicLabOptimizationPlugin.cs.frame" />
    8787    <Compile Include="Algorithm.cs" />
     88    <Compile Include="Interfaces\IMoveOperator.cs" />
     89    <Compile Include="Interfaces\ISingleObjectiveMoveEvaluator.cs" />
    8890    <Compile Include="Interfaces\IMoveGenerator.cs" />
     91    <Compile Include="Interfaces\IMoveMaker.cs" />
    8992    <Compile Include="Interfaces\IMultiObjectiveSelector.cs" />
    9093    <Compile Include="Interfaces\ISingleObjectiveSelector.cs" />
     
    102105    <Compile Include="Interfaces\ISolutionCreator.cs" />
    103106    <Compile Include="Interfaces\IStochasticOperator.cs" />
     107    <Compile Include="Interfaces\ITabuMoveEvaluator.cs" />
     108    <Compile Include="Interfaces\ITabuMoveMaker.cs" />
    104109    <Compile Include="UserDefinedAlgorithm.cs" />
    105110    <Compile Include="EngineAlgorithm.cs" />
  • trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IMoveGenerator.cs

    r2997 r3044  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Parameters;
    2324
    2425namespace HeuristicLab.Optimization {
     
    2627  /// An interface which represents an operator for generating moves.
    2728  /// </summary>
    28   public interface IMoveGenerator : IOperator { }
     29  public interface IMoveGenerator : IOperator {
     30  }
    2931}
Note: See TracChangeset for help on using the changeset viewer.