mirror of
https://github.com/OPM/opm-upscaling.git
synced 2026-08-26 21:17:11 -05:00
convert users of the ASSERT and the ASSERT2 macros to standard assert()
This commit is contained in:
@@ -83,11 +83,11 @@ namespace Opm{
|
||||
double dpcow[4];
|
||||
props_.capPress(1, &s[0], &c, pcow, dpcow);
|
||||
pcap = pcow[0];
|
||||
ASSERT(pcow[1] == 0.0);
|
||||
assert(pcow[1] == 0.0);
|
||||
dpcap = dpcow[0];
|
||||
ASSERT(dpcow[1] == 0.0);
|
||||
ASSERT(dpcow[2] == 0.0);
|
||||
ASSERT(dpcow[3] == 0.0);
|
||||
assert(dpcow[1] == 0.0);
|
||||
assert(dpcow[2] == 0.0);
|
||||
assert(dpcow[3] == 0.0);
|
||||
}
|
||||
|
||||
inline double SimpleFluid2pWrappingProps::s_min(int c) const
|
||||
|
||||
Reference in New Issue
Block a user