Skip to content

Commit a435357

Browse files
committed
try to fix missed stuff from master merge
1 parent 4487894 commit a435357

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

cvxpy/problems/problem.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
from cvxpy.reductions import InverseData
3939
from cvxpy.reductions.chain import Chain
4040
from cvxpy.reductions.cvx_attr2constr import CvxAttr2Constr
41-
from cvxpy.reductions.dgp2dcp.dgp2dcp import Dgp2Dcp
4241
from cvxpy.reductions.dnlp2smooth.dnlp2smooth import Dnlp2Smooth
4342
from cvxpy.reductions.dqcp2dcp import dqcp2dcp
4443
from cvxpy.reductions.eval_params import EvalParams

cvxpy/reductions/solvers/solving_chain.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,9 @@ def _solve_as_qp(problem, candidates, ignore_dpp: bool = False):
107107
return candidates['qp_solvers'] and problem.is_qp()
108108

109109

110-
def _reductions_for_problem_class(
111-
problem,
112-
candidates,
113-
gp: bool = False,
114-
solver_opts=None,
115-
) -> list[Reduction]:
110+
def _reductions_for_problem_class(problem, candidates, gp: bool = False,
111+
ignore_dpp: bool = False, solver_opts=None) \
112+
-> list[Reduction]:
116113
"""
117114
Builds a chain that rewrites a problem into an intermediate
118115
representation suitable for numeric reductions.

0 commit comments

Comments
 (0)