From 151588cdc71f8fb5f05544e0d8962e64523d11a1 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Thu, 3 Nov 2022 20:19:41 -0400 Subject: [PATCH] Last remaining factory function changes --- interface/pybind11_wrapper.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/interface/pybind11_wrapper.cpp b/interface/pybind11_wrapper.cpp index 5b467c3..e2805b9 100644 --- a/interface/pybind11_wrapper.cpp +++ b/interface/pybind11_wrapper.cpp @@ -321,10 +321,8 @@ void init_teqp(py::module& m) { // .def("find_VLLE_T_binary", &am::find_VLLE_T_binary, "traces"_a, py::arg_v("options", std::nullopt, "None")); ; - m.def("make_model", &teqp::cppinterface::make_model); - m.def("make_vdW1", &teqp::cppinterface::make_vdW1); - m.def("make_canonical_PR", &teqp::cppinterface::make_canonical_PR); - m.def("make_canonical_SRK", &teqp::cppinterface::make_canonical_SRK); + + m.def("_make_model", &teqp::cppinterface::make_model); m.def("attach_model_specific_methods", &attach_model_specific_methods); // // Some functions for timing overhead of interface -- GitLab