Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/21/09 20:23:47 (15 years ago)
Author:
gkronber
Message:

Refactored CEDMA dispatcher and CEDMA server view to allow different modeling scenarios for each variable. #754

File:
1 edited

Legend:

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

    r2285 r2375  
    3030    string Name { get; }
    3131    string Description { get; }
    32     IOperator ProblemInjector { get; set; }
     32
    3333    Dataset Dataset { get; set; }
     34    IEnumerable<int> AllowedVariables { get; set; }
     35    int TrainingSamplesStart { get; set; }
     36    int TrainingSamplesEnd { get; set; }
     37    int ValidationSamplesStart { get; set; }
     38    int ValidationSamplesEnd { get; set; }
     39    int TestSamplesStart { get; set; }
     40    int TestSamplesEnd { get; set; }
    3441    int TargetVariable { get; set; }
    3542    IEngine Engine { get; }
Note: See TracChangeset for help on using the changeset viewer.