From: Michael Orlitzky Date: Thu, 10 Nov 2016 22:55:40 +0000 (-0500) Subject: Remove the "VERBOSE" option, since you never want to change it. X-Git-Tag: 0.1.0~50 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=5a78134ba154ef2e4855b791d1bdb45f26bfdf57 Remove the "VERBOSE" option, since you never want to change it. --- diff --git a/dunshire/games.py b/dunshire/games.py index ff3ec00..51c97ad 100644 --- a/dunshire/games.py +++ b/dunshire/games.py @@ -926,7 +926,7 @@ class SymmetricLinearGame: """ try: - opts = {'show_progress': options.VERBOSE} + opts = {'show_progress': False} soln_dict = solvers.conelp(self._c(), self._G(), self._h(), diff --git a/dunshire/options.py b/dunshire/options.py index 719d7f2..9b3ddc3 100644 --- a/dunshire/options.py +++ b/dunshire/options.py @@ -30,10 +30,3 @@ The default output format for floating point numbers. It has been chosen to match the ``ABS_TOL``, in the sense that if ``x != y``, then they would not appear different when printed. """ - - -VERBOSE = False -""" -The underlying CVXOPT solver can output debug information, and I -guess, so could we. But we don't want to because it's ugly. -"""