Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3288 for trunk


Ignore:
Timestamp:
04/08/10 22:57:51 (14 years ago)
Author:
swagner
Message:

Renamed Engine.ProcessNextOperator into Engine.ProcessNextOperation (#863).

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Engine.cs

    r3280 r3288  
    9292      timer.Start();
    9393      while (!pausePending && !stopPending && (executionStack.Count > 0)) {
    94         ProcessNextOperator();
     94        ProcessNextOperation();
    9595      }
    9696      timer.Stop();
     
    101101    }
    102102
    103     protected abstract void ProcessNextOperator();
     103    protected abstract void ProcessNextOperation();
    104104
    105105    private void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) {
  • trunk/sources/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs

    r3262 r3288  
    4141    /// is pushed on the stack again.<br/>
    4242    /// If the execution was successful <see cref="EngineBase.OnOperationExecuted"/> is called.</remarks>
    43     protected override void ProcessNextOperator() {
     43    protected override void ProcessNextOperation() {
    4444      currentOperator = null;
    4545      IOperation next = ExecutionStack.Pop();
Note: See TracChangeset for help on using the changeset viewer.