From 4181e189a1ec93aa1d1c8f3ee480094e5bf59624 Mon Sep 17 00:00:00 2001 From: Marco De Lucia Date: Wed, 9 Aug 2023 09:50:09 +0200 Subject: [PATCH] MDL: add stdout message from initialisation in SimParams --- src/SimParams.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SimParams.cpp b/src/SimParams.cpp index 95244b6fa..62a231a08 100644 --- a/src/SimParams.cpp +++ b/src/SimParams.cpp @@ -177,6 +177,13 @@ int SimParams::parseFromCmdl(char *argv[], RInsidePOET &R) { cout << "CPP: DHT save snapshots is " << chem_params.dht_snaps << endl; cout << "CPP: DHT load file is " << chem_params.dht_file << endl; } + + if (chem_params.use_interp) { + cout << "CPP: PHT interpolation enabled: " << chem_params.use_interp << endl; + cout << "CPP: PHT interp-size = " << chem_params.pht_size << endl; + cout << "CPP: PHT interp-min = " << chem_params.interp_min_entries << endl; + cout << "CPP: PHT interp-bucket-entries = " << chem_params.pht_max_entries << endl; + } } cmdl(1) >> filesim;