Changes between Initial Version and Version 6 of Ticket #10232
- Timestamp:
- 03/30/16 21:08:43 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10232
-
Property
Dependencies
changed from
to
#19525
-
Property
Milestone
changed from
sage-5.11
tosage-7.2
-
Property
Dependencies
changed from
-
Ticket #10232 – Description
initial v6 1 1 This should never happen: 2 2 3 {{{ 4 #!python 3 {{{#!python 5 4 sage: from sage.numerical.backends.generic_backend import get_solver 6 5 sage: p = get_solver(solver = "GLPK") 7 sage: p.ncols()8 09 6 sage: p.add_variable() 10 7 1 11 sage: p.variable_max(0) 12 13 sage: p.variable_max(1) 14 glp_get_col_ub: j = 2; column number out of range 15 Error detected in file glpapi02.c at line 350 16 /home/malb/Sage/sage-current/local/bin/sage-sage: line 220: 23183 Aborted sage-ipython "$@" -i 8 sage: p.variable_upper_bound(1) 9 sig_error() without sig_on() 10 ... 11 ------------------------------------------------------------------------ 12 Unhandled SIGABRT: An abort() occurred. 13 This probably occurred because a *compiled* module has a bug 14 in it and is not properly wrapped with sig_on(), sig_off(). 15 Python will now terminate. 16 ------------------------------------------------------------------------ 17 Aborted 17 18 }}}