Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/19 12:41:36 (5 years ago)
Author:
gkronber
Message:

#2971: made branch compile with current version of trunk

Location:
branches/2971_named_intervals
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals

    • Property svn:ignore set to
      packages
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionSolution.cs

    r15583 r16628  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.Problems.DataAnalysis {
     
    2930  /// Represents a regression data analysis solution
    3031  /// </summary>
    31   [StorableClass]
     32  [StorableType("CE8CB5F3-6BC8-448B-80A0-DDCEDDB4F062")]
    3233  public class RegressionSolution : RegressionSolutionBase {
    3334    protected readonly Dictionary<int, double> evaluationCache;
    3435
    3536    [StorableConstructor]
    36     protected RegressionSolution(bool deserializing)
    37       : base(deserializing) {
     37    protected RegressionSolution(StorableConstructorFlag _) : base(_) {
    3838      evaluationCache = new Dictionary<int, double>();
    3939    }
Note: See TracChangeset for help on using the changeset viewer.