Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/19 15:43:11 (5 years ago)
Author:
bburlacu
Message:

#2635: Update solution to .net framework version 4.6.1, switch to new persistence, add plugin frame file and prebuild event.

Location:
branches/2635_HeuristicLab.OSGAEvaluator/HeuristicLab.OSGAEvaluator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2635_HeuristicLab.OSGAEvaluator/HeuristicLab.OSGAEvaluator

    • Property svn:ignore set to
      Plugin.cs
  • branches/2635_HeuristicLab.OSGAEvaluator/HeuristicLab.OSGAEvaluator/AdjustedEvaluatedSolutionsAnalyzer.cs

    r14428 r16818  
    2020#endregion
    2121
     22using HEAL.Attic;
    2223using HeuristicLab.Common;
    2324using HeuristicLab.Core;
     
    2526using HeuristicLab.Optimization;
    2627using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2828using HeuristicLab.Problems.DataAnalysis.Symbolic;
    2929using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
     
    3131namespace HeuristicLab.OSGAEvaluator {
    3232  [Item("AdjustedEvaluatedSolutionsAnalyzer", "Analyzer which aggregates the adjusted evaluated solutions count from the predictive evaluator.")]
    33   [StorableClass]
     33  [StorableType("791A5594-FC15-41AF-9D06-86D1313C4C8B")]
    3434  public class AdjustedEvaluatedSolutionsAnalyzer : SymbolicDataAnalysisSingleObjectiveAnalyzer {
    3535    private const string EvaluatorParameterName = "Evaluator";
     
    4949
    5050    [StorableConstructor]
    51     protected AdjustedEvaluatedSolutionsAnalyzer(bool deserializing) : base(deserializing) { }
     51    protected AdjustedEvaluatedSolutionsAnalyzer(StorableConstructorFlag _) : base(_) { }
    5252
    5353    protected AdjustedEvaluatedSolutionsAnalyzer(AdjustedEvaluatedSolutionsAnalyzer original, Cloner cloner) : base(original, cloner) { }
Note: See TracChangeset for help on using the changeset viewer.