Last change
on this file since 15866 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
414 bytes
|
Rev | Line | |
---|
[15771] | 1 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
[15334] | 2 | using System.Collections.Generic;
|
---|
| 3 |
|
---|
[15289] | 4 | public interface IPrintStack : IPushStack {
|
---|
[15334] | 5 | bool IsCurrentLineEmpty { get; }
|
---|
| 6 | IReadOnlyList<string> Lines { get; }
|
---|
| 7 |
|
---|
[15189] | 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.