Last change
on this file since 15287 was
15032,
checked in by pkimmesw, 8 years ago
|
#2665 Fixed bias 0 issue, PushExpressionFrequencyAnalyzer, Fixed probability for ERC settings, Fixed enable/disable instructions, Added expression descriptions
|
File size:
550 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 | void Swap(int count);
|
---|
12 | void Yank(int index);
|
---|
13 | void RemoveTop();
|
---|
14 | void Remove(int count);
|
---|
15 | void RemoveAt(int index);
|
---|
16 | void RemoveAt(int index, int count);
|
---|
17 | IEnumerable<string> AsStrings();
|
---|
18 | IEnumerable<object> AsObjects();
|
---|
19 | }
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.