Skip to content

Commit 1f0c2a2

Browse files
author
Matthias Koeppe
committed
src/sage/numerical/backends/generic_backend.pyx: Restore lost # tol
1 parent 3e2b9ce commit 1f0c2a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/numerical/backends/generic_backend.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ cdef class GenericBackend:
141141
Check that arguments are used::
142142
143143
sage: # optional - nonexistent_lp_solver
144-
sage: p.col_bounds(5)
144+
sage: p.col_bounds(5) # tol 1e-8
145145
(-2.0, None)
146146
sage: p.is_variable_integer(5)
147147
True
148148
sage: p.col_name(5)
149149
'a'
150-
sage: p.objective_coefficient(5)
150+
sage: p.objective_coefficient(5) # tol 1e-8
151151
42.0
152152
"""
153153
cdef int i

0 commit comments

Comments
 (0)