- Timestamp:
- 02/10/15 09:57:29 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS
- Property svn:mergeinfo changed
-
branches/ALPS/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAAnalyzer.cs
r11171 r11975 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 { -
branches/ALPS/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAOperators/CMAUpdater.cs
r11171 r11975 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 { -
branches/ALPS/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/Terminator.cs
r11171 r11975 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.