MDL: add stdout message from initialisation in SimParams

This commit is contained in:
Marco De Lucia 2023-08-09 09:50:09 +02:00
parent 88662d6b2e
commit 4181e189a1

View File

@ -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 save snapshots is " << chem_params.dht_snaps << endl;
cout << "CPP: DHT load file is " << chem_params.dht_file << 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; cmdl(1) >> filesim;