Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/10 17:43:17 (13 years ago)
Author:
mkommend
Message:

Refactored Algorithms.* and fixed BoolValue (ticket #922).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs

    r4068 r4669  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Data;
     
    126127
    127128    [StorableConstructor]
    128     private IslandOffspringSelectionGeneticAlgorithmMainLoop(bool deserializing) : base() { }
     129    private IslandOffspringSelectionGeneticAlgorithmMainLoop(bool deserializing) : base(deserializing) { }
     130    private IslandOffspringSelectionGeneticAlgorithmMainLoop(IslandOffspringSelectionGeneticAlgorithmMainLoop original, Cloner cloner)
     131      : base(original, cloner) {
     132    }
     133    public override IDeepCloneable Clone(Cloner cloner) {
     134      return new IslandOffspringSelectionGeneticAlgorithmMainLoop(this, cloner);
     135    }
    129136    public IslandOffspringSelectionGeneticAlgorithmMainLoop()
    130137      : base() {
Note: See TracChangeset for help on using the changeset viewer.