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/OSGAPredictionCountsAnalyzer.cs

    r14584 r16818  
    2020#endregion
    2121
    22 using System.Linq;
     22using HEAL.Attic;
    2323using HeuristicLab.Analysis;
    2424using HeuristicLab.Common;
     
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2928using HeuristicLab.Problems.DataAnalysis.Symbolic;
    3029using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
     30using System.Linq;
    3131
    3232namespace HeuristicLab.OSGAEvaluator {
    3333  [Item("OSGAPredictionCountsAnalyzer", "An analyzer which records the counts of the rejected offspring predicted by the evaluator without evaluating all rows.")]
    34   [StorableClass]
    35 
     34  [StorableType("7730D977-A422-4C64-83C2-8989EA4B3922")]
    3635  public class OSGAPredictionCountsAnalyzer : SymbolicDataAnalysisSingleObjectiveAnalyzer {
    3736    private const string EvaluatorParameterName = "Evaluator";
     
    4039    public ILookupParameter<SymbolicRegressionSingleObjectiveEvaluator> EvaluatorParameter {
    4140      get { return (ILookupParameter<SymbolicRegressionSingleObjectiveEvaluator>)Parameters[EvaluatorParameterName]; }
     41    }
     42
     43    [StorableConstructor]
     44    protected OSGAPredictionCountsAnalyzer(StorableConstructorFlag _) : base(_) {
    4245    }
    4346
Note: See TracChangeset for help on using the changeset viewer.