From 14f49d83630f0b750d044ddc38069d9860708f28 Mon Sep 17 00:00:00 2001 From: Edward Burnell Date: Thu, 13 Aug 2020 23:23:11 -0800 Subject: [PATCH] finally fix tests maybe --- docs/source/examples/freeing_fixed_variables.py | 2 +- docs/source/examples/freeing_fixed_variables_output.txt | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/source/examples/freeing_fixed_variables.py b/docs/source/examples/freeing_fixed_variables.py index 43944bec9..e864c6cb7 100644 --- a/docs/source/examples/freeing_fixed_variables.py +++ b/docs/source/examples/freeing_fixed_variables.py @@ -10,6 +10,6 @@ assert y in sol["constants"] del m.substitutions["y"] -sol = m.solve() # optimal cost is 2; y appears in Free Variables +sol = m.solve(verbosity=0) # optimal cost is 2; y appears in Free Variables assert abs(sol["cost"] - 2) <= 1e-4 assert y in sol["freevariables"] diff --git a/docs/source/examples/freeing_fixed_variables_output.txt b/docs/source/examples/freeing_fixed_variables_output.txt index 8f55ded2c..e69de29bb 100644 --- a/docs/source/examples/freeing_fixed_variables_output.txt +++ b/docs/source/examples/freeing_fixed_variables_output.txt @@ -1,4 +0,0 @@ -Using solver 'cvxopt' - for 2 free variables - in 3 posynomial inequalities. -Solving took 0.00612 seconds.