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