Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/10 15:03:01 (13 years ago)
Author:
epitzer
Message:

Several GUI improvements (#47)

  • add icons and tool tips
  • add support for suspending the operator trace view
  • faster skipping of stack-only operations
  • remove log view and execution time view
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DebugEngine/DebugEngine.cs

    r4904 r4909  
    162162    }
    163163
    164     public virtual void Step() {
     164    public virtual void Step(bool skipStackOperations) {
    165165      OnStarted();
    166166      lastUpdateTime = DateTime.Now;
     
    168168      timer.Start();
    169169      ProcessNextOperation();
     170      while (skipStackOperations && !(CurrentOperation is IAtomicOperation) && CanContinue)
     171        ProcessNextOperation();
    170172      timer.Stop();
    171173      ExecutionTime += DateTime.Now - lastUpdateTime;
Note: See TracChangeset for help on using the changeset viewer.