Free cookie consent management tool by TermsFeed Policy Generator

source: branches/sluengo/HeuristicLab.Problems.TradeRules/Solution/ITradeRulesSolution.cs @ 9262

Last change on this file since 9262 was 9262, checked in by sluengo, 11 years ago
File size: 836 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Problems.DataAnalysis;
6using HeuristicLab.Core;
7using HeuristicLab.Common;
8using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
9
10namespace HeuristicLab.Problems.TradeRules
11{
12    public interface ITradeRulesSolution : IDataAnalysisSolution
13    {
14        new ISymbolicRegressionModel Model { get; }
15        new IRegressionProblemData ProblemData { get; set; }
16
17        IEnumerable<double> EstimatedTestValues { get; }
18        IEnumerable<double> EstimatedTrainingValues { get; }
19        IEnumerable<double> EstimatedValues { get; }
20        IEnumerable<double> GetEstimatedValues(IEnumerable<int> rows);
21       
22        double TestCash { get; }
23        double TrainingCash { get; }     
24    }
25}
Note: See TracBrowser for help on using the repository browser.