Changeset 9196
- Timestamp:
- 01/31/13 11:03:48 (12 years ago)
- 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 38 38 </PropertyGroup> 39 39 <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> 40 55 <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 41 56 <Private>False</Private> … … 104 119 </ItemGroup> 105 120 <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> 106 127 <Compile Include="RunCollectionStatisticalTabularView.cs"> 107 128 <SubType>UserControl</SubType> -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/RunCollectionStatisticalTabularView.cs
r9192 r9196 52 52 } 53 53 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 54 66 public new RunCollection Content { 55 67 get { return (RunCollection)base.Content; } -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/RunCollectionStatisticalTabularView.designer.cs
r9095 r9196 26 26 /// </summary> 27 27 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 }39 28 40 29 #region Windows Form Designer generated code -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/SolutionToPopulationAnalyzer.cs
r9185 r9196 88 88 cnt = original.cnt; 89 89 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); 93 93 } 94 94
Note: See TracChangeset
for help on using the changeset viewer.