Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14102


Ignore:
Timestamp:
07/18/16 17:02:25 (8 years ago)
Author:
abeham
Message:

#2634: Integrated RLD analysis into trunk

  • HeuristicLab.Analysis:
    • IndexedDataTable<T>, IndexedDataRow<T>
    • QualityPerClockAnalyzer, QualityPerEvaluationsAnalyzer
    • ExpectedRuntimeHelper
  • HeuristicLab.Analysis.Views:
    • IndexedDataTableView
  • HeuristicLab.Optimization.Views:
    • RunCollectionRLDView

To test:

  1. Configure an algorithm/problem combination
  2. In the algorithm's analyzers add the QualityPerEvaluationsAnalyzer
  3. Make sure the BestAverageWorstQualityAnalyzer is executed before
  4. Run the algorithm several times
  5. In the Runs tab select the "Run-length Distribution View"
Location:
trunk/sources
Files:
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/HeuristicLab.Analysis.Views-3.3.csproj

    r11623 r14102  
    122122  </ItemGroup>
    123123  <ItemGroup>
     124    <Compile Include="IndexedDataTableView.cs" />
     125    <Compile Include="IndexedDataTableView.Designer.cs">
     126      <DependentUpon>IndexedDataTableView.cs</DependentUpon>
     127    </Compile>
    124128    <Compile Include="ScatterPlotVisualPropertiesDialog.cs">
    125129      <SubType>Form</SubType>
  • trunk/sources/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj

    r12817 r14102  
    131131    <Compile Include="AlleleFrequencyAnalysis\AlleleFrequencyCollectionHistory.cs" />
    132132    <Compile Include="BestScopeSolutionAnalyzer.cs" />
     133    <Compile Include="DataVisualization\IndexedDataRow.cs" />
     134    <Compile Include="DataVisualization\IndexedDataTable.cs" />
    133135    <Compile Include="DataVisualization\ScatterPlotDataRowVisualProperties.cs" />
    134136    <Compile Include="DataVisualization\ScatterPlotDataRow.cs" />
     
    154156    <Compile Include="QualityAnalysis\BestAverageWorstQualityCalculator.cs" />
    155157    <Compile Include="QualityAnalysis\BestQualityMemorizer.cs" />
     158    <Compile Include="QualityAnalysis\ExpectedRuntimeHelper.cs" />
    156159    <Compile Include="QualityAnalysis\QualityAnalyzer.cs" />
    157160    <Compile Include="QualityAnalysis\QualityDifferenceCalculator.cs" />
     
    159162    <Compile Include="Properties\AssemblyInfo.cs" />
    160163    <Compile Include="QualityAnalysis\QualityDistributionAnalyzer.cs" />
     164    <Compile Include="QualityAnalysis\QualityPerClockAnalyzer.cs" />
     165    <Compile Include="QualityAnalysis\QualityPerEvaluationsAnalyzer.cs" />
    161166    <Compile Include="QualityAnalysis\ScaledQualityDifferenceAnalyzer.cs" />
    162167    <Compile Include="Statistics\BonferroniHolm.cs" />
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj

    r14071 r14102  
    269269      <DependentUpon>RunCollectionEqualityConstraintView.cs</DependentUpon>
    270270    </Compile>
     271    <Compile Include="RunCollectionViews\RunCollectionRLDView.cs">
     272      <SubType>UserControl</SubType>
     273    </Compile>
     274    <Compile Include="RunCollectionViews\RunCollectionRLDView.Designer.cs">
     275      <DependentUpon>RunCollectionRLDView.cs</DependentUpon>
     276    </Compile>
    271277    <Compile Include="RunCollectionViews\RunCollectionTableView.cs">
    272278      <SubType>UserControl</SubType>
Note: See TracChangeset for help on using the changeset viewer.