Wrong placement of parentes
This commit is contained in:
Tor Harald Sandve 2014-08-11 12:45:52 +02:00 committed by Andreas Lauser
parent 70dc519539
commit 480f5337b6

View File

@ -871,7 +871,7 @@ namespace Opm
const PcEq f(props, phase, cell, 0);
const double f0 = f(sminarr[phase]);
const double f1 = f(smaxarr[phase]);
return std::abs(f0 - f1 < std::numeric_limits<double>::epsilon());
return std::abs(f0 - f1) < std::numeric_limits<double>::epsilon();
}
} // namespace Equil