Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4452


Ignore:
Timestamp:
09/20/10 14:38:07 (14 years ago)
Author:
mkommend
Message:

Marked SymbolicClassificationProblem as StorableContent (ticket #939).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs

    r4391 r4452  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HeuristicLab.Common;
    2526using HeuristicLab.Core;
    2627using HeuristicLab.Data;
     
    4142  [StorableClass]
    4243  [Creatable("Problems")]
    43   public class SymbolicClassificationProblem : SingleObjectiveClassificationProblem<ISymbolicClassificationEvaluator, ISymbolicExpressionTreeCreator> {
     44  public class SymbolicClassificationProblem : SingleObjectiveClassificationProblem<ISymbolicClassificationEvaluator, ISymbolicExpressionTreeCreator>, IStorableContent {
    4445    private const string SymbolicExpressionTreeInterpreterParameterName = "SymbolicExpressionTreeInterpreter";
    4546    private const string FunctionTreeGrammarParameterName = "FunctionTreeGrammar";
     
    5253
    5354    #region properties
     55    public string Filename { get; set; }
     56
    5457    public ISymbolicExpressionTreeInterpreter SymbolicExpressionTreeInterpreter {
    5558      get { return SymbolicExpressionTreeInterpreterParameter.Value; }
Note: See TracChangeset for help on using the changeset viewer.