Skip to content
Snippets Groups Projects
Commit 15a52bd4 authored by Ian Bell's avatar Ian Bell
Browse files

Fix issue with missing get_Ar20 (oops)

parent d37ef075
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,7 @@ void add_derivatives(py::module &m, Wrapper &cls) {
cls.def("get_Ar10", &(tdx::template get_Ar10<ADBackends::autodiff>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
cls.def("get_Ar11", &(tdx::template get_Ar11<ADBackends::autodiff>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
cls.def("get_Ar12", &(tdx::template get_Ar12<ADBackends::autodiff>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
cls.def("get_Ar20", &(tdx::template get_Ar20<ADBackends::autodiff>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
cls.def("get_Ar01n", &(tdx::template get_Ar0n<1>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
cls.def("get_Ar02n", &(tdx::template get_Ar0n<2>), py::arg("T"), py::arg("rho"), py::arg("molefrac").noconvert());
......
#include <string>
const std::string TEQPVERSION = "0.8.1.dev0";
\ No newline at end of file
const std::string TEQPVERSION = "0.8.1";
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment