diff options
author | Christopher Kenna <cjk@cs.unc.edu> | 2011-10-14 23:53:30 -0400 |
---|---|---|
committer | Christopher Kenna <cjk@cs.unc.edu> | 2011-10-14 23:53:30 -0400 |
commit | 15e37b11cab6226a3dc7ac2be75e1151209a28f5 (patch) | |
tree | 279d9186b6929e4fd6e9093932c7ca86e99cf4c5 | |
parent | 3e159663a1ecc762cf65783dbf57f885aaf0cd64 (diff) |
multiply by 20 now
-rw-r--r-- | bin/rtspin.beta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rtspin.beta.c b/bin/rtspin.beta.c index 3eafa82..4c8a56f 100644 --- a/bin/rtspin.beta.c +++ b/bin/rtspin.beta.c | |||
@@ -258,7 +258,7 @@ int main(int argc, char** argv) | |||
258 | 258 | ||
259 | do { | 259 | do { |
260 | beta_sample = gsl_ran_beta(beta_rng, alpha, beta); | 260 | beta_sample = gsl_ran_beta(beta_rng, alpha, beta); |
261 | exec_time = lvl_c_time * 10.0 * beta_sample * scale; | 261 | exec_time = lvl_c_time * 20.0 * beta_sample * scale; |
262 | /* convert to seconds */ | 262 | /* convert to seconds */ |
263 | exec_time = exec_time * 0.000000001; | 263 | exec_time = exec_time * 0.000000001; |
264 | } while(job(exec_time, start + duration)); | 264 | } while(job(exec_time, start + duration)); |