Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/08 13:08:41 (16 years ago)
Author:
gkronber
Message:

implemented #216 (ProcessingEngine should terminate on breakpoints)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid/ClientForm.cs

    r412 r414  
    153153      ProcessingEngine engine = (ProcessingEngine)sender;
    154154
    155       // if the engine was stopped because of an error it's not necessary to return the whole engine
     155      // if the engine was stopped because of an error (not suspended because of a breakpoint)
     156      // it's not necessary to return the whole engine
    156157      // instead just return an empty engine that has the aborted flag set
    157       if(engine.Canceled) {
     158      if(engine.Canceled && !engine.Suspended) {
    158159        engine.Reset();
    159160        engine.OperatorGraph.Clear();
Note: See TracChangeset for help on using the changeset viewer.