Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12622


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
Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/MultinomialLogitClassification.cs

    r12509 r12622  
    3535  /// </summary>
    3636  [Item("Multinomial Logit Classification", "Multinomial logit classification data analysis algorithm (wrapper for ALGLIB).")]
    37   [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 180)]
     37  [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 180)]
    3838  [StorableClass]
    3939  public sealed class MultiNomialLogitClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> {
  • 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.