Zohar Malamant
Zohar Malamant
Our ResInsight's `rips` is compiled for Python 3.6. If a virtual environment is created for a different version of Python (in our case 3.8), then the `python` executable will point...
_see commit descriptions_
```py state_map = StateMap() len(state_map) #=> 0 state_map[10] = RealizationStateEnum.STATE_HAS_DATA len(state_map) #=> 11 ```
It is a hassle to install libecl manually just to build ERT's C tests. This commit changes it so that we the user only needs to be in a virtualenv...
`GEN_DATA` is usually loaded from text files, but the code allows float or double arrays. We don't think this is actually used, and if it isn't we can remove a...
Resolves #3485 This should generate the following image alongside a lot of faff in English about how the ERT Storage data model works. Do note that when I said it...
I feel this is a decent candidate for my new strategy which I'm coining as "strangulation sandwich", where you strangle stuff from both sides. It is very violent.
We should use Boost.Stacktrace or a similar library instead of our homegrown stack trace solution used by `util_abort__`. ```c++ #include #include #include void handle_terminate() { static std::atomic_flag in_terminate; using boost::core::scoped_demangled_name;...