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/GoalParameter.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("GoalParameter", "An object describing a tunable parameter used in goal seeking.")]
    29   [StorableClass]
     29  [StorableType("493140D6-5DA2-40AD-97C9-86CDCA72CDA7")]
    3030  public class GoalParameter : NamedItem {
    3131    [Storable]
     
    107107
    108108    [StorableConstructor]
    109     protected GoalParameter(bool deserializing) : base(deserializing) { }
     109    protected GoalParameter(StorableConstructorFlag _) : base(_) { }
    110110
    111111    public GoalParameter(string name, double goal, double weight, double variance, double step, bool active = true) {
Note: See TracChangeset for help on using the changeset viewer.