Last change
on this file since 17714 was
14952,
checked in by pkimmesw, 8 years ago
|
#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name
|
File size:
464 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
|
---|
2 | using System;
|
---|
3 | using Core;
|
---|
4 |
|
---|
5 | public interface IErcItem : IItem {
|
---|
6 | event EventHandler<bool> EnabledChanged;
|
---|
7 | bool IsEnabled { get; set; }
|
---|
8 | }
|
---|
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 { }
|
---|
17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.