Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterVectorEvaluator.cs

    r16453 r16462  
    2727using HeuristicLab.Data;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030using HeuristicLab.Problems.ParameterOptimization;
    3131
    3232namespace HeuristicLab.Problems.ExternalEvaluation.Matlab {
    3333  [Item("MATLABParameterVectorEvaluator", "An evaluator which takes a parameter vector and returns a quality value, calculated by a MATLAB script.")]
    34   [StorableClass]
     34  [StorableType("C1BE88E2-B48F-4EB6-9F9F-25082639DA5C")]
    3535  public sealed class MatlabParameterVectorEvaluator : ParameterVectorEvaluator {
    3636    private const string QualityVariableParameterName = "QualityVariableName";
     
    5151
    5252    [StorableConstructor]
    53     private MatlabParameterVectorEvaluator(bool deserializing) : base(deserializing) { }
     53    private MatlabParameterVectorEvaluator(StorableConstructorFlag _) : base(_) { }
    5454    private MatlabParameterVectorEvaluator(MatlabParameterVectorEvaluator original, Cloner cloner)
    5555      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.