Changeset 4452
- Timestamp:
- 09/20/10 14:38:07 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs
r4391 r4452 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; 26 27 using HeuristicLab.Data; … … 41 42 [StorableClass] 42 43 [Creatable("Problems")] 43 public class SymbolicClassificationProblem : SingleObjectiveClassificationProblem<ISymbolicClassificationEvaluator, ISymbolicExpressionTreeCreator> {44 public class SymbolicClassificationProblem : SingleObjectiveClassificationProblem<ISymbolicClassificationEvaluator, ISymbolicExpressionTreeCreator>, IStorableContent { 44 45 private const string SymbolicExpressionTreeInterpreterParameterName = "SymbolicExpressionTreeInterpreter"; 45 46 private const string FunctionTreeGrammarParameterName = "FunctionTreeGrammar"; … … 52 53 53 54 #region properties 55 public string Filename { get; set; } 56 54 57 public ISymbolicExpressionTreeInterpreter SymbolicExpressionTreeInterpreter { 55 58 get { return SymbolicExpressionTreeInterpreterParameter.Value; }
Note: See TracChangeset
for help on using the changeset viewer.