Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (6 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterVectorEvaluator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2727using HeuristicLab.Data;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    3030using HeuristicLab.Problems.ParameterOptimization;
    3131using ScilabConnector = DotNetScilab.Scilab;
     
    3333namespace HeuristicLab.Problems.ExternalEvaluation.Scilab {
    3434  [Item("SciLabParameterVectorEvaluator", "An evaluator which takes a parameter vector and returns a quality value, calculated by a Scilab script.")]
    35   [StorableClass]
     35  [StorableType("B0EEB2BC-B35E-47AC-93DE-8B2C0EFF8650")]
    3636  public sealed class ScilabParameterVectorEvaluator : ParameterVectorEvaluator {
    3737    private const string MaximizationParameterName = "Maximization";
     
    5656
    5757    [StorableConstructor]
    58     private ScilabParameterVectorEvaluator(bool deserializing) : base(deserializing) { }
     58    private ScilabParameterVectorEvaluator(StorableConstructorFlag _) : base(_) { }
    5959    private ScilabParameterVectorEvaluator(ScilabParameterVectorEvaluator original, Cloner cloner)
    6060      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.