Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/11 01:52:19 (13 years ago)
Author:
swagner
Message:

Prevented disappearing of runs in an optimizer when moving the optimizer up or down in an experiment (#1445)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/IObservableList.cs

    r5445 r5928  
    2323
    2424namespace HeuristicLab.Collections {
    25   public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { }
     25  public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> {
     26    void Reverse();
     27    void Reverse(int index, int count);
     28  }
    2629}
Note: See TracChangeset for help on using the changeset viewer.