using System.Collections.Generic; namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc { using HeuristicLab.Core; public interface IReadOnlyErcOptions : IItem { double ErcProbability { get; } IErcItem IntegerErcOptions { get; } IErcItem FloatErcOptions { get; } IErcItem BooleanErcOptions { get; } IErcItem CharErcOptions { get; } IErcItem StringErcOptions { get; } IErcItem NameErcOptions { get; } IErcItem> IntegerVectorErcOptions { get; } IErcItem> FloatVectorErcOptions { get; } IErcItem> StringVectorErcOptions { get; } } }