We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As reported here; running the following in a loop leads to memory growth.
def get_polytope(): q = MixedIntegerLinearProgram(maximization=False, solver='Coin') w = q.new_variable(real=True, nonnegative=True) q.add_constraint(w[0]==0) def fill_memory(n): for i in xrange(n): P = get_polytope() sage: get_memory_usage() 288.58984375 sage: fill_memory(2000); get_memory_usage() 300.5859375 sage: fill_memory(2000); get_memory_usage() 302.5859375 sage: fill_memory(2000); get_memory_usage() 303.5859375 sage: fill_memory(2000); get_memory_usage() 305.5859375
This appears to be coin-specific.
coin
CC: @mkoeppe
Component: linear programming
Issue created by migration from https://trac.sagemath.org/ticket/21825
The text was updated successfully, but these errors were encountered:
Importing the description from #21826. A little bit simplified version of code causing the leak.
Sorry, something went wrong.
This will be solved by:
sage_numerical_backends_coin
cvxpy
cylp
cbc
No branches or pull requests
As reported here; running the following in a loop leads to memory growth.
This appears to be
coin
-specific.CC: @mkoeppe
Component: linear programming
Issue created by migration from https://trac.sagemath.org/ticket/21825
The text was updated successfully, but these errors were encountered: