Free cookie consent management tool by TermsFeed Policy Generator

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

#650 (IAlgorithm and derived interfaces should provide properties to retrieve results):

  • Implemented properties to retrieve model quality
  • Changed CEDMA executor to retrieve results via properties
  • Removed obsolete class Execution in CEDMA (replaced by the interface IAlgorithm)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling/3.2/IAlgorithm.cs

    r1906 r1922  
    2424using System.Text;
    2525using HeuristicLab.Core;
     26using HeuristicLab.DataAnalysis;
    2627
    2728namespace HeuristicLab.Modeling {
     
    3031    string Description { get; }
    3132    IOperator ProblemInjector { get; set; }
     33    Dataset Dataset { get; set; }
     34    int TargetVariable { get; set; }
    3235    IEngine Engine { get; }
    33 
    3436    IModel Model { get; }
    3537  }
Note: See TracChangeset for help on using the changeset viewer.