Last change
on this file was
15289,
checked in by pkimmesw, 7 years ago
|
#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee
|
File size:
373 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack {
|
---|
2 | using System.Collections;
|
---|
3 | using System.Collections.Generic;
|
---|
4 |
|
---|
5 | public interface IPushStack : IEnumerable {
|
---|
6 | bool IsEmpty { get; }
|
---|
7 | bool IsEnabled { get; set; }
|
---|
8 | int Count { get; }
|
---|
9 |
|
---|
10 | void Clear();
|
---|
11 |
|
---|
12 | IEnumerable<string> AsStrings();
|
---|
13 | IEnumerable<object> AsObjects();
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.