Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/20/17 11:39:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added PlushEncoding, ZeroErrorDistributionAnalzer

Location:
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/SolutionCreator
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/SolutionCreator/IPlushCreator.cs

    r15273 r15275  
    11namespace HeuristicLab.Problems.ProgramSynthesis.Push.SolutionCreator {
     2  using HeuristicLab.Core;
     3  using HeuristicLab.Data;
    24  using HeuristicLab.Optimization;
     5  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc;
     6  using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
    37  using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding;
    48
    59  public interface IPlushCreator : ISolutionCreator, IPlushOperator {
    6 
     10    IValueLookupParameter<IntValue> MinLengthParameter { get; }
     11    IValueLookupParameter<IntValue> MaxLengthParameter { get; }
     12    IValueLookupParameter<IntValue> MinCloseParameter { get; }
     13    IValueLookupParameter<IntValue> MaxCloseParameter { get; }
     14    IValueLookupParameter<PercentValue> InInstructionProbabilityParameter { get; }
     15    IValueLookupParameter<IReadOnlyErcOptions> ErcOptionsParameter { get; }
     16    IValueLookupParameter<IReadOnlyExpressionsConfiguration> InstructionsParameter { get; }
     17    ILookupParameter<PlushVector> PlushVectorParameter { get; }
    718  }
    819}
Note: See TracChangeset for help on using the changeset viewer.