File: Pybind11Exporter.cpp

package info (click to toggle)
opm-simulators 2024.10%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 19,416 kB
  • sloc: cpp: 165,337; sh: 1,285; lisp: 1,108; python: 355; makefile: 24; awk: 10
file content (11 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#include <pybind11/pybind11.h>
#include <opm/simulators/flow/python/Pybind11Exporter.hpp>

void Opm::Pybind::export_all(py::module& m) {
    export_PyBlackOilSimulator(m);
}

PYBIND11_MODULE(simulators, m)
{
    Opm::Pybind::export_all(m);
}