Last change
on this file since 15289 was
15189,
checked in by pkimmesw, 7 years ago
|
#2665 Fixed small issues, testet benchmark suite, added INX Expressions
|
File size:
406 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter {
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
|
---|
5 |
|
---|
6 | public interface IInternalPushInterpreter : IPushInterpreter {
|
---|
7 | InterpreterPoolContainer PoolContainer { get; }
|
---|
8 | bool IsNameQuoteFlagSet { get; set; }
|
---|
9 | IReadOnlyList<Expression> InputExpressions { get; }
|
---|
10 | }
|
---|
11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.