Changeset 1857 for trunk/sources/HeuristicLab.SupportVectorMachines
- Timestamp:
- 05/20/09 10:50:18 (16 years ago)
- 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 109 109 <Name>HeuristicLab.Data-3.2</Name> 110 110 </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>115 111 <ProjectReference Include="..\..\HeuristicLab.Logging\3.2\HeuristicLab.Logging-3.2.csproj"> 116 112 <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project> 117 113 <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> 118 118 </ProjectReference> 119 119 <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.2\HeuristicLab.Operators.Programmable-3.2.csproj"> -
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLabSupportVectorMachinesPlugin.cs
r1854 r1857 33 33 [Dependency(Dependency = "HeuristicLab.Data-3.2")] 34 34 [Dependency(Dependency = "HeuristicLab.DataAnalysis-3.2")] 35 [Dependency(Dependency = "HeuristicLab. GP.StructureIdentification-3.3")]35 [Dependency(Dependency = "HeuristicLab.Modeling-3.2")] 36 36 [Dependency(Dependency = "HeuristicLab.SequentialEngine-3.2")] 37 37 [Dependency(Dependency = "HeuristicLab.Logging-3.2")] -
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SupportVectorRegression.cs
r1854 r1857 33 33 using HeuristicLab.Logging; 34 34 using HeuristicLab.Operators.Programmable; 35 using HeuristicLab.Modeling; 35 36 36 37 namespace 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 38 43 private SequentialEngine.SequentialEngine engine; 39 44 public IEngine Engine {
Note: See TracChangeset
for help on using the changeset viewer.