Changeset 6197 for branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Crossovers/DoubleValue
- Timestamp:
- 05/14/11 18:49:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Crossovers/DoubleValue/NormalDoubleValueCrossover.cs
r6038 r6197 39 39 offspring.Value = range.ApplyStepSize(offspring.Value); 40 40 } while (!range.IsInRange(offspring.Value)); 41 42 if (offspring.Value < 0) 43 throw new Exception("WTF Exception"); 44 41 45 return offspring; 42 46 }
Note: See TracChangeset
for help on using the changeset viewer.