Skip to content

Commit

Permalink
finally fix tests maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
bqpd committed Aug 14, 2020
1 parent 1778b81 commit 14f49d8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/examples/freeing_fixed_variables.py
Expand Up @@ -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"]
4 changes: 0 additions & 4 deletions 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.

0 comments on commit 14f49d8

Please sign in to comment.