Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/SolutionCreator/IPlushCreator.cs @ 15692

Last change on this file since 15692 was 15334, checked in by pkimmesw, 7 years ago

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

File size: 1.0 KB
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.SolutionCreator {
2  using HeuristicLab.Core;
3  using HeuristicLab.Data;
4  using HeuristicLab.Optimization;
5  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc;
6  using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
7  using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding;
8
9  public interface IPlushCreator : ISolutionCreator, IPlushOperator {
10    IValueLookupParameter<IntValue> MinLengthParameter { get; }
11    IValueLookupParameter<IntValue> MaxLengthParameter { get; }
12    IValueLookupParameter<IntValue> MaxCloseParameter { get; }
13    IValueLookupParameter<DoubleValue> CloseBiasLevelParameter { get; }
14    IValueLookupParameter<PercentValue> InInstructionProbabilityParameter { get; }
15    IValueLookupParameter<IReadOnlyErcOptions> ErcOptionsParameter { get; }
16    IValueLookupParameter<IReadOnlyExpressionsConfiguration> InstructionsParameter { get; }
17    ILookupParameter<PlushVector> PlushVectorParameter { get; }
18  }
19}
Note: See TracBrowser for help on using the repository browser.