Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IErcValueItem.cs @ 14898

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: 219 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
2  using HeuristicLab.Core;
3
4  public interface IErcValueItem<T> : IItem {
5    bool IsEnabled { get; set; }
6    T GetErcValue(IRandom random);
7  }
8}
Note: See TracBrowser for help on using the repository browser.