Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-NORTHAMERICA\jcl <jcl@JCL.northamerica.corp.microsoft.com>2012-12-08 06:50:41 +0400
committerU-NORTHAMERICA\jcl <jcl@JCL.northamerica.corp.microsoft.com>2012-12-08 06:50:41 +0400
commit6448335cc4983c9b3c17e523b19e7efa578b6903 (patch)
tree8a64ad4273d560ec2b60c6e7b2fce1ea87766f96 /vowpalwabbit/rand48.cc
parenta23dfacede0b65552c96e8df44505edaffd6b1a4 (diff)
fixed cubic bug
Diffstat (limited to 'vowpalwabbit/rand48.cc')
-rw-r--r--vowpalwabbit/rand48.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vowpalwabbit/rand48.cc b/vowpalwabbit/rand48.cc
index f9d58755..d7aa5ff5 100644
--- a/vowpalwabbit/rand48.cc
+++ b/vowpalwabbit/rand48.cc
@@ -19,12 +19,12 @@ uint64_t v = c;
void msrand48(uint64_t initial)
{
- v = initial;
+ v = initial;
}
float frand48()
{
- return merand48(v);
+ return merand48(v);
}