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
This is super slow:
>>> from pyca import * >>> a = 417/(962*pi+80808) >>> a**50 - a**51 * a**-1
Of course, it works well when increasing POW_LIMIT so that the powers get expanded algebraically:
>>> ctx = ca_ctx(pow_limit=100) >>> a = ca(pi, context=ctx) >>> a = 417 / (962 * ca(pi, context=ctx) + 80808) >>> a**50 - a**51 * a**-1
But this shouldn't be necessary to get acceptable performance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is super slow:
Of course, it works well when increasing POW_LIMIT so that the powers get expanded algebraically:
But this shouldn't be necessary to get acceptable performance.
The text was updated successfully, but these errors were encountered: