feat(pythonInterface/network): added network interface from python module

This commit is contained in:
2025-06-17 11:11:19 -04:00
parent 7b173a0cb4
commit ee0c50defe
7 changed files with 186 additions and 2 deletions

View File

@@ -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);
}