summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2018-05-07 14:25:00 +0200
committerAnton Khirnov <anton@khirnov.net>2018-05-07 14:25:00 +0200
commit0ae63d2d47add9a5c594ea24d0defb7da017c62d (patch)
treee672e53f35c520c5cc8443fbe599a932a14750ec
parent29091dc1b2dfc37f7e681b91a7dbfcab1c01f9f1 (diff)
Use the outer bound as the maximum eval radius.
-rw-r--r--src/qms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qms.c b/src/qms.c
index 4be70c6..54cd657 100644
--- a/src/qms.c
+++ b/src/qms.c
@@ -243,7 +243,8 @@ static int context_init(cGH *cctkGH)
qms->gh = cctkGH;
- qms->max_radius = 60.0;
+ //qms->max_radius = 60.0;
+ qms->max_radius = outer_bound;
ret = qms_solver_init(&qms->solver, cctkGH, basis_order_r, basis_order_z,
outer_bound, filter_power, 0.0, ccz4);