- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.DataAnalysis.Trading
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.DataAnalysis.Trading merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/Solution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Optimization; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 using HeuristicLab.Problems.DataAnalysis.Symbolic; 28 28 … … 31 31 /// Represents a symbolic trading solution (model + data) and attributes of the solution like accuracy and complexity 32 32 /// </summary> 33 [Storable Class]33 [StorableType("A4B82FA6-562B-477D-998C-996724EA1366")] 34 34 [Item(Name = "Solution (symbolic trading)", 35 35 Description = … … 60 60 61 61 [StorableConstructor] 62 private SymbolicSolution(bool deserializing) 63 : base(deserializing) { 62 private SymbolicSolution(StorableConstructorFlag _) : base(_) { 64 63 } 65 64
Note: See TracChangeset
for help on using the changeset viewer.