feat(pythonInterface/network): added network interface from python module
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
#include "eos/bindings.h"
|
||||
#include "mfem/bindings.h"
|
||||
#include "polytrope/bindings.h"
|
||||
#include "network/bindings.h"
|
||||
|
||||
PYBIND11_MODULE(serif, m) {
|
||||
m.doc() = "Python bindings for the SERiF project";
|
||||
@@ -29,4 +30,7 @@ PYBIND11_MODULE(serif, m) {
|
||||
|
||||
auto polytropeMod = m.def_submodule("polytrope", "Polytrope-module bindings");
|
||||
register_polytrope_bindings(polytropeMod);
|
||||
|
||||
auto networkMod = m.def_submodule("network", "Network-module bindings");
|
||||
register_network_bindings(networkMod);
|
||||
}
|
||||
Reference in New Issue
Block a user