Free cookie consent management tool by TermsFeed Policy Generator

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

Implemented ReadOnlyView property for items (#969).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/ResultCollection.cs

    r3274 r3317  
    3232    public ResultCollection(int capacity) : base(capacity) { }
    3333    public ResultCollection(IEnumerable<IResult> collection) : base(collection) { }
    34 
    35     public override IDeepCloneable Clone(Cloner cloner) {
    36       ResultCollection clone = new ResultCollection(this.Select(x => (IResult)cloner.Clone(x)));
    37       cloner.RegisterClonedObject(this, clone);
    38       return clone;
    39     }
    4034  }
    4135}
Note: See TracChangeset for help on using the changeset viewer.