We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcf56ed commit 42c9d67Copy full SHA for 42c9d67
mfront/src/MaterialPropertyParametersHandler.cxx
@@ -57,7 +57,10 @@ namespace mfront {
57
p->name + "'");
58
const auto pv =
59
p->getAttribute<double>(VariableDescription::defaultValue);
60
+ const auto prec = os.precision();
61
+ os.precision(14);
62
os << p->name << "(" << pv << ")";
63
+ os.precision(prec);
64
if (++p != mpd.parameters.end()) {
65
os << ",\n";
66
}
0 commit comments