Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/10/13 00:53:29 (11 years ago)
Author:
abeham
Message:

#2002: Added Analysis, Analysis.Views and ability to scale axes logarithmically

Location:
branches/CMAES/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/CMAES/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAAnalyzer.cs

    r9140 r9141  
    8686      } else {
    8787        sigma = new DataTable("Sigma");
     88        sigma.VisualProperties.YAxisLogScale = true;
    8889        sigma.Rows.Add(new DataRow("Sigma"));
    8990        results.Add(new Result("Sigma", sigma));
     
    9697      } else {
    9798        scaling = new DataTable("Scaling");
     99        scaling.VisualProperties.YAxisLogScale = true;
    98100        for (int i = 0; i < sp.C.Rows; i++)
    99101          scaling.Rows.Add(new DataRow("Axis" + i.ToString()));
     
    120122      } else {
    121123        stdDevs = new DataTable("StandardDeviations");
     124        stdDevs.VisualProperties.YAxisLogScale = true;
    122125        for (int i = 0; i < vector.Length; i++)
    123126          stdDevs.Rows.Add(new DataRow("Axis" + i.ToString()));
  • branches/CMAES/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/HeuristicLab.Algorithms.CMAEvolutionStrategy-3.3.csproj

    r9132 r9141  
    9898      <Private>False</Private>
    9999    </Reference>
    100     <Reference Include="HeuristicLab.Analysis-3.3">
    101       <SpecificVersion>False</SpecificVersion>
    102       <HintPath>..\..\..\..\sources\bin\HeuristicLab.Analysis-3.3.dll</HintPath>
    103       <Private>False</Private>
    104     </Reference>
    105100    <Reference Include="HeuristicLab.Collections-3.3">
    106101      <SpecificVersion>False</SpecificVersion>
     
    223218    </BootstrapperPackage>
    224219  </ItemGroup>
    225   <ItemGroup />
     220  <ItemGroup>
     221    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
     222      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
     223      <Name>HeuristicLab.Analysis-3.3</Name>
     224      <Private>False</Private>
     225    </ProjectReference>
     226  </ItemGroup>
    226227  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    227228  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset for help on using the changeset viewer.