Skip to content

Commit

Permalink
don't list the abstract matrix interface in solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Oct 27, 2023
1 parent 25101f5 commit 189822d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cobra/util/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
solvers = {
match.split("_interface")[0]: getattr(optlang, match)
for match in dir(optlang)
if "_interface" in match
if "_interface" in match and match != "matrix_interface"
}

# Defines all the QP solvers implemented in optlang.
Expand Down

0 comments on commit 189822d

Please sign in to comment.