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/VariableInfo.cs

    r1823 r2033  
    145145    /// <param name="clonedObjects">Dictionary of all already cloned objects. (Needed to avoid cycles.)</param>
    146146    /// <returns>The cloned object as <see cref="VariableInfo"/>.</returns>
    147     public override object Clone(IDictionary<Guid, object> clonedObjects) {
     147    public override object Clone(IDictionary<long, object> clonedObjects) {
    148148      VariableInfo clone = new VariableInfo();
    149       clonedObjects.Add(Guid, clone);
     149      clonedObjects.Add(clone.Id, clone);
    150150      clone.myActualName = ActualName;
    151151      clone.myFormalName = FormalName;
Note: See TracChangeset for help on using the changeset viewer.