Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2971
Interval-Parser:

  • Changed Parser ==> after last group there can be now an infinite amount of whitepsaces
  • Save userinput as property
  • Save variable case-sensitive

NamedIntervals

  • Changed Storable attribute from IEnumerable to KeyValuePair, because old Persistance cant handle IEnumerable

Added SymbolicRegressionConstraintAnalyzer
SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator

  • Fixed checking if a given interval is in another interval
File size: 588 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 Derivaiton { get; set; }
10    public string Definition { get; set; }
11    public Interval Interval { get; set; }
12    public bool InclusiveLowerBound { get; set; }
13    public bool InclusiveUpperBound { get; set; }
14    public bool IsDerivation { get; set; }
15    public string Variable { get; set; }
16    public int NumberOfDerivation { get; set; }
17  }
18}
Note: See TracBrowser for help on using the repository browser.