From 64309c94b7a673901ad7417e7134d54a2de948f0 Mon Sep 17 00:00:00 2001 From: William Blanke Date: Wed, 9 Oct 2024 21:53:22 -0700 Subject: [PATCH] hmm --- src/prover_slow.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/prover_slow.h b/src/prover_slow.h index 3c88165..9e735d2 100644 --- a/src/prover_slow.h +++ b/src/prover_slow.h @@ -26,6 +26,7 @@ uint64_t GetBlock(uint64_t i, uint64_t k, uint64_t T, integer& B) { mpz_mul_2exp(res.impl, res.impl, k); res = res / B; auto res_vector = res.to_vector(); + printf("GB %lld\n",res_vector.empty() ? 0 : res_vector[0]); return res_vector.empty() ? 0 : res_vector[0]; }