aboutsummaryrefslogtreecommitdiff
path: root/src/experimental/randombasic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/experimental/randombasic.cpp')
-rw-r--r--src/experimental/randombasic.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/experimental/randombasic.cpp b/src/experimental/randombasic.cpp
index e69de29..03bf7fe 100644
--- a/src/experimental/randombasic.cpp
+++ b/src/experimental/randombasic.cpp
@@ -0,0 +1,15 @@
1/*
2 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
8#include "bu/randombasic.h"
9
10Bu::RandomBasic::RandomBasic() :
11 c( 6364136223846793005 ),
12 m( 1442695040888963407 )
13{
14}
15