- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- Location:
- branches/ParallelEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/ParallelEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithmMainLoop.cs ¶
r4722 r5177 219 219 } 220 220 221 public override IOperation Apply( ) {221 public override IOperation Apply(IExecutionContext context) { 222 222 if (CrossoverParameter.ActualValue == null) 223 223 return null; 224 return base.Apply( );224 return base.Apply(context); 225 225 } 226 226 } -
TabularUnified branches/ParallelEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs ¶
r4722 r5177 330 330 } 331 331 332 public override IOperation Apply( ) {332 public override IOperation Apply(IExecutionContext context) { 333 333 if (CrossoverParameter.ActualValue == null) 334 334 return null; 335 return base.Apply( );335 return base.Apply(context); 336 336 } 337 337 }
Note: See TracChangeset
for help on using the changeset viewer.