diff --git a/include/ABACUS_Utils.h b/include/ABACUS_Utils.h index 9b1a395..8e64e68 100644 --- a/include/ABACUS_Utils.h +++ b/include/ABACUS_Utils.h @@ -39,7 +39,7 @@ namespace ABACUS { // Inexplicably missing string functions in standard library: - std::string replace(const std::string& str, const std::string& from, const std::string& to) { + inline std::string replace(const std::string& str, const std::string& from, const std::string& to) { std::string repl = str; size_t start_pos = repl.find(from); if(start_pos < std::string::npos) @@ -47,7 +47,7 @@ namespace ABACUS { return repl; } - std::string replace_all(const std::string& str, const std::string& from, const std::string& to) { + inline std::string replace_all(const std::string& str, const std::string& from, const std::string& to) { std::string repl = str; if(from.empty()) return repl; diff --git a/src/SCAN/General_Scan.cc b/src/SCAN/General_Scan.cc index 9d58627..446b4c9 100644 --- a/src/SCAN/General_Scan.cc +++ b/src/SCAN/General_Scan.cc @@ -650,7 +650,12 @@ namespace ABACUS { } // Uncomment line below if .stat file is desired: - //STAT_outfile << setw(20) << label_here << "\t" << setw(5) << type_required << "\t" << setw(16) << std::scientific << running_scan_threshold << "\t" << setw(20) << ScanState.label << "\t" << setw(16) << data_value << "\t" << setw(16) << std::fixed << setprecision(8) << data_value/running_scan_threshold << endl; + STAT_outfile << setw(20) << label_here << "\t" << setw(5) << type_required + << "\t" << setw(16) << std::scientific + << exp(-paused_thread_data.logscale * il_to_do) + << "\t" << setw(20) << ScanState.label << "\t" << setw(16) << data_value + << "\t" << setw(16) << std::fixed << setprecision(8) + << data_value/exp(-paused_thread_data.logscale * il_to_do) << endl; } // if (ScanState.conv) else {