Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/19 15:36:43 (6 years ago)
Author:
bburlacu
Message:

#2679: Update branch: framework version 4.6.1, use heal.attic for persistence, some minor refactoring.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2679_HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem/3.4/Analyzers/BestSolutionAnalyzer.cs

    r14526 r16901  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    23 using System.Linq;
     22using HEAL.Attic;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    2928using HeuristicLab.Optimization;
    3029using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3230using HeuristicLab.Problems.DataAnalysis;
     31using System.Collections.Generic;
     32using System.Linq;
    3333
    3434namespace HeuristicLab.GoalSeeking {
    35   [StorableClass]
    3635  [Item("BestSolutionAnalyzer", "An analyzer which identifies the best solution from the SingleObjectiveProcessParameterOptimizationProblem")]
     36  [StorableType("2CAFF3A8-D2FC-4402-A2F8-DD828465870E")]
    3737  public class BestSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
    3838    private const string RowParameterName = "Row";
     
    100100
    101101    [StorableConstructor]
    102     protected BestSolutionAnalyzer(bool deserializing) : base(deserializing) { }
     102    protected BestSolutionAnalyzer(StorableConstructorFlag _) : base(_) { }
    103103
    104104
Note: See TracChangeset for help on using the changeset viewer.