Changeset 5735 for branches/VNS/HeuristicLab.Optimization
- Timestamp:
- 03/17/11 14:35:58 (14 years ago)
- Location:
- branches/VNS/HeuristicLab.Optimization/3.3
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/VNS/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r5622 r5735 116 116 <Compile Include="Interfaces\IDiscreteDoubleMatrixModifier.cs" /> 117 117 <Compile Include="Interfaces\IGlobalParticleUpdater.cs" /> 118 <Compile Include="Interfaces\ILocalImprovement .cs" />118 <Compile Include="Interfaces\ILocalImprovementOperator.cs" /> 119 119 <Compile Include="Interfaces\ILocalParticleUpdater.cs" /> 120 120 <Compile Include="Interfaces\IMultiAnalyzer.cs" /> -
branches/VNS/HeuristicLab.Optimization/3.3/Interfaces/ILocalImprovementOperator.cs
r5725 r5735 28 28 29 29 namespace HeuristicLab.Optimization { 30 public interface ILocalImprovement : IOperator {31 void Parameterize(IProblem problem);30 public interface ILocalImprovementOperator: IOperator { 31 void OnProblemChanged(IProblem problem); 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.