Changeset 4722 for trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
r4068 r4722 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; … … 87 88 88 89 [StorableConstructor] 89 private OffspringSelectionGeneticAlgorithmMainOperator(bool deserializing) : base() { } 90 private OffspringSelectionGeneticAlgorithmMainOperator(bool deserializing) : base(deserializing) { } 91 private OffspringSelectionGeneticAlgorithmMainOperator(OffspringSelectionGeneticAlgorithmMainOperator original, Cloner cloner) 92 : base(original, cloner) { 93 } 94 public override IDeepCloneable Clone(Cloner cloner) { 95 return new OffspringSelectionGeneticAlgorithmMainOperator(this, cloner); 96 } 90 97 public OffspringSelectionGeneticAlgorithmMainOperator() 91 98 : base() {
Note: See TracChangeset
for help on using the changeset viewer.