Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 16099 was 15771, checked in by bburlacu, 7 years ago

#2895: Add solution skeleton for PushGP with genealogy analysis.

File size: 361 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis {
2  using System.Collections;
3  using System.Collections.Generic;
4
5  public interface IPushStack : IEnumerable {
6    bool IsEmpty { get; }
7    bool IsEnabled { get; set; }
8    int Count { get; }
9
10    void Clear();
11
12    IEnumerable<string> AsStrings();
13    IEnumerable<object> AsObjects();
14  }
15}
Note: See TracBrowser for help on using the repository browser.