1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-08-16 18:38:28 +02: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() {
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;
}