Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/SolutionCreator/IPlushCreator.cs

Last change on this file was 15771, checked in by bburlacu, 7 years ago

#2895: Add solution skeleton for PushGP with genealogy analysis.

File size: 805 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using HeuristicLab.Optimization;
4
5namespace 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.