Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/09/09 00:57:49 (15 years ago)
Author:
swagner
Message:

Refactoring of the operator architecture (#95)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Operator Architecture Refactoring/HeuristicLab.Core/3.3/Variable.cs

    r1823 r2033  
    102102    /// <param name="clonedObjects">Dictionary of all already cloned objects. (Needed to avoid cycles.)</param>
    103103    /// <returns>The cloned object as <see cref="Variable"/>.</returns>
    104     public override object Clone(IDictionary<Guid, object> clonedObjects) {
     104    public override object Clone(IDictionary<long, object> clonedObjects) {
    105105      Variable clone = new Variable();
    106       clonedObjects.Add(Guid, clone);
     106      clonedObjects.Add(clone.Id, clone);
    107107      clone.myName = Name;
    108108      if (Value != null)
Note: See TracChangeset for help on using the changeset viewer.