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
From #109 (comment): it should be possible to speed up calculating the gaspari cohn function by getting rid of the exponents:
-1 - 5 / 3 * r_s ** 2 + 5 / 8 * r_s ** 3 + 1 / 2 * r_s ** 4 - 1 / 4 * r_s ** 5 +1 - (5 / 3 + (5 / 8 + (1 / 2 - 1 / 4 * r_s) * r_s) * r_s) * r_s**2
admittedly a micro optimisation and making it more difficult to read but about 10 times faster (double check) because exponentiation is expensive.
See also #158
The text was updated successfully, but these errors were encountered:
Removing from the milestone again. This remains a not-critical good first issue.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
From #109 (comment): it should be possible to speed up calculating the gaspari cohn function by getting rid of the exponents:
admittedly a micro optimisation and making it more difficult to read but about 10 times faster (double check) because exponentiation is expensive.
See also #158
The text was updated successfully, but these errors were encountered: