aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl14
1 files changed, 8 insertions, 6 deletions
diff --git a/schedule.ccl b/schedule.ccl
index d460e0f..328e1de 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,10 +1,9 @@
#schedule.ccl for thorn Multipole
-STORAGE: test_integration_convergence_orders
-
if (enable_test)
{
STORAGE: harmonics[1]
+ STORAGE: test_integration_convergence_orders
}
schedule Multipole_Calc at CCTK_ANALYSIS after (calc_np,PsiKadelia,Accelerator_CopyBack)
@@ -27,9 +26,12 @@ schedule Multipole_ParamCheck at CCTK_PARAMCHECK
OPTIONS: GLOBAL
} "Check Multipole parameters"
-# # Tests
+# Tests
-schedule Multipole_TestSimpson at CCTK_PARAMCHECK
+if (enable_test)
{
- LANG: C
-} "Test simpson integration method"
+ schedule Multipole_TestIntegrationConvergence at CCTK_PARAMCHECK
+ {
+ LANG: C
+ } "Test convergence of integration"
+}