Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/15 00:12:26 (9 years ago)
Author:
ascheibe
Message:

#2025

  • added old ctor for backwards compatibility in CreatableAttribute
  • fixed group of MultiNomialLogitClassification
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Attributes/CreatableAttribute.cs

    r12512 r12622  
    9494      Category = (string)category;
    9595    }
     96    // BackwardsCompatibility3.3
     97    #region Backwards compatible code, remove with 3.4
     98    [Obsolete]
     99    public CreatableAttribute(string category)
     100      : this() {
     101      Category = category;
     102    }
     103    #endregion
    96104
    97105    public static bool IsCreatable(Type type) {
Note: See TracChangeset for help on using the changeset viewer.