Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/09 11:03:36 (16 years ago)
Author:
epitzer
Message:

Add Priority property to IDecomposer interface to allow specialized decomposers to be tried first. (#578)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Interfaces/IDecomposer.cs

    r1454 r1539  
    66
    77  public interface IDecomposer {
     8
     9    /// <summary>
     10    /// Defines the Priorty of this Decomposer. Higher number means
     11    /// higher prioriy. Negative numbers are fallback decomposers.
     12    /// All default generic decomposers have priority 100. Specializations
     13    /// have priority 200 so they will  be tried first. Priorities are
     14    /// only considered for default configurations.
     15    /// </summary>
     16    int Priority { get; }
    817
    918    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.