using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HeuristicLab.Problems.DataAnalysis { public class IntervalConstraint { public string Definition { get; set; } public Interval Interval { get; set; } public bool InclusiveLowerBound { get; set; } public bool InclusiveUpperBound { get; set; } public bool IsDerivation { get; set; } public string Variable { get; set; } public int NumberOfDerivation { get; set; } } }