Last change
on this file since 16003 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
669 bytes
|
Rev | Line | |
---|
[15771] | 1 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
[15273] | 2 | public interface IReadOnlyPushConfiguration : IReadOnlyExpressionsConfiguration {
|
---|
[14744] | 3 | int EvalPushLimit { get; }
|
---|
| 4 | int MaxDepth { get; }
|
---|
[14777] | 5 | int MaxStringLength { get; }
|
---|
[14834] | 6 | int MaxVectorLength { get; }
|
---|
[15334] | 7 | int MaxProgramLength { get; }
|
---|
[14744] | 8 | int MaxPointsInRandomExpression { get; }
|
---|
| 9 | bool TopLevelPushCode { get; }
|
---|
| 10 | bool TopLevelPopCode { get; }
|
---|
[15334] | 11 | int MaxClose { get; }
|
---|
| 12 | double CloseBiasLevel { get; }
|
---|
[14834] | 13 | IReadOnlyErcOptions ErcOptions { get; }
|
---|
[15017] | 14 | string FloatStringFormat { get; }
|
---|
[15334] | 15 | bool TopLevelPushInputArguments { get; }
|
---|
[15032] | 16 |
|
---|
| 17 | bool IsStackEnabled(StackTypes stackType);
|
---|
[14744] | 18 | }
|
---|
| 19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.