From 8488e0c614a418e7f8f7f0b1cca210410f85deb6 Mon Sep 17 00:00:00 2001 From: Sofie Martins Date: Sat, 27 Apr 2024 20:29:48 +0200 Subject: [PATCH] removed debug lines --- LibHR/Update/update_mt.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/LibHR/Update/update_mt.c b/LibHR/Update/update_mt.c index 65501b4fe..87f8ef056 100644 --- a/LibHR/Update/update_mt.c +++ b/LibHR/Update/update_mt.c @@ -34,7 +34,6 @@ void init_ghmc(ghmc_par *par) { /* allocate space for the backup copy of suNg_field */ if (u_gauge_old == NULL) { u_gauge_old = alloc_suNg_field(&glattice); } copy_suNg_field(u_gauge_old, u_gauge); - printf("plaq gauge: %0.15e\n", avr_plaquette(u_gauge_old)); /* allocate space for the backup copy of the scalar field */ if (u_scalar != NULL) { @@ -213,11 +212,7 @@ int update_ghmc() { } } else { lprintf("HMC", 10, "Configuration rejected.\n"); - start_sendrecv_suNg_field(u_gauge); - printf("plaq old: %0.15e\n", avr_plaquette(u_gauge_old)); copy_suNg_field(u_gauge, u_gauge_old); - start_sendrecv_suNg_field(u_gauge); - printf("plaq after copy: %0.15e\n", avr_plaquette()); if (u_scalar != NULL) { copy_suNg_scalar_field(u_scalar, u_scalar_old); } if (four_fermion_active) { copy_scalar_field(ff_sigma, ff_sigma_old);