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
On master:
In [1]: %time Poly(E**100000000) Wall time: 22 s Out[1]: Poly(E**100000000, E, domain='ZZ') In [1]: %time Poly(E**1000000000) Takes too much time
Therefore, Poly(E**100000000) is slow to create.
Poly(E**100000000)
The text was updated successfully, but these errors were encountered:
That essentially creates a list of length 100000000, and that alone takes much time.
In [19]: %time l = [0]*100000000 CPU times: user 1.43 s, sys: 472 ms, total: 1.9 s Wall time: 10.5 s
Sorry, something went wrong.
Mention fixed issue
19b1c5b
Closes sympy/sympy#19670
No branches or pull requests
On master:
Therefore,
Poly(E**100000000)
is slow to create.The text was updated successfully, but these errors were encountered: