Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/source_io/module_hs/cal_pLpR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,9 @@ void ModuleIO::AngularMomentumCalculator::kernel(
// il and jl are indexes of the angular momentum,
// iz and jz are indexes of the zeta functions
// im and jm are indexes of the magnetic quantum numbers.
std::string fmtstr = "%4d%4d%4d%4d%4d%4d%4d%4d%4d%4d%4d%4d%4d";
fmtstr += "%" + std::to_string(precision*2) + "." + std::to_string(precision) + "e";
fmtstr += "%" + std::to_string(precision*2) + "." + std::to_string(precision) + "e\n";
std::string fmtstr = "%4d %4d %4d %4d %4d %4d %4d %4d %4d %4d %4d %4d %4d";
fmtstr += " %" + std::to_string(precision*2) + "." + std::to_string(precision) + "e";
fmtstr += " %" + std::to_string(precision*2) + "." + std::to_string(precision) + "e\n";
FmtCore fmt(fmtstr);

// placeholders
Expand Down
Loading