Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/19 15:36:43 (5 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/InputParameter.cs

    r14338 r16901  
    2020#endregion
    2121
    22 using System;
     22using HEAL.Attic;
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using System;
    2626
    2727namespace HeuristicLab.GoalSeeking {
    2828  [Item("InputParameter", "An object describing a target for the goal seeking.")]
    29   [StorableClass]
     29  [StorableType("3F8B2C70-7EF4-439C-8E5A-A770F5431E65")]
    3030  public class InputParameter : NamedItem {
    3131    [Storable]
     
    106106
    107107    [StorableConstructor]
    108     protected InputParameter(bool deserializing) : base(deserializing) { }
     108    protected InputParameter(StorableConstructorFlag _) : base(_) { }
    109109
    110110    public InputParameter(string name, double value, double min, double max, double step, bool active = true) {
Note: See TracChangeset for help on using the changeset viewer.