Last change
on this file since 17511 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
454 bytes
|
Rev | Line | |
---|
[15771] | 1 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
[14905] | 2 | using System;
|
---|
[14952] | 3 | using Core;
|
---|
[14905] | 4 |
|
---|
| 5 | public interface IErcItem : IItem {
|
---|
| 6 | event EventHandler<bool> EnabledChanged;
|
---|
| 7 | bool IsEnabled { get; set; }
|
---|
| 8 | }
|
---|
[14952] | 9 |
|
---|
| 10 | public interface IErcItem<out T> : IErcItem {
|
---|
| 11 | T GetErcValue(IRandom random);
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | public interface IWeightedErcItem : IErcItem, IWeighted { }
|
---|
| 15 |
|
---|
| 16 | public interface IWeightedErcItem<out T> : IErcItem<T>, IWeightedErcItem { }
|
---|
[14905] | 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.