Skip to content
Snippets Groups Projects
Commit 548c4d31 authored by Wuttke, Joachim's avatar Wuttke, Joachim Committed by Wuttke, Joachim
Browse files

rv info_line; problem is with messages from cf, not from cp.

parent e8df6be6
No related branches found
No related tags found
No related merge requests found
......@@ -358,10 +358,11 @@ string CCurve::info_line() const
}
assert_attr();
for ( int ip=0; ip<P.size(); ip++ ) {
out += (ParAttr[ip]=='u') ? ' ' : ParAttr[ip];
snprintf( wrd, LEN, "%-13.6g", P[ip] );
out += wrd;
out += (ParAttr[ip]=='u') ? ' ' : ParAttr[ip];
out += " ";
if( ip<P.size()-1 )
out += " ";
}
snprintf( wrd, LEN, "%-2i ", fitOutcome );
out += wrd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment