summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-09-08 19:10:08 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-09-08 19:10:08 -0400
commit749d387b48456b78e448ab33516c01de20a2624b (patch)
treefa75fa90578b69ec81cb4bff0a10c98602222dcd /src
parent42efc30ddcb2d0b8471120d56d2c0c64d6866aa9 (diff)
downloadc++-749d387b48456b78e448ab33516c01de20a2624b.tar.gz
c++-749d387b48456b78e448ab33516c01de20a2624b.tar.bz2
c++-749d387b48456b78e448ab33516c01de20a2624b.zip
small perturb change
Diffstat (limited to 'src')
-rw-r--r--src/wolff_On.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wolff_On.cpp b/src/wolff_On.cpp
index 0de9d42..2356875 100644
--- a/src/wolff_On.cpp
+++ b/src/wolff_On.cpp
@@ -153,10 +153,10 @@ int main(int argc, char *argv[]) {
Hish = sqrt(H2);
}
- epsilon = sqrt((N_COMP - 1) * T / (D + Hish / 2));
+ epsilon = sqrt((N_COMP - 1) * T / (D + Hish / 2)) / 2;
gen_R = std::bind(generate_rotation_perturbation <N_COMP>, std::placeholders::_1, std::placeholders::_2, epsilon, order);
- pert_type = "PERTURB4";
+ pert_type = "PERTURB5";
} else {
gen_R = generate_rotation_uniform <N_COMP>;
pert_type = "UNIFORM";