Free cookie consent management tool by TermsFeed Policy Generator

source: branches/sluengo/HeuristicLab.Problems.TradeRules/Symbols/ITradeRulesExpresionTree.cs @ 14536

Last change on this file since 14536 was 9262, checked in by sluengo, 11 years ago
File size: 549 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Problems.DataAnalysis.Symbolic;
6using HeuristicLab.Problems.DataAnalysis;
7using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
8
9namespace 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.