diff --git a/src/python/config/bindings.cpp b/src/python/config/bindings.cpp index 0b88ead5..b98c3651 100644 --- a/src/python/config/bindings.cpp +++ b/src/python/config/bindings.cpp @@ -6,14 +6,14 @@ namespace py = pybind11; void register_config_bindings(pybind11::module &m) { - py::class_(m, "CVODESolverConfig") + py::class_(m, "PointSolverConfig") .def(py::init<>()) - .def_readwrite("absTol", &gridfire::config::CVODESolverConfig::absTol) - .def_readwrite("relTol", &gridfire::config::CVODESolverConfig::relTol); + .def_readwrite("absTol", &gridfire::config::PointSolverConfig::absTol) + .def_readwrite("relTol", &gridfire::config::PointSolverConfig::relTol); py::class_(m, "SolverConfig") .def(py::init<>()) - .def_readwrite("cvode", &gridfire::config::SolverConfig::cvode); + .def_readwrite("pointSolver", &gridfire::config::SolverConfig::pointSolver); py::class_(m, "AdaptiveEngineViewConfig") .def(py::init<>())