Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/13 17:54:46 (11 years ago)
Author:
sforsten
Message:

#1980:

  • added necessary interface ICondition, IAction, IInput
  • removed not used class MatchSelector and interface IMatchSelector
  • added constructors to ItemDictionary
  • added new encoding
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Core/3.3/Collections/ItemDictionary.cs

    r7725 r9194  
    5959    public ItemDictionary() : base() { }
    6060    public ItemDictionary(int capacity) : base(capacity) { }
     61    public ItemDictionary(IEqualityComparer<TKey> comparer) : base(comparer) { }
    6162    public ItemDictionary(IDictionary<TKey, TValue> dictionary) : base(dictionary) { }
     63    public ItemDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) : base(dictionary, comparer) { }
    6264
    6365    public object Clone() {
Note: See TracChangeset for help on using the changeset viewer.