Using boost random from 'boost' namespace instead of boost::random for compatibility with boost < 1.47

release/4.3a0
Richard Roberts 2014-02-12 16:38:45 -05:00
parent ec19643840
commit 5ecfac348c
1 changed files with 2 additions and 2 deletions

View File

@ -536,8 +536,8 @@ void runCompare()
void runPerturb() void runPerturb()
{ {
// Set up random number generator // Set up random number generator
boost::random::mt19937 rng; boost::mt19937 rng;
boost::random::normal_distribution<double> normal(0.0, perturbationNoise); boost::normal_distribution<double> normal(0.0, perturbationNoise);
// Perturb values // Perturb values
VectorValues noise; VectorValues noise;