Last change
on this file since 18242 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
805 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using HeuristicLab.Optimization; |
---|
4 | |
---|
5 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
6 | public interface IPlushCreator : ISolutionCreator, IPlushOperator {
|
---|
7 | IValueLookupParameter<IntValue> MinLengthParameter { get; }
|
---|
8 | IValueLookupParameter<IntValue> MaxLengthParameter { get; }
|
---|
9 | IValueLookupParameter<IntValue> MaxCloseParameter { get; }
|
---|
10 | IValueLookupParameter<DoubleValue> CloseBiasLevelParameter { get; }
|
---|
11 | IValueLookupParameter<PercentValue> InInstructionProbabilityParameter { get; }
|
---|
12 | IValueLookupParameter<IReadOnlyErcOptions> ErcOptionsParameter { get; }
|
---|
13 | IValueLookupParameter<IReadOnlyExpressionsConfiguration> InstructionsParameter { get; }
|
---|
14 | ILookupParameter<PlushVector> PlushVectorParameter { get; }
|
---|
15 | }
|
---|
16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.