#14581: GLPK incorrectly handles zero bounds
----------------------------------+-----------------------------------------
   Reporter:  novoselt            |             Owner:  ncohen   
       Type:  defect              |            Status:  new      
   Priority:  major               |         Milestone:  sage-5.10
  Component:  linear programming  |          Keywords:           
Work issues:                      |   Report Upstream:  N/A      
  Reviewers:                      |           Authors:           
  Merged in:                      |      Dependencies:           
   Stopgaps:                      |  
----------------------------------+-----------------------------------------
 {{{
 sage: P = MixedIntegerLinearProgram()
 sage: x = P["x"]
 sage: P.set_max(x, 0)
 sage: print P.get_max(x)
 None
 }}}

 The problem is that GLPK backend has `value = False` default parameter
 with a test `value == False` later on and zero is equal to false. `None`
 has to be used instead!

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/14581>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to