d9fd2f5402
Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
25 lines
461 B
C++
25 lines
461 B
C++
#include "gsl/gsl_rng.h"
|
|
#include <math.h>
|
|
|
|
int main()
|
|
{
|
|
// return code
|
|
int retval = 1;
|
|
|
|
// create a generator
|
|
gsl_rng* generator;
|
|
generator = gsl_rng_alloc(gsl_rng_mt19937);
|
|
|
|
// Read a value.
|
|
double const Result = gsl_rng_uniform(generator);
|
|
|
|
// Check value
|
|
double const expectedResult(0.999741748906672);
|
|
if (fabs(expectedResult - Result) < 1.0e-6)
|
|
retval = 0;
|
|
|
|
// free allocated memory
|
|
gsl_rng_free(generator);
|
|
return retval;
|
|
}
|