Merge pull request #346 from atgeirr/fix-output

Fix convergence table labels (water, oil swapped).
This commit is contained in:
Atgeirr Flø Rasmussen 2015-04-08 13:35:16 +02:00
commit 2b1c9ae719

View File

@ -2068,7 +2068,7 @@ namespace detail {
{
// Only rank 0 does print to std::cout
if (iteration == 0) {
std::cout << "\nIter MB(OIL) MB(WATER) MB(GAS) CNVW CNVO CNVG WELL-FLOW WELL-CNTRL\n";
std::cout << "\nIter MB(WATER) MB(OIL) MB(GAS) CNVW CNVO CNVG WELL-FLOW WELL-CNTRL\n";
}
const std::streamsize oprec = std::cout.precision(3);
const std::ios::fmtflags oflags = std::cout.setf(std::ios::scientific);