Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Problems.DataAnalysis;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 | using HeuristicLab.Common;
|
---|
8 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
|
---|
9 |
|
---|
10 | namespace 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.