Rev | Line | |
---|
[9262] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Problems.DataAnalysis.Symbolic;
|
---|
| 6 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 7 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 8 |
|
---|
| 9 | namespace HeuristicLab.Problems.TradeRules
|
---|
| 10 | {
|
---|
| 11 | public interface ITradeRulesExpresionTree : ISymbolicDataAnalysisExpressionTreeInterpreter
|
---|
| 12 | {
|
---|
| 13 | void setInitialTraining(int initialTraining);
|
---|
| 14 | void setInitialTest(int initialTest);
|
---|
| 15 | void clearVariables();
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.