Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/08/19 14:11:07 (5 years ago)
Author:
chaider
Message:

#2971

  • Extended evaluator with linear scaling
  • Added constructor to IntervalConstraint
File:
1 edited

Legend:

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

    r16592 r16596  
    1515    public string Variable { get; set; }
    1616    public int NumberOfDerivation { get; set; }
     17
     18    public IntervalConstraint() { }
     19
     20    public IntervalConstraint(string expression, string definition, Interval interval, bool inclusiveLowerBound, bool inclusiveUpperBound, bool isDerivation, string variable, int numberOfDerivation) {
     21      Expression = expression;
     22      Definition = definition;
     23      Interval = interval;
     24      InclusiveLowerBound = inclusiveLowerBound;
     25      InclusiveUpperBound = inclusiveUpperBound;
     26      IsDerivation = isDerivation;
     27      Variable = variable;
     28      NumberOfDerivation = numberOfDerivation;
     29    }
    1730  }
    1831}
Note: See TracChangeset for help on using the changeset viewer.