Free cookie consent management tool by TermsFeed Policy Generator

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

Removed property ExecutionContext in Operator (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchMainLoop.cs

    r4807 r5177  
    246246    }
    247247
    248     public override IOperation Apply() {
     248    public override IOperation Apply(IExecutionContext context) {
    249249      if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null)
    250250        return null;
    251       return base.Apply();
     251      return base.Apply(context);
    252252    }
    253253  }
Note: See TracChangeset for help on using the changeset viewer.