- Timestamp:
- 12/28/10 01:44:33 (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 ¶
r5177 r5178 219 219 } 220 220 221 public override IOperation Apply( IExecutionContext context) {221 public override IOperation Apply() { 222 222 if (CrossoverParameter.ActualValue == null) 223 223 return null; 224 return base.Apply( context);224 return base.Apply(); 225 225 } 226 226 } -
TabularUnified branches/ParallelEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs ¶
r5177 r5178 330 330 } 331 331 332 public override IOperation Apply( IExecutionContext context) {332 public override IOperation Apply() { 333 333 if (CrossoverParameter.ActualValue == null) 334 334 return null; 335 return base.Apply( context);335 return base.Apply(); 336 336 } 337 337 }
Note: See TracChangeset
for help on using the changeset viewer.