From 72274cda4eb63b01b8e0fe8ee8b6d56ebaa0a456 Mon Sep 17 00:00:00 2001 From: Aurelien Delval Date: Tue, 27 Sep 2022 14:29:30 +0000 Subject: [PATCH] Conditional ignore for qmckl_probes calls in distance test --- org/qmckl_distance.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/org/qmckl_distance.org b/org/qmckl_distance.org index 1ef16ad..a6cf49a 100644 --- a/org/qmckl_distance.org +++ b/org/qmckl_distance.org @@ -19,8 +19,10 @@ Functions for the computation of distances between particles. int main() { qmckl_context context; context = qmckl_context_create(); - qmckl_init_probes(); +#ifdef VFC_CI + qmckl_init_probes(); +#endif #+end_src @@ -1518,7 +1520,9 @@ end function qmckl_distance_rescaled_deriv_e_f assert (qmckl_context_destroy(context) == QMCKL_SUCCESS); +#ifdef VFC_CI qmckl_dump_probes(); +#endif return 0; }