Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/14/12 15:21:28 (12 years ago)
Author:
sforsten
Message:

#1784: changes have been applied, according to the review comments of mkommend

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Regression/3.4/TrentMcConaghy/TrentMcConaghyInstanceProvider.cs

    r7759 r7805  
    4545    }
    4646
    47     protected override string FileExtension { get { return "TrentMcConaghy"; } }
     47    protected override string FileName { get { return "TrentMcConaghy"; } }
    4848
    49     public override RegressionProblemData LoadData(IDataDescriptor id) {
    50       RegressionProblemData regData = base.LoadData(id);
     49    public override IRegressionProblemData LoadData(IDataDescriptor id) {
     50      IRegressionProblemData regData = base.LoadData(id);
    5151      string targetVar = regData.InputVariables.First().Value;
    5252      IEnumerable<string> allowedInputVars = regData.InputVariables.Where(x => !x.Equals(regData.TargetVariable)).Select(x => x.Value);
Note: See TracChangeset for help on using the changeset viewer.