Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/11 02:22:45 (13 years ago)
Author:
mkommend
Message:

#1418:

  • Worked on IntRange and DoubleRange
  • Updated evaluators, analyzers, problems and problem data to use IntRanges
  • Removed properties to access the value of LookupParameter
  • Corrected files.txt
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionLineChartView.cs

    r5663 r5759  
    136136      this.chart.ChartAreas[0].AxisX.StripLines.Clear();
    137137      this.CreateAndAddStripLine("Training", Color.FromArgb(20, Color.Green),
    138         Content.ProblemData.TrainingPartitionStart.Value,
    139         Content.ProblemData.TrainingPartitionEnd.Value);
     138        Content.ProblemData.TrainingPartition.Start,
     139        Content.ProblemData.TrainingPartition.End);
    140140      this.CreateAndAddStripLine("Test", Color.FromArgb(20, Color.Red),
    141         Content.ProblemData.TestPartitionStart.Value,
    142         Content.ProblemData.TestPartitionEnd.Value);
     141        Content.ProblemData.TestPartition.Start,
     142        Content.ProblemData.TestPartition.End);
    143143    }
    144144
Note: See TracChangeset for help on using the changeset viewer.