Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/17 01:11:18 (7 years ago)
Author:
pkimmesw
Message:

#2665 simplifier, push solution results view, performance improvements, small bug fixes, ui fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IStack.cs

    r14727 r14777  
    2222
    2323    void Push(T item);
     24    void Push(T item1, T item2);
     25    void Push(T item1, T item2, T item3);
     26    void Push(T item1, T item2, T item3, T item4);
    2427
    25     void Push(params T[] items);
    26     void ReversePush(params T[] items);
    27 
    28     void Push(IReadOnlyList<T> items);
     28    void Push(IReadOnlyList<T> items, int startIndex = 0);
    2929
    3030    T Peek();
     
    3535
    3636    void Insert(int index, T item);
    37 
    38     void Insert(int index, params T[] items);
    39 
    40     void Insert(int index, IEnumerable<T> items);
    4137
    4238    T ReverseElementAt(int offset);
Note: See TracChangeset for help on using the changeset viewer.