From c4995f86c032cb14e14d1b71130b17ace67e0640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Thu, 7 Sep 2023 09:12:44 +0200 Subject: [PATCH] fix: output DHT size in megabyte --- src/SimParams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SimParams.cpp b/src/SimParams.cpp index 0a81c5b73..e02046392 100644 --- a/src/SimParams.cpp +++ b/src/SimParams.cpp @@ -194,7 +194,7 @@ int SimParams::parseFromCmdl(char *argv[], RInsidePOET &R) { // << simparams.dht_significant_digits); // MSG("DHT logarithm before rounding: " // << (simparams.dht_log ? "ON" : "OFF")); - MSG("DHT size per process (Byte) = " + + MSG("DHT size per process (Megabyte) = " + std::to_string(chem_params.dht_size)); MSG("DHT save snapshots is " + BOOL_PRINT(chem_params.dht_snaps)); MSG("DHT load file is " + chem_params.dht_file);