namespace HeuristicLab.Problems.ProgramSynthesis.Push.Manipulator { using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Optimization; using HeuristicLab.Problems.ProgramSynthesis.Base.Erc; using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration; using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding; public interface IPlushManipulator : IPlushOperator, IManipulator { IValueLookupParameter InInstructionProbabilityParameter { get; } IValueLookupParameter ErcOptionsParameter { get; } IValueLookupParameter InstructionsParameter { get; } ILookupParameter PlushVectorParameter { get; } } }