- Timestamp:
- 02/07/15 13:52:48 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAAnalyzer.cs
r11171 r11970 35 35 [Item("CMAAnalyzer", "Analyzes the development of strategy parameters and visualizes the performance of CMA-ES.")] 36 36 [StorableClass] 37 public sealed class CMAAnalyzer : SingleSuccessorOperator, IAnalyzer {37 public sealed class CMAAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator { 38 38 39 39 public bool EnabledByDefault { -
trunk/sources/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAOperators/CMAUpdater.cs
r11171 r11970 34 34 [Item("CMAUpdater", "Updates the covariance matrix and strategy parameters of CMA-ES.")] 35 35 [StorableClass] 36 public class CMAUpdater : SingleSuccessorOperator, ICMAUpdater, IIterationBasedOperator {36 public class CMAUpdater : SingleSuccessorOperator, ICMAUpdater, IIterationBasedOperator, ISingleObjectiveOperator { 37 37 38 38 public Type CMAType { -
trunk/sources/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/Terminator.cs
r11171 r11970 33 33 [Item("Terminator", "Decides if the algorithm should terminate or not.")] 34 34 [StorableClass] 35 public class Terminator : Operator, IIterationBasedOperator {35 public class Terminator : Operator, IIterationBasedOperator, ISingleObjectiveOperator { 36 36 37 37 protected OperatorParameter ContinueParameter {
Note: See TracChangeset
for help on using the changeset viewer.