Hailiang Liu
Hailiang Liu
We noticed the same problem can be compiled much faster on 1.1.7 than the latest 1.1.18, with the same solving time via CPLEX 12.10. On 1.1.18, it takes more than...
In hydro.py, line 103 `nhours = (distances * (flowspeed * 3.6) + 0.5).astype(int)` should be `nhours = ((distances * 1000) / (flowspeed * 3600) + 0.5).astype(int)` or `nhours = (distances...
## Description adds a solver-only verbose switch as kwarg. the old behaviour is kept if the user does not provide `solver_verbose` as a kwarg. Issue link (if applicable): https://github.com/cvxpy/cvxpy/issues/2353 ##...
is it possible to set verbose=False for cvxpy only, and verbose=True for the solvers? I am using cplex as my solver and it seems the switch should be added to...
We are running a program flow that solves three different large mip or lp problems in a row. Subsequent problems' parameters or constants are dependant on the results of the...