- Timestamp:
- 05/08/10 03:58:59 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r3698 r3715 416 416 #endregion 417 417 } 418 419 public override IOperation Apply() { 420 if (CrossoverParameter.ActualValue == null) 421 return null; 422 return base.Apply(); 423 } 418 424 } 419 425 } -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
r3713 r3715 263 263 #endregion 264 264 } 265 266 public override IOperation Apply() { 267 if (CrossoverParameter.ActualValue == null) 268 return null; 269 return base.Apply(); 270 } 265 271 } 266 272 } -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASAMainLoop.cs
r3673 r3715 436 436 #endregion 437 437 } 438 439 public override IOperation Apply() { 440 if (CrossoverParameter.ActualValue == null) 441 return null; 442 return base.Apply(); 443 } 438 444 } 439 445 }
Note: See TracChangeset
for help on using the changeset viewer.