Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/05/14 11:13:34 (9 years ago)
Author:
bburlacu
Message:

#2098: Added support for boolean, conditional and comparison symbols in the SymbolicDataAnalysisExpressionExcelFormatter. Added SymbolicDiscriminantFunctionClassificationSolutionExcelExporter derived from the SymbolicSolutionExcelExporter. Updated view to use the specialized exporter.

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views-3.4.csproj

    r10540 r11523  
    9393  </PropertyGroup>
    9494  <ItemGroup>
     95    <Reference Include="EPPlus-3.1.3, Version=3.1.3.0, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL">
     96      <SpecificVersion>False</SpecificVersion>
     97      <HintPath>..\..\bin\EPPlus-3.1.3.dll</HintPath>
     98      <Private>False</Private>
     99    </Reference>
    95100    <Reference Include="System" />
    96101    <Reference Include="System.Core">
     
    116121      <DependentUpon>InteractiveSymbolicClassificationSolutionSimplifierView.cs</DependentUpon>
    117122    </Compile>
     123    <Compile Include="SymbolicDiscriminantFunctionClassificationSolutionExcelExporter.cs" />
    118124    <Compile Include="SymbolicClassificationSolutionView.cs">
    119125      <SubType>UserControl</SubType>
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/SymbolicDiscriminantFunctionClassificationSolutionView.cs

    r11171 r11523  
    2525using System.Windows.Forms;
    2626using HeuristicLab.MainForm;
    27 using HeuristicLab.Problems.DataAnalysis.Symbolic.Views;
    2827using HeuristicLab.Problems.DataAnalysis.Views;
    2928
     
    5453
    5554    private void exportButton_Click(object sender, EventArgs e) {
    56       var exporter = new SymbolicSolutionExcelExporter();
     55      var exporter = new SymbolicDiscriminantFunctionClassificationSolutionExcelExporter();
    5756      exportFileDialog.Filter = exporter.FileTypeFilter;
    5857      if (exportFileDialog.ShowDialog(this) == DialogResult.OK) {
Note: See TracChangeset for help on using the changeset viewer.