Last change
on this file since 14898 was
14897,
checked in by pkimmesw, 8 years ago
|
#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push
|
File size:
714 bytes
|
Rev | Line | |
---|
[14897] | 1 | using System.Collections.Generic;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
|
---|
| 4 | public interface IReadOnlyErcOptions {
|
---|
| 5 | double ErcProbability { get; }
|
---|
| 6 | IErcValueItem<int> IntegerErcOptions { get; }
|
---|
| 7 | IErcValueItem<double> FloatErcOptions { get; }
|
---|
| 8 | IErcValueItem<bool> BooleanErcOptions { get; }
|
---|
| 9 | IErcValueItem<char> CharErcOptions { get; }
|
---|
| 10 | IErcValueItem<string> StringErcOptions { get; }
|
---|
| 11 | IErcValueItem<string> NameErcOptions { get; }
|
---|
| 12 | IErcValueItem<IReadOnlyList<int>> IntegerVectorErcOptions { get; }
|
---|
| 13 | IErcValueItem<IReadOnlyList<double>> FloatVectorErcOptions { get; }
|
---|
| 14 | IErcValueItem<IReadOnlyList<string>> StringVectorErcOptions { get; }
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.