Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/09/19 13:47:14 (5 years ago)
Author:
chaider
Message:

#2971 Removed Name from Storable attribute and initialized constraints with empty List

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval/IntervalConstraint.cs

    r16935 r16937  
    2828  [Item("Interval Constraint", "Constraint on intervals.")]
    2929  public sealed class IntervalConstraint : Item {
    30     [Storable(Name = "Expression")]
     30    [Storable]
    3131    private string expression;
    3232    public string Expression {
     
    4545    }
    4646
    47     [Storable(Name = "Variable")]
     47    [Storable]
    4848    private string variable;
    4949    public string Variable {
     
    5858    }
    5959
    60     [Storable(Name = "Target")]
     60    [Storable]
    6161    private string target;
    6262    public string Target {
     
    7575    }
    7676
    77     [Storable(Name = "NumberOfDerivation")]
     77    [Storable]
    7878    private int numberOfDerivation;
    7979    public int NumberOfDerivation {
     
    9090    }
    9191
    92     [Storable(Name = "Interval")]
     92    [Storable]
    9393    private Interval interval;
    9494    public Interval Interval {
     
    103103    }
    104104
    105     [Storable(Name = "InclusiveLowerBound")]
     105    [Storable]
    106106    private bool inclusiveLowerBound;
    107107    public bool InclusiveLowerBound {
     
    116116    }
    117117
    118     [Storable(Name = "InclusiveUpperBound")]
     118    [Storable]
    119119    private bool inclusiveUpperBound;
    120120    public bool InclusiveUpperBound {
     
    129129    }
    130130
    131     [Storable(Name = "Enabled")]
     131    [Storable]
    132132    private bool enabled;
    133133    public bool Enabled {
Note: See TracChangeset for help on using the changeset viewer.