Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Parser/IntervalConstraint.cs @ 16587

Last change on this file since 16587 was 16587, checked in by chaider, 5 years ago

#2971

  • Added TextValueView
  • Added IntervalConstraint Parser

This two classes will be moved to another plugin

File size: 544 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.DataAnalysis {
8  public class IntervalConstraint {
9    public string Definition { get; set; }
10    public Interval Interval { get; set; }
11    public bool InclusiveLowerBound { get; set; }
12    public bool InclusiveUpperBound { get; set; }
13    public bool IsDerivation { get; set; }
14    public string Variable { get; set; }
15    public int NumberOfDerivation { get; set; }
16  }
17}
Note: See TracBrowser for help on using the repository browser.