Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPushStackBase.cs @ 16724

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: 361 bytes
RevLine 
[15771]1namespace HeuristicLab.Problems.ProgramSynthesis {
[14834]2  using System.Collections;
[14914]3  using System.Collections.Generic;
[14834]4
[14914]5  public interface IPushStack : IEnumerable {
[14834]6    bool IsEmpty { get; }
[15032]7    bool IsEnabled { get; set; }
[14914]8    int Count { get; }
[14834]9
[14914]10    void Clear();
[15289]11
[14914]12    IEnumerable<string> AsStrings();
13    IEnumerable<object> AsObjects();
[14834]14  }
15}
Note: See TracBrowser for help on using the repository browser.