2022-05-02 11:43:04 -05:00
|
|
|
# Instead of having the pybind11 extension module, e.g.
|
|
|
|
# simulators.cpython-310-x86_64-linux-gnu.so located
|
2022-06-07 01:29:33 -05:00
|
|
|
# directly in the opm directory, we create a package (sub
|
2022-05-02 11:43:04 -05:00
|
|
|
# directory) with the same name and place it there.
|
|
|
|
# In this way we can do (if needed in the future)
|
|
|
|
#
|
|
|
|
# from opm.simulators import BlackOilSimulator, FoamSimulator, PurePythonUtils, ...
|
|
|
|
#
|
|
|
|
# where FoamSimulator and PurePythonUtils does not currently exists,
|
|
|
|
# but could be possible future extensions..
|
|
|
|
#
|
|
|
|
from .simulators import BlackOilSimulator
|