Changeset 7644
- Timestamp:
- 03/21/12 11:14:53 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Random/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Random/3.3/NormalRandomizer.cs
r7259 r7644 88 88 NormalDistributedRandom normalRandom = new NormalDistributedRandom(random, mu, sigma); 89 89 ValueParameter.ActualValue = new DoubleValue(normalRandom.NextDouble()); 90 return null;90 return base.Apply(); 91 91 } 92 92 } -
trunk/sources/HeuristicLab.Random/3.3/UniformRandomizer.cs
r7259 r7644 89 89 90 90 ValueParameter.ActualValue = new DoubleValue(random.NextDouble() * (max - min) + min); 91 return null;91 return base.Apply(); 92 92 } 93 93 }
Note: See TracChangeset
for help on using the changeset viewer.