Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4168


Ignore:
Timestamp:
08/05/10 14:06:44 (14 years ago)
Author:
abeham
Message:

#1040

  • Fixed a bug in the clone method
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs

    r4086 r4168  
    207207    public override IDeepCloneable Clone(Cloner cloner) {
    208208      NSGA2 clone = (NSGA2)base.Clone(cloner);
    209       // TODO: Clone additional fields
     209      clone.basicMOQualityAnalyzer = (BasicMultiObjectiveQualityAnalyzer)cloner.Clone(basicMOQualityAnalyzer);
     210      clone.AttachEventHandlers();
    210211      return clone;
    211212    }
Note: See TracChangeset for help on using the changeset viewer.