Skip to content

Commit 9b91e2c

Browse files
committed
fix previous commit by moving period into string; add some spaces
- and use simpler characters
1 parent c9a14f0 commit 9b91e2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CbcParameters.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,9 +1139,9 @@ void CbcParameters::addCbcSolverStrParams() {
11391139

11401140
parameters_[CbcParam::OUTPUTPRECISION]->setup(
11411141
"precision!Output", "Handle format precision with string print mask",
1142-
"Precision: %.nf n digits after decimal; %.ng n significant digits"
1143-
"Width: %mw minimum field width, padded with spaces by default."
1144-
"Remember the f or g at end as %18.5 by itself gives garbage".
1142+
"Precision: %.nf -> n digits after decimal; %.ng -> n significant digits; "
1143+
"Width: %mw -> minimum field width, padded with spaces by default. "
1144+
"Remember the f or g at end as %18.5 by itself gives garbage."
11451145
);
11461146
parameters_[CbcParam::OUTPUTPRECISION]->setPushFunc(CbcParamUtils::doOutputPrecisionParam);
11471147
}

0 commit comments

Comments
 (0)