Skip to content

Commit 392cdee

Browse files
committed
core: fix method name
1 parent 9b94c36 commit 392cdee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bindings/python/src/expose-all.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

bindings/python/src/expose-qpvector.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace python {
1313

1414
template<typename T>
1515
void
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

4242
template<typename T, typename I>
4343
void
44-
exposeQpVectorSparse(pybind11::module_ m)
44+
exposeQPVectorSparse(pybind11::module_ m)
4545
{
4646

4747
::pybind11::class_<sparse::BatchQP<T, I>>(m, "BatchQP")

0 commit comments

Comments
 (0)