Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/09/12 11:42:08 (13 years ago)
Author:
gkronber
Message:

#1733 updated alglib sources to version 3.4.0 of alglib and updated project and plugin references

Location:
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj

    r7097 r7294  
    101101  </PropertyGroup>
    102102  <ItemGroup>
    103     <Reference Include="ALGLIB-3.1.0, Version=3.1.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    104       <HintPath>..\..\bin\ALGLIB-3.1.0.dll</HintPath>
     103    <Reference Include="ALGLIB-3.4.0, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     104      <HintPath>..\..\bin\ALGLIB-3.4.0.dll</HintPath>
    105105      <Private>False</Private>
    106106    </Reference>
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/NearestNeighbour/NearestNeighbourModel.cs

    r7259 r7294  
    7373      kdTree.curdist = original.kdTree.curdist;
    7474      kdTree.debugcounter = original.kdTree.debugcounter;
    75       kdTree.distmatrixtype = original.kdTree.distmatrixtype;
    7675      kdTree.idx = (int[])original.kdTree.idx.Clone();
    7776      kdTree.kcur = original.kdTree.kcur;
     
    241240    }
    242241    [Storable]
    243     public int KDTreeDistMatrixType {
    244       get { return kdTree.distmatrixtype; }
    245       set { kdTree.distmatrixtype = value; }
    246     }
    247     [Storable]
    248242    public int[] KDTreeIdx {
    249243      get { return kdTree.idx; }
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Plugin.cs.frame

    r7259 r7294  
    2828  [Plugin("HeuristicLab.Algorithms.DataAnalysis", "Provides wrappers for data analysis algorithms implemented in external libraries (linear regression, linear discriminant analysis, k-means clustering, support vector classification and regression)", "3.4.2.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.DataAnalysis-3.4.dll", PluginFileType.Assembly)]
    30   [PluginDependency("HeuristicLab.ALGLIB", "3.1.0")]
     30  [PluginDependency("HeuristicLab.ALGLIB", "3.4.0")]
    3131  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3232  [PluginDependency("HeuristicLab.Common", "3.3")]
Note: See TracChangeset for help on using the changeset viewer.