Last change
on this file since 16724 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
697 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
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.