Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Manipulator/IPlushManipulator.cs @ 16986

Last change on this file since 16986 was 15771, checked in by bburlacu, 6 years ago

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

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