Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPrintStack.cs @ 15287

Last change on this file since 15287 was 15189, checked in by pkimmesw, 7 years ago

#2665 Fixed small issues, testet benchmark suite, added INX Expressions

File size: 313 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack {
2  public interface IPrintStack : IPushStack<string> {
3    void NewLine();
4    void Push<T>(T item);
5    void Push(double item);
6    void Push(long item);
7    void Push(int item);
8    void Push(char item);
9    void Push(bool item);
10  }
11}
Note: See TracBrowser for help on using the repository browser.