summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2016-12-22 21:50:33 +0100
committerEugen Wissner <belka@caraus.de>2016-12-22 21:50:33 +0100
commitf7fb89fed0a978ba03acf5ad028b2a460afded64 (patch)
tree7c6552f8a90017da0cd03ad50a6fa0ea23159d25
parente32af2d09e2e26f7c88c0147989eb5596a82cfe2 (diff)
downloadtanya-f7fb89fed0a978ba03acf5ad028b2a460afded64.tar.gz
Move random.d into math submodule
-rw-r--r--source/tanya/math/random.d (renamed from source/tanya/random.d)4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/tanya/random.d b/source/tanya/math/random.d
index 8e69c32..0405bc0 100644
--- a/source/tanya/random.d
+++ b/source/tanya/math/random.d
@@ -3,12 +3,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
+ * Random number generator.
+ *
* Copyright: Eugene Wissner 2016.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:belka@caraus.de, Eugene Wissner)
*/
-module tanya.random;
+module tanya.math.random;
import std.experimental.allocator;
import std.digest.sha;