Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/18/09 23:14:57 (15 years ago)
Author:
gkronber
Message:

Fixed #633 for the SequentialEngine by:

  • introducing a boolean property into IOperator that indicates if an operator supports abortion.
  • pushing the current operation back onto the execution stack of the SequentialEngine when the current operator can be aborted.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.2/Interfaces/IOperator.cs

    r776 r1847  
    6060    /// </summary>
    6161    ICollection<IVariable> Variables { get; }
    62 
     62    /// <summary>
     63    /// Gets information whether abortion of the operator is supported.
     64    /// </summary>
     65    bool SupportsAbort { get; }
    6366    /// <summary>
    6467    /// Adds the given sub operator to the current instance.
Note: See TracChangeset for help on using the changeset viewer.