Changeset 17097 for stable/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisSolution.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisSolution.cs
r17054 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. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Optimization; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.DataAnalysis { … … 31 31 /// Abstract base class for data analysis solutions 32 32 /// </summary> 33 [Storable Class]33 [StorableType("339E0EAD-07D7-44C5-8E1D-AE9B2AA9A67D")] 34 34 public abstract class DataAnalysisSolution : ResultCollection, IDataAnalysisSolution { 35 35 private const string ModelResultName = "Model"; … … 72 72 73 73 [StorableConstructor] 74 protected DataAnalysisSolution( bool deserializing) : base(deserializing) { }74 protected DataAnalysisSolution(StorableConstructorFlag _) : base(_) { } 75 75 protected DataAnalysisSolution(DataAnalysisSolution original, Cloner cloner) 76 76 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.