Wrong placement of parentes
This commit is contained in:
Tor Harald Sandve
2018-01-02 14:28:06 +01:00
committed by Andreas Lauser
parent eb25a7bf5e
commit 3c7d481c8c
+1 -1
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