- Timestamp:
- 05/04/17 18:16:25 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/Interfaces/IAlgorithm.cs
r14185 r14928 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Optimization { … … 28 29 /// Interface to represent an algorithm. 29 30 /// </summary> 31 [StorableType("143a7a6e-e3de-4db2-89f1-c72ac0dd359d")] 30 32 public interface IAlgorithm : IParameterizedNamedItem, IOptimizer { 31 33 Type ProblemType { get; } -
branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/Interfaces/ISelector.cs
r14185 r14928 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Optimization { … … 27 28 /// An interface which represents a selection operator. 28 29 /// </summary> 30 [StorableType("fe2f1019-f779-4ad7-a5c0-f1fd513b614f")] 29 31 public interface ISelector : IOperator { 30 32 BoolValue CopySelected { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/Interfaces/ISingleObjectiveOperator.cs
r14185 r14928 19 19 */ 20 20 #endregion 21 22 using HeuristicLab.Persistence; 21 23 22 24 namespace HeuristicLab.Optimization { … … 49 51 /// </list> 50 52 /// </remarks> 53 [StorableType("b3728350-b6c3-4e1a-a444-9aa72657808d")] 51 54 public interface ISingleObjectiveOperator { } 52 55 } -
branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/Interfaces/ISingleObjectiveSelector.cs
r14185 r14928 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Optimization { … … 27 28 /// An interface which represents a selection operator for selecting solutions of single-objective optimization problems. 28 29 /// </summary> 30 [StorableType("d503517f-a92d-4124-a53d-cb3b6d7fe01f")] 29 31 public interface ISingleObjectiveSelector : ISelector, ISingleObjectiveOperator { 30 32 IValueLookupParameter<BoolValue> MaximizationParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.