Changeset 3044 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 03/15/10 18:00:07 (15 years ago)
- 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 86 86 <None Include="HeuristicLabOptimizationPlugin.cs.frame" /> 87 87 <Compile Include="Algorithm.cs" /> 88 <Compile Include="Interfaces\IMoveOperator.cs" /> 89 <Compile Include="Interfaces\ISingleObjectiveMoveEvaluator.cs" /> 88 90 <Compile Include="Interfaces\IMoveGenerator.cs" /> 91 <Compile Include="Interfaces\IMoveMaker.cs" /> 89 92 <Compile Include="Interfaces\IMultiObjectiveSelector.cs" /> 90 93 <Compile Include="Interfaces\ISingleObjectiveSelector.cs" /> … … 102 105 <Compile Include="Interfaces\ISolutionCreator.cs" /> 103 106 <Compile Include="Interfaces\IStochasticOperator.cs" /> 107 <Compile Include="Interfaces\ITabuMoveEvaluator.cs" /> 108 <Compile Include="Interfaces\ITabuMoveMaker.cs" /> 104 109 <Compile Include="UserDefinedAlgorithm.cs" /> 105 110 <Compile Include="EngineAlgorithm.cs" /> -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IMoveGenerator.cs
r2997 r3044 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Parameters; 23 24 24 25 namespace HeuristicLab.Optimization { … … 26 27 /// An interface which represents an operator for generating moves. 27 28 /// </summary> 28 public interface IMoveGenerator : IOperator { } 29 public interface IMoveGenerator : IOperator { 30 } 29 31 }
Note: See TracChangeset
for help on using the changeset viewer.