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.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs

    r4068 r4669  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Data;
     
    103104
    104105    [StorableConstructor]
    105     private IslandGeneticAlgorithmMainLoop(bool deserializing) : base() { }
     106    private IslandGeneticAlgorithmMainLoop(bool deserializing) : base(deserializing) { }
     107    private IslandGeneticAlgorithmMainLoop(IslandGeneticAlgorithmMainLoop original, Cloner cloner)
     108      : base(original, cloner) {
     109    }
     110    public override IDeepCloneable Clone(Cloner cloner) {
     111      return new IslandGeneticAlgorithmMainLoop(this, cloner);
     112    }
    106113    public IslandGeneticAlgorithmMainLoop()
    107114      : base() {
Note: See TracChangeset for help on using the changeset viewer.