Changeset 2865 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 02/25/10 06:35:43 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 1 deleted
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ICrossover.cs
r2864 r2865 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Optimization { … … 27 26 /// An interface which represents an operator for crossing solutions. 28 27 /// </summary> 29 public interface ICrossover Operator: IOperator { }28 public interface ICrossover : IOperator { } 30 29 } -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IEvaluator.cs
r2864 r2865 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Optimization { -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IManipulator.cs
r2864 r2865 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Optimization { … … 27 26 /// An interface which represents an operator for manipulating solutions. 28 27 /// </summary> 29 public interface IManipulat ionOperator : IOperator { }28 public interface IManipulator : IOperator { } 30 29 } -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IProblem.cs
r2864 r2865 20 20 #endregion 21 21 22 using System; 22 23 using HeuristicLab.Core; 23 using System;24 using HeuristicLab.Common;25 24 26 25 namespace HeuristicLab.Optimization { -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ISingleObjectiveProblem.cs
r2864 r2865 20 20 #endregion 21 21 22 using HeuristicLab.Core;22 using System; 23 23 using HeuristicLab.Data; 24 using System;25 24 26 25 namespace HeuristicLab.Optimization { … … 29 28 /// </summary> 30 29 public interface ISingleObjectiveProblem : IProblem { 31 BoolData Maximization { get; set;}32 new ISingleObjectiveEvaluator Evaluator { get; set;}30 BoolData Maximization { get; } 31 new ISingleObjectiveEvaluator Evaluator { get; } 33 32 34 33 event EventHandler MaximizationChanged; -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ISolutionCreator.cs
r2864 r2865 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Optimization { -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IStochasticOperator.cs
r2864 r2865 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Optimization {
Note: See TracChangeset
for help on using the changeset viewer.