feat(composition): added az_to_species binding and added bindings for fourdst exceptions

This commit is contained in:
2025-11-26 12:31:46 -05:00
parent a55a661b39
commit 250e03f00a
8 changed files with 3621 additions and 5 deletions

View File

@@ -9,6 +9,9 @@
PYBIND11_MODULE(_phys, m) {
m.doc() = "Python bindings for the fourdst utility modules which are a part of the 4D-STAR project.";
auto exceptionMod = m.def_submodule("exceptions", "Exception bindings");
register_comp_exceptions(exceptionMod);
auto atomicMod = m.def_submodule("atomic", "Species bindings");
register_species_bindings(atomicMod);