feat(python): Python Bindings
Python Bindings are working again
This commit is contained in:
34
src/python/config/bindings.cpp
Normal file
34
src/python/config/bindings.cpp
Normal file
@@ -0,0 +1,34 @@
|
||||
#include "bindings.h"
|
||||
|
||||
#include "gridfire/config/config.h"
|
||||
#include <pybind11/pybind11.h>
|
||||
|
||||
namespace py = pybind11;
|
||||
|
||||
void register_config_bindings(pybind11::module &m) {
|
||||
py::class_<gridfire::config::CVODESolverConfig>(m, "CVODESolverConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("absTol", &gridfire::config::CVODESolverConfig::absTol)
|
||||
.def_readwrite("relTol", &gridfire::config::CVODESolverConfig::relTol);
|
||||
|
||||
py::class_<gridfire::config::SolverConfig>(m, "SolverConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("cvode", &gridfire::config::SolverConfig::cvode);
|
||||
|
||||
py::class_<gridfire::config::AdaptiveEngineViewConfig>(m, "AdaptiveEngineViewConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("relativeCullingThreshold", &gridfire::config::AdaptiveEngineViewConfig::relativeCullingThreshold);
|
||||
|
||||
py::class_<gridfire::config::EngineViewConfig>(m, "EngineViewConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("adaptiveEngineView", &gridfire::config::EngineViewConfig::adaptiveEngineView);
|
||||
|
||||
py::class_<gridfire::config::EngineConfig>(m, "EngineConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("views", &gridfire::config::EngineConfig::views);
|
||||
|
||||
py::class_<gridfire::config::GridFireConfig>(m, "GridFireConfig")
|
||||
.def(py::init<>())
|
||||
.def_readwrite("solver", &gridfire::config::GridFireConfig::solver)
|
||||
.def_readwrite("engine", &gridfire::config::GridFireConfig::engine);
|
||||
}
|
||||
Reference in New Issue
Block a user