Hailiang Liu
Hailiang Liu
I just attached the Problem saved with shelve that can be sent to `.solve()` directly, in the original post.
```python import shelve with shelve.open('Problem.prob') as ps: # unzip first and all three files are needed prob_shelve = ps['Problem'] prob_shelve.solve(solver=cp.CPLEX, verbose=True) ```
> Hey Hailiang, can you provide some more justification for why solver_verbose is needed? I think of the CVXPY verbosity as not very long or impactful on runtime. Indeed the...