Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/11 00:37:06 (13 years ago)
Author:
abeham
Message:

#1469

  • Added additional constructors to ItemSet<T> that allow to take a custom IEqualityComparer<T>
  • Changed BestKnownSolutions from ItemList<T> to ItemSet<T>
  • Adapted BestQAPSolutionAnalyzer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Collections/ItemSet.cs

    r5445 r6525  
    5454    public ItemSet() : base() { }
    5555    public ItemSet(IEnumerable<T> collection) : base(collection) { }
     56    public ItemSet(IEqualityComparer<T> comparer) : base(comparer) { }
     57    public ItemSet(IEnumerable<T> collection, IEqualityComparer<T> comparer) : base(collection, comparer) { }
    5658
    5759    public object Clone() {
Note: See TracChangeset for help on using the changeset viewer.