Last change
on this file since 15781 was
15275,
checked in by pkimmesw, 7 years ago
|
#2665 Added PlushEncoding, ZeroErrorDistributionAnalzer
|
File size:
707 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
|
---|
4 | using HeuristicLab.Core;
|
---|
5 |
|
---|
6 | public interface IReadOnlyErcOptions : IItem {
|
---|
7 | double ErcProbability { get; }
|
---|
8 | IErcItem<int> IntegerErcOptions { get; }
|
---|
9 | IErcItem<double> FloatErcOptions { get; }
|
---|
10 | IErcItem<bool> BooleanErcOptions { get; }
|
---|
11 | IErcItem<char> CharErcOptions { get; }
|
---|
12 | IErcItem<string> StringErcOptions { get; }
|
---|
13 | IErcItem<string> NameErcOptions { get; }
|
---|
14 | IErcItem<IReadOnlyList<int>> IntegerVectorErcOptions { get; }
|
---|
15 | IErcItem<IReadOnlyList<double>> FloatVectorErcOptions { get; }
|
---|
16 | IErcItem<IReadOnlyList<string>> StringVectorErcOptions { get; }
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.