Last change
on this file since 17511 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
414 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | public interface IPrintStack : IPushStack {
|
---|
5 | bool IsCurrentLineEmpty { get; }
|
---|
6 | IReadOnlyList<string> Lines { get; }
|
---|
7 |
|
---|
8 | void NewLine();
|
---|
9 | void Push<T>(T item);
|
---|
10 | void Push(double item);
|
---|
11 | void Push(long item);
|
---|
12 | void Push(int item);
|
---|
13 | void Push(char item);
|
---|
14 | void Push(bool item);
|
---|
15 | }
|
---|
16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.