From 5a78134ba154ef2e4855b791d1bdb45f26bfdf57 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 10 Nov 2016 17:55:40 -0500 Subject: [PATCH] Remove the "VERBOSE" option, since you never want to change it. --- dunshire/games.py | 2 +- dunshire/options.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) 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. -""" -- 2.43.2