Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/26/10 03:51:30 (14 years ago)
Author:
swagner
Message:

Removed property ExecutionContext in Operator (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs

    r5162 r5177  
    295295    }
    296296
    297     public override IOperation Apply() {
     297    public override IOperation Apply(IExecutionContext context) {
    298298      if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null
    299299        || TabuCheckerParameter.ActualValue == null || TabuMakerParameter.ActualValue == null)
    300300        return null;
    301       return base.Apply();
     301      return base.Apply(context);
    302302    }
    303303  }
Note: See TracChangeset for help on using the changeset viewer.