Markus Blatt
Markus Blatt
jenkins build this please
Not 100% sure we really need this. I faintly recall that I/someone might have fixed this another way
> deck = parser.parse_file( data_file ) Seems like this should be ` .... parser.parse(data_file)` (judging from our [tests.](/OPM/opm-common/tree/master/python/tests) ). There might be a mistake in the documentation then. Sorry, and...
jenkins build this please
Mmh, this has been hanging for some time and we might want to get this into the release mabye. @hakonhagland would that make sense and do you think you can...
One could try to determine endianess at runtime and act accordingly. ```C++ inline bool is_system_little_endian() { const int v { 0x01 }; const void * addr = static_cast(&v); const unsigned...
> The unformatted output files are supposed to be big endian (network byte order) But that is perfect and helps fixing. OPM should just use methods available for conversion to/from...
Seems to do job, see this test: ```C++ #include #include int main() { int i = 32; int j = __builtin_bswap32(i); std::cout
Seems like these huge difference also occured in previous releases. At that time we did not do the checks with boost (before #3535) but just printed error messages and still...
These tabulation tests are run twice. once with float and once double. The differences are only there with float.