File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ exposeSparseAlgorithms(pybind11::module_ m)
3333{
3434 sparse::python::exposeSparseModel<T, I>(m);
3535 sparse::python::exposeQpObjectSparse<T, I>(m);
36- sparse::python::exposeQpVectorSparse <T, I>(m);
36+ sparse::python::exposeQPVectorSparse <T, I>(m);
3737 sparse::python::solveSparseQp<T, I>(m);
3838}
3939
@@ -43,7 +43,7 @@ exposeDenseAlgorithms(pybind11::module_ m)
4343{
4444 dense::python::exposeDenseModel<T>(m);
4545 dense::python::exposeQpObjectDense<T>(m);
46- dense::python::exposeQpVectorDense <T>(m);
46+ dense::python::exposeQPVectorDense <T>(m);
4747 dense::python::solveDenseQp<T>(m);
4848}
4949
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace python {
1313
1414template <typename T>
1515void
16- exposeQpVectorDense (pybind11::module_ m)
16+ exposeQPVectorDense (pybind11::module_ m)
1717{
1818
1919 ::pybind11::class_<dense::BatchQP<T>>(m, " BatchQP" )
@@ -41,7 +41,7 @@ namespace python {
4141
4242template <typename T, typename I>
4343void
44- exposeQpVectorSparse (pybind11::module_ m)
44+ exposeQPVectorSparse (pybind11::module_ m)
4545{
4646
4747 ::pybind11::class_<sparse::BatchQP<T, I>>(m, " BatchQP" )
You can’t perform that action at this time.
0 commit comments