Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/11 17:02:57 (13 years ago)
Author:
gkronber
Message:

#1418 ported views for support vector machine solutions and models.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassificationSolution.cs

    r5690 r5694  
    3535  [Item("SupportVectorClassificationSolution", "Represents a support vector solution for a classification problem which can be visualized in the GUI.")]
    3636  [StorableClass]
    37   public sealed class SupportVectorClassificationSolution : ClassificationSolution {
     37  public sealed class SupportVectorClassificationSolution : ClassificationSolution, ISupportVectorMachineSolution {
    3838
    39     public new SupportVectorMachineModel Model {
    40       get { return (SupportVectorMachineModel)base.Model; }
     39    public new ISupportVectorMachineModel Model {
     40      get { return (ISupportVectorMachineModel)base.Model; }
    4141    }
    4242
Note: See TracChangeset for help on using the changeset viewer.