Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/BasicSymbolicRegression
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/BasicSymbolicRegression/Problem.cs
r14185 r14927 27 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 28 28 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;29 using HeuristicLab.Persistence; 30 30 using HeuristicLab.Problems.DataAnalysis; 31 31 using HeuristicLab.Problems.Instances; … … 35 35 [Item("Koza-style Symbolic Regression", "An implementation of symbolic regression without bells-and-whistles. Use \"Symbolic Regression Problem (single-objective)\" if you want to use all features.")] 36 36 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 37 [Storable Class]37 [StorableType("1e56d6a9-432c-4bf9-878c-ccd67a0d4e4b")] 38 38 public sealed class Problem : SymbolicExpressionTreeProblem, IRegressionProblem, IProblemInstanceConsumer<IRegressionProblemData>, IProblemInstanceExporter<IRegressionProblemData> { 39 39
Note: See TracChangeset
for help on using the changeset viewer.