Changeset 12570
- Timestamp:
- 07/02/15 11:50:36 (9 years ago)
- Location:
- branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/Alps.cs
r12548 r12570 172 172 protected Alps(bool deserializing) 173 173 : base(deserializing) { } 174 [StorableHook(HookType.AfterDeserialization)] 175 private void AfterDeserialization() { 176 Initialize(); 177 } 174 178 protected Alps(Alps original, Cloner cloner) 175 179 : base(original, cloner) { -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs
r12548 r12570 116 116 private AlpsGeneticAlgorithm(bool deserializing) 117 117 : base(deserializing) { } 118 [StorableHook(HookType.AfterDeserialization)] 119 private void AfterDeserialization() { 120 Initialize(); 121 } 118 122 private AlpsGeneticAlgorithm(AlpsGeneticAlgorithm original, Cloner cloner) 119 123 : base(original, cloner) { -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/OldestAverageYoungestAgeCalculator.cs
r12046 r12570 30 30 [Item("OldestAverageYoungestAgeCalculator", "An operator which calculates the oldest, average and youngest age of solutions in the scope tree.")] 31 31 [StorableClass] 32 public class OldestAverageYoungestAgeCalculator : SingleSuccessorOperator {32 public sealed class OldestAverageYoungestAgeCalculator : SingleSuccessorOperator { 33 33 public IScopeTreeLookupParameter<IntValue> AgeParameter { 34 34 get { return (IScopeTreeLookupParameter<IntValue>)Parameters["Age"]; } -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/LayerSorter.cs
r12036 r12570 30 30 [Item("LayerSorter", "")] 31 31 [StorableClass] 32 public class LayerSorter : SingleSuccessorOperator {32 public sealed class LayerSorter : SingleSuccessorOperator { 33 33 private IScopeTreeLookupParameter<IntValue> LayerParameter { 34 34 get { return (IScopeTreeLookupParameter<IntValue>)Parameters["Layer"]; } -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/LayerUniformSubScopesProcessor.cs
r12080 r12570 34 34 [Item("LayerUniformSubScopesProcessor", "")] 35 35 [StorableClass] 36 public class LayerUniformSubScopesProcessor : SingleSuccessorOperator {36 public sealed class LayerUniformSubScopesProcessor : SingleSuccessorOperator { 37 37 private OperatorParameter OperatorParameter { 38 38 get { return (OperatorParameter)Parameters["Operator"]; } … … 94 94 [Item("LayerIntermediateParameter", "")] 95 95 [StorableClass] 96 public class LayerIntermediateParameter : ParameterizedNamedItem, IEnumerable<IParameter> {96 public sealed class LayerIntermediateParameter : ParameterizedNamedItem, IEnumerable<IParameter> { 97 97 [StorableConstructor] 98 98 private LayerIntermediateParameter(bool deserializing) : base(deserializing) { } -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/LayerUpdator.cs
r12097 r12570 34 34 [Item("LayerUpdator", "Operator which manages the reseeding and creation of layers.")] 35 35 [StorableClass] 36 public class LayerUpdator : AlgorithmOperator {36 public sealed class LayerUpdator : AlgorithmOperator { 37 37 38 38 public SolutionsCreator SolutionsCreator {
Note: See TracChangeset
for help on using the changeset viewer.