Changeset 6042 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 04/23/11 00:29:24 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ILocalImprovementOperator.cs
r5753 r6042 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using HeuristicLab.Core; 27 using HeuristicLab. Optimization;24 using HeuristicLab.Data; 28 25 29 26 namespace HeuristicLab.Optimization { 30 public interface ILocalImprovementOperator: IOperator { 31 void OnProblemChanged(IProblem problem); 27 public interface ILocalImprovementOperator : IOperator { 28 Type ProblemType { get; } 29 IProblem Problem { get; set; } 30 IValueLookupParameter<IntValue> MaximumIterationsParameter { get; } 31 ILookupParameter<IntValue> EvaluatedSolutionsParameter { get; } 32 ILookupParameter<ResultCollection> ResultsParameter { get; } 32 33 } 33 34 }
Note: See TracChangeset
for help on using the changeset viewer.