Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/06/10 03:37:29 (15 years ago)
Author:
swagner
Message:

Continued work on algorithm batch processing (#947).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IOptimizer.cs

    r3274 r3275  
    2626  /// Interface to represent optimizers such as algorithms, batch runs, or experiments.
    2727  /// </summary>
    28   public interface IOptimizer : IExecutable {
    29     void Prepare(bool clearResults);
     28  public interface IOptimizer : INamedItem, IExecutable {
     29    RunCollection Runs { get; }
     30
     31    void Prepare(bool clearRuns);
    3032  }
    3133}
Note: See TracChangeset for help on using the changeset viewer.