Changeset 5177 for branches/ParallelEngine/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealingMainLoop.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealingMainLoop.cs
r4722 r5177 220 220 } 221 221 222 public override IOperation Apply( ) {222 public override IOperation Apply(IExecutionContext context) { 223 223 if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null) 224 224 return null; 225 return base.Apply( );225 return base.Apply(context); 226 226 } 227 227 }
Note: See TracChangeset
for help on using the changeset viewer.