#13646: Bug in p.add_constraint (when input is True/False)
-----------------------------------------------+----------------------------
Reporter: ncohen | Owner: ncohen
Type: defect | Status: needs_review
Priority: major | Milestone: sage-5.5
Component: linear programming | Resolution:
Keywords: | Work issues:
Report Upstream: N/A | Reviewers:
Authors: Nathann Cohen, Volker Braun | Merged in:
Dependencies: #12533 | Stopgaps:
-----------------------------------------------+----------------------------
Comment (by vbraun):
I've also removed the deep copy, now naive addition is only about 2x
slower than using sum:
{{{
sage: P = MixedIntegerLinearProgram()
sage: x = P.new_variable(binary=True)
sage: %prun for i in [0..290]: c = sum(x[j]*(j-i) for j in [0..290])
99278 function calls in 1.681 seconds
sage: %prun for i in [0..290]: c = P.sum(x[j]*(j-i) for j in [0..290])
98405 function calls in 0.928 seconds
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13646#comment:17>
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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.