summaryrefslogtreecommitdiff
path: root/src/util/random.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2017-11-17 09:44:13 -0800
committerGitHub <noreply@github.com>2017-11-17 09:44:13 -0800
commit40b04572d72ed5c46b85ec3cd06e5654efaa6d33 (patch)
treeab2220a5fe9935778c510ce56a0bfdad2d96afe6 /src/util/random.cpp
parent6c6f4e23aea405a812b1c6a3dd4d80696eb34741 (diff)
Add random number generator. (#1370)
This adds a deterministic (seeded) random number generator (RNG). It implements the xorshift* generator (see S. Vigna, An experimental exploration of Marsaglia's xorshift generators, scrambled. ACM Trans. Math. Softw. 42(4): 30:1-30:23, 2016).
Diffstat (limited to 'src/util/random.cpp')
-rw-r--r--src/util/random.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/util/random.cpp b/src/util/random.cpp
new file mode 100644
index 000000000..aca7756ae
--- /dev/null
+++ b/src/util/random.cpp
@@ -0,0 +1,60 @@
+/********************* */
+/*! \file random.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Aina Niemetz
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief A Random Number Generator.
+ **
+ ** A random number generator, implements the xorshift* generator
+ ** (see S. Vigna, An experimental exploration of Marsaglia's xorshift
+ ** generators, scrambled. ACM Trans. Math. Softw. 42(4): 30:1-30:23, 2016).
+ **/
+
+#include "util/random.h"
+
+#include <cfloat>
+#include "base/cvc4_assert.h"
+
+namespace CVC4 {
+
+uint64_t Random::rand()
+{
+ /* xorshift* generator (see S. Vigna, An experimental exploration of
+ * Marsaglia's xorshift generators, scrambled. ACM Trans. Math. Softw.
+ * 42(4): 30:1-30:23, 2016). */
+ d_state ^= d_state >> 12;
+ d_state ^= d_state << 25;
+ d_state ^= d_state >> 27;
+ d_state *= uint64_t{2685821657736338717};
+ return d_state;
+}
+
+uint64_t Random::pick(uint64_t from, uint64_t to)
+{
+ Assert(from <= to);
+ Assert(to < UINT64_MAX);
+ return (Random::rand() % (to - from + 1)) + from;
+}
+
+double Random::pickDouble(double from, double to)
+{
+ Assert(from <= to);
+ Assert(to <= DBL_MAX);
+ return Random::rand() * (to - from) + from;
+}
+
+bool Random::pickWithProb(double probability)
+{
+ Assert(probability <= 1);
+ uint64_t p = (uint64_t) (probability * 1000);
+ uint64_t r = pick(0, 999);
+ return r < p;
+}
+
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback