Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/11 00:15:33 (13 years ago)
Author:
abeham
Message:

#1465

  • Added movie view for HistogramHistory
  • Added QualityDistributionAnalyzer for analyzing the development of the quality distributions in a population
  • Added AggregatedHistogramHistoryView for displaying a histogram of the accumulated data in a history
Location:
branches/histogram/HeuristicLab.Analysis/3.3
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/Histogram.cs

    r5961 r5994  
    5252      values = new ObservableCollection<double>();
    5353    }
     54    public Histogram(string name)
     55      : base(name) {
     56      values = new ObservableCollection<double>();
     57    }
     58    public Histogram(string name, string description)
     59      : base(description) {
     60      values = new ObservableCollection<double>();
     61    }
    5462
    5563    public override IDeepCloneable Clone(Cloner cloner) {
  • branches/histogram/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj

    r5961 r5994  
    140140    <Compile Include="HeuristicLabAnalysisPlugin.cs" />
    141141    <Compile Include="Properties\AssemblyInfo.cs" />
     142    <Compile Include="QualityAnalysis\QualityDistributionAnalyzer.cs" />
    142143    <Compile Include="ValueAnalysis\MinAverageMaxValueAnalyzer.cs" />
    143144    <Compile Include="ValueAnalysis\MinAverageMaxValueCalculator.cs" />
Note: See TracChangeset for help on using the changeset viewer.