Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/06/10 01:56:04 (13 years ago)
Author:
swagner
Message:

Merged cloning refactoring branch back into trunk (#922)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

  • trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Left.cs

    r4477 r4722  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
     
    2728  [Item("Left", "Represents the turn-left symbol in a artificial ant expression.")]
    2829  public sealed class Left : Symbol {
     30    [StorableConstructor]
     31    private Left(bool deserializing) : base(deserializing) { }
     32    private Left(Left original, Cloner cloner) : base(original, cloner) { }
     33    public override IDeepCloneable Clone(Cloner cloner) {
     34      return new Left(this, cloner);
     35    }
    2936    public Left() : base("Left", "Represents the turn-left symbol in a artificial ant expression.") { }
    3037  }
Note: See TracChangeset for help on using the changeset viewer.