Rev | Line | |
---|
[15771] | 1 | using HeuristicLab.Core;
|
---|
| 2 | using HeuristicLab.Data;
|
---|
| 3 | using HeuristicLab.Optimization; |
---|
| 4 | |
---|
| 5 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
[15273] | 6 | public interface IPlushCreator : ISolutionCreator, IPlushOperator {
|
---|
[15275] | 7 | IValueLookupParameter<IntValue> MinLengthParameter { get; }
|
---|
| 8 | IValueLookupParameter<IntValue> MaxLengthParameter { get; }
|
---|
| 9 | IValueLookupParameter<IntValue> MaxCloseParameter { get; }
|
---|
[15289] | 10 | IValueLookupParameter<DoubleValue> CloseBiasLevelParameter { get; }
|
---|
[15275] | 11 | IValueLookupParameter<PercentValue> InInstructionProbabilityParameter { get; }
|
---|
| 12 | IValueLookupParameter<IReadOnlyErcOptions> ErcOptionsParameter { get; }
|
---|
| 13 | IValueLookupParameter<IReadOnlyExpressionsConfiguration> InstructionsParameter { get; }
|
---|
| 14 | ILookupParameter<PlushVector> PlushVectorParameter { get; }
|
---|
[15273] | 15 | }
|
---|
| 16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.