Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayka committed Feb 27, 2021
1 parent e0f3e21 commit ac1035f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cvxpy/problems/problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,9 @@ def _solve(self,
s.LOGGER.info(f'Problem status: {self.status}')
s.LOGGER.info(f'Optimal value: {self.value:.3e}')
s.LOGGER.info(f'Compilation took {self._compilation_time:.3e} seconds')
s.LOGGER.info(f'Solver took {self._solve_time:.3e} seconds')
s.LOGGER.info(
f'Solver (including time spent in interface) took '
f'{self._solve_time:.3e} seconds')
return self.value

def backward(self):
Expand Down

0 comments on commit ac1035f

Please sign in to comment.