Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/06/10 01:57:29 (14 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/Algorithm.cs

    r3262 r3274  
    124124    }
    125125
    126     public virtual void Prepare() {
     126    public void Prepare() {
     127      Prepare(true);
     128    }
     129    public virtual void Prepare(bool clearResults) {
    127130      if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped))
    128131        throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState));
Note: See TracChangeset for help on using the changeset viewer.