Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Use interactive_linear_program instead of interactive_lp_problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe authored and uduse committed Jun 24, 2016
1 parent 835a228 commit 925499e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/numerical/backends/glpk_backend_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def basic_variables(self):
Use function in :class:`InteractiveLPProblem`:
sage: lp, basis = p.interactive_linear_program()
sage: lp, basis = p.interactive_lp_problem()
sage: lpd = lp.dictionary(*basis)
Compare results:
Expand Down Expand Up @@ -335,7 +335,7 @@ def nonbasic_variables(self):
Use function in :class:`InteractiveLPProblem`:
sage: lp, basis = p.interactive_linear_program()
sage: lp, basis = p.interactive_lp_problem()
sage: lpd = lp.dictionary(*basis)
Compare results:
Expand Down Expand Up @@ -390,7 +390,7 @@ def objective_coefficients(self):
Use function in :class:`InteractiveLPProblem`:
sage: lp, basis = p.interactive_linear_program()
sage: lp, basis = p.interactive_lp_problem()
sage: lpd = lp.dictionary(*basis)
Compare results:
Expand Down

0 comments on commit 925499e

Please sign in to comment.