The following code quickly consumes all available memory on the machine: sage: P = MixedIntegerLinearProgram(solver="Coin")
sage: P.add_constraint(P[0]+P[1]==1) sage: while True: ....: P = copy(P) ....: w = solve(P) A ticket has been opened, #12004. If the solver is GLPK, however, this issue does not arise. -- 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-support URL: http://www.sagemath.org
