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 aa254cc commit 83e8a53Copy full SHA for 83e8a53
test/src/dense_qp_solve.py
@@ -376,7 +376,10 @@ def test_solve_qpsolvers_problem(self):
376
)
377
file_path = os.path.dirname(os.path.realpath(__file__))
378
data_path = os.path.join(file_path, "..", "data")
379
- m = spio.loadmat(os.path.join(data_path, "simple_qp_with_inifinity_lower_bound.mat"), squeeze_me=True)
+ m = spio.loadmat(
380
+ os.path.join(data_path, "simple_qp_with_inifinity_lower_bound.mat"),
381
+ squeeze_me=True,
382
+ )
383
P = m["P"].astype(float)
384
q = m["q"].astype(float)
385
A = m["A"].astype(float).reshape((1, 3))
0 commit comments