no need to escape % in stream usage

This commit is contained in:
Arne Morten Kvarving 2017-05-10 08:51:16 +02:00
parent d286949075
commit 392ad49073

View File

@ -370,17 +370,17 @@ bool AdaptiveSIM::adaptMesh (int iStep)
switch (threshold) {
case NONE:
IFEM::cout << beta <<"\% of all "
IFEM::cout << beta <<"% of all "
<< (scheme < 2 ? "elements" : "basis functions");
break;
case MAXIMUM:
IFEM::cout << beta <<"\% of max error ("<< limit << ")";
IFEM::cout << beta <<"% of max error ("<< limit << ")";
break;
case AVERAGE:
IFEM::cout << beta <<"\% of average error ("<< limit <<")";
IFEM::cout << beta <<"% of average error ("<< limit <<")";
break;
case MINIMUM:
IFEM::cout << beta <<"\% of min error ("<< limit <<")";
IFEM::cout << beta <<"% of min error ("<< limit <<")";
break;
}
IFEM::cout << std::endl;