]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Remove the "VERBOSE" option, since you never want to change it.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 10 Nov 2016 22:55:40 +0000 (17:55 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 13 Nov 2016 20:19:26 +0000 (15:19 -0500)
dunshire/games.py
dunshire/options.py

index ff3ec0001b4c3508ceef2c43afb6d13ffb7d403f..51c97add2314a9de54f8bb7d76f56ac13d6a1dd9 100644 (file)
@@ -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(),
index 719d7f2228a19e72aa52569fec4f88a9117668a7..9b3ddc37616360c5f60b964c26f8acfe393e1d26 100644 (file)
@@ -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.
-"""