mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-30 13:03:49 -06:00
BUGFIX
Wrong placement of parentes
This commit is contained in:
parent
70dc519539
commit
480f5337b6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user