Changeset 2975 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ISingleObjectiveProblem.cs
- Timestamp:
- 03/09/10 05:45:39 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ISingleObjectiveProblem.cs
r2865 r2975 20 20 #endregion 21 21 22 using System; 23 using HeuristicLab.Data; 22 using HeuristicLab.Core; 24 23 25 24 namespace HeuristicLab.Optimization { … … 28 27 /// </summary> 29 28 public interface ISingleObjectiveProblem : IProblem { 30 BoolData Maximization{ get; }29 IParameter MaximizationParameter { get; } 31 30 new ISingleObjectiveEvaluator Evaluator { get; } 32 33 event EventHandler MaximizationChanged;34 31 } 35 32 }
Note: See TracChangeset
for help on using the changeset viewer.