Changeset 3715 for trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm
- Timestamp:
- 05/08/10 03:58:59 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithmMainLoop.cs ¶
r3659 r3715 213 213 #endregion 214 214 } 215 216 public override IOperation Apply() { 217 if (CrossoverParameter.ActualValue == null) 218 return null; 219 return base.Apply(); 220 } 215 221 } 216 222 } -
TabularUnified trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs ¶
r3659 r3715 328 328 #endregion 329 329 } 330 331 public override IOperation Apply() { 332 if (CrossoverParameter.ActualValue == null) 333 return null; 334 return base.Apply(); 335 } 330 336 } 331 337 }
Note: See TracChangeset
for help on using the changeset viewer.