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

Commit

Permalink
GenericBackend, CPLEXBackend: Remove test for nonexisting method get_…
Browse files Browse the repository at this point in the history
…best_objective_value
  • Loading branch information
Matthias Koeppe committed May 24, 2016
1 parent 66193fe commit 03da03f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/sage/numerical/backends/cplex_backend.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1024,8 +1024,6 @@ cdef class CPLEXBackend(GenericBackend):
sage: pb = p.get_backend() # optional - CPLEX
sage: pb.get_objective_value() # optional - CPLEX
2.0
sage: pb.get_best_objective_value() # optional - CPLEX
2.0
sage: pb.get_relative_objective_gap() # optional - CPLEX
0.0
"""
Expand Down
2 changes: 0 additions & 2 deletions src/sage/numerical/backends/generic_backend.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,6 @@ cdef class GenericBackend:
sage: pb = p.get_backend() # optional - Nonexistent_LP_solver
sage: pb.get_objective_value() # optional - Nonexistent_LP_solver
2.0
sage: pb.get_best_objective_value() # optional - Nonexistent_LP_solver
2.0
sage: pb.get_relative_objective_gap() # optional - Nonexistent_LP_solver
0.0
"""
Expand Down

0 comments on commit 03da03f

Please sign in to comment.