Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/10 19:31:19 (13 years ago)
Author:
swagner
Message:

Finished cloning refactoring of HeuristicLab.Optimization.Operators (#922)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Optimization.Operators/3.3/SASEGASAReunificator.cs

    r4489 r4679  
    2222using System;
    2323using System.Collections.Generic;
     24using HeuristicLab.Common;
    2425using HeuristicLab.Core;
    2526using HeuristicLab.Data;
     
    4142    }
    4243
     44    [StorableConstructor]
     45    protected SASEGASAReunificator(bool deserializing) : base(deserializing) { }
     46    protected SASEGASAReunificator(SASEGASAReunificator original, Cloner cloner) : base(original, cloner) { }
    4347    public SASEGASAReunificator()
    4448      : base() {
    4549      Parameters.Add(new LookupParameter<IntValue>("VillageCount", "The number of villages left after the reunification."));
    4650    }
     51
     52    public override IDeepCloneable Clone(Cloner cloner) {
     53      return new SASEGASAReunificator(this, cloner);
     54    }
     55
    4756    /// <summary>
    4857    /// Joins all sub sub scopes of the given <paramref name="scope"/>, reduces the number of sub
Note: See TracChangeset for help on using the changeset viewer.