1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2025-01-08 20:33:40 +01:00

Conditional ignore for qmckl_probes calls in distance test

This commit is contained in:
Aurelien Delval 2022-09-27 14:29:30 +00:00
parent eab4e56c18
commit 72274cda4e

View File

@ -19,8 +19,10 @@ Functions for the computation of distances between particles.
int main() { int main() {
qmckl_context context; qmckl_context context;
context = qmckl_context_create(); context = qmckl_context_create();
qmckl_init_probes();
#ifdef VFC_CI
qmckl_init_probes();
#endif
#+end_src #+end_src
@ -1518,7 +1520,9 @@ end function qmckl_distance_rescaled_deriv_e_f
assert (qmckl_context_destroy(context) == QMCKL_SUCCESS); assert (qmckl_context_destroy(context) == QMCKL_SUCCESS);
#ifdef VFC_CI
qmckl_dump_probes(); qmckl_dump_probes();
#endif
return 0; return 0;
} }