Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9196


Ignore:
Timestamp:
01/31/13 11:03:48 (11 years ago)
Author:
ascheibe
Message:

#1886

  • fixed a cloning bug
  • fixed forgotten event handler deregistration
  • added a run collection view for analyzing parameter influences
Location:
branches/HeuristicLab.Analysis.AlgorithmBehavior
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3.csproj

    r9095 r9196  
    3838  </PropertyGroup>
    3939  <ItemGroup>
     40    <Reference Include="Accord">
     41      <HintPath>libs\Accord.dll</HintPath>
     42    </Reference>
     43    <Reference Include="Accord.Math">
     44      <HintPath>libs\Accord.Math.dll</HintPath>
     45    </Reference>
     46    <Reference Include="Accord.Statistics">
     47      <HintPath>libs\Accord.Statistics.dll</HintPath>
     48    </Reference>
     49    <Reference Include="AForge">
     50      <HintPath>libs\AForge.dll</HintPath>
     51    </Reference>
     52    <Reference Include="AForge.Math">
     53      <HintPath>libs\AForge.Math.dll</HintPath>
     54    </Reference>
    4055    <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    4156      <Private>False</Private>
     
    104119  </ItemGroup>
    105120  <ItemGroup>
     121    <Compile Include="ParameterInfluenceView.cs">
     122      <SubType>UserControl</SubType>
     123    </Compile>
     124    <Compile Include="ParameterInfluenceView.designer.cs">
     125      <DependentUpon>ParameterInfluenceView.cs</DependentUpon>
     126    </Compile>
    106127    <Compile Include="RunCollectionStatisticalTabularView.cs">
    107128      <SubType>UserControl</SubType>
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/RunCollectionStatisticalTabularView.cs

    r9192 r9196  
    5252    }
    5353
     54    /// <summary>
     55    /// Clean up any resources being used.
     56    /// </summary>
     57    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
     58    protected override void Dispose(bool disposing) {
     59      if (disposing && (components != null)) {
     60        stringConvertibleMatrixView.DataGridView.RowHeaderMouseDoubleClick -= new DataGridViewCellMouseEventHandler(DataGridView_RowHeaderMouseDoubleClick);
     61        components.Dispose();
     62      }
     63      base.Dispose(disposing);
     64    }
     65
    5466    public new RunCollection Content {
    5567      get { return (RunCollection)base.Content; }
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/RunCollectionStatisticalTabularView.designer.cs

    r9095 r9196  
    2626    /// </summary>
    2727    private System.ComponentModel.IContainer components = null;
    28 
    29     /// <summary>
    30     /// Clean up any resources being used.
    31     /// </summary>
    32     /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    33     protected override void Dispose(bool disposing) {
    34       if (disposing && (components != null)) {
    35         components.Dispose();
    36       }
    37       base.Dispose(disposing);
    38     }
    3928
    4029    #region Windows Form Designer generated code
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/SolutionToPopulationAnalyzer.cs

    r9185 r9196  
    8888      cnt = original.cnt;
    8989      lastGeneration = original.lastGeneration;
    90       populationDiversityPlot = (ScatterPlotHelper)populationDiversityPlot.Clone(cloner);
    91       populationQualityPlot = (ScatterPlotHelper)populationQualityPlot.Clone(cloner);
    92       qualityPlot = (ScatterPlotHelper)qualityPlot.Clone(cloner);
     90      populationDiversityPlot = (ScatterPlotHelper)original.populationDiversityPlot.Clone(cloner);
     91      populationQualityPlot = (ScatterPlotHelper)original.populationQualityPlot.Clone(cloner);
     92      qualityPlot = (ScatterPlotHelper)original.qualityPlot.Clone(cloner);
    9393    }
    9494
Note: See TracChangeset for help on using the changeset viewer.