We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a10730c commit 0ed4f8dCopy full SHA for 0ed4f8d
test/CMakeLists.txt
@@ -43,7 +43,7 @@ if(0)
43
44
target_compile_definitions(
45
test.qp_eq.py
46
- PUBLIC INRIA_LDLT_QP_PYTHON_PATH="${CMAKE_CURRENT_BINARY_DIR}/qp_problem/")
+ PUBLIC QP_PROBLEM_PATH="${CMAKE_CURRENT_BINARY_DIR}/qp_problem/")
47
endif()
48
49
proxsuite_test(dense_ruiz_equilibration src/dense_ruiz_equilibration.cpp)
test/src/qp_eq_py.cpp
@@ -18,8 +18,7 @@ using Scalar = double;
18
DOCTEST_TEST_CASE("qp: test qp loading and solving")
19
{
20
21
- std::ifstream file(INRIA_LDLT_QP_PYTHON_PATH
22
- "source_files.txt"); // to be changed
+ std::ifstream file(QP_PROBLEM_PATH "source_files.txt"); // to be changed
23
Scalar eps_abs = Scalar(1e-9);
24
25
std::string path_len;
0 commit comments