aboutsummaryrefslogtreecommitdiff
path: root/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h')
-rw-r--r--MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h b/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h
deleted file mode 100644
index 3fea9550..00000000
--- a/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/random.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/// \file
-/// Simple random number generators for uniform and gaussian
-/// distributions.
-
-#ifndef __RANDOM_H
-#define __RANDOM_H
-
-#include "mytype.h"
-#include <stdint.h>
-
-/// Return a random number from a Gaussian distribution.
-real_t gasdev(uint64_t* seed);
-
-/// Return a random number from a uniform distribution.
-double lcg61(uint64_t* seed);
-
-/// Return a seed suitable for calling lcg61 or gasdev.
-uint64_t mkSeed(uint32_t id, uint32_t callSite);
-
-#endif