Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/09 10:50:18 (15 years ago)
Author:
gkronber
Message:

Worked on lose coupling of CEDMA and GP/SVR with plugin HeuristicLab.Modeling as common bridge. #635

Location:
trunk/sources/HeuristicLab.SupportVectorMachines/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLab.SupportVectorMachines-3.2.csproj

    r1854 r1857  
    109109      <Name>HeuristicLab.Data-3.2</Name>
    110110    </ProjectReference>
    111     <ProjectReference Include="..\..\HeuristicLab.GP.StructureIdentification\3.3\HeuristicLab.GP.StructureIdentification-3.3.csproj">
    112       <Project>{74223A32-C726-4978-BE78-37113A18373C}</Project>
    113       <Name>HeuristicLab.GP.StructureIdentification-3.3</Name>
    114     </ProjectReference>
    115111    <ProjectReference Include="..\..\HeuristicLab.Logging\3.2\HeuristicLab.Logging-3.2.csproj">
    116112      <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project>
    117113      <Name>HeuristicLab.Logging-3.2</Name>
     114    </ProjectReference>
     115    <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj">
     116      <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project>
     117      <Name>HeuristicLab.Modeling-3.2</Name>
    118118    </ProjectReference>
    119119    <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.2\HeuristicLab.Operators.Programmable-3.2.csproj">
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLabSupportVectorMachinesPlugin.cs

    r1854 r1857  
    3333  [Dependency(Dependency = "HeuristicLab.Data-3.2")]
    3434  [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")]
    35   [Dependency(Dependency = "HeuristicLab.GP.StructureIdentification-3.3")]
     35  [Dependency(Dependency = "HeuristicLab.Modeling-3.2")]
    3636  [Dependency(Dependency = "HeuristicLab.SequentialEngine-3.2")]
    3737  [Dependency(Dependency = "HeuristicLab.Logging-3.2")]
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SupportVectorRegression.cs

    r1854 r1857  
    3333using HeuristicLab.Logging;
    3434using HeuristicLab.Operators.Programmable;
     35using HeuristicLab.Modeling;
    3536
    3637namespace HeuristicLab.SupportVectorMachines {
    37   public class SupportVectorRegression : ItemBase, IEditable {
     38  public class SupportVectorRegression : ItemBase, IEditable, IAlgorithm {
     39
     40    public string Name { get { return "SupportVectorRegression"; } }
     41    public string Description { get { return "TODO"; } }
     42
    3843    private SequentialEngine.SequentialEngine engine;
    3944    public IEngine Engine {
Note: See TracChangeset for help on using the changeset viewer.