-
-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #20051: Singularity analysis: fix and speed up singularity analy…
…sis (log-type) without renormalization #20020 introduced `asymptotic_expansions._SingularityAnalysis_non_normalized_`. For `zeta != 1`, its results are incorrect due to substitution: {{{ sage: asymptotic_expansions._SingularityAnalysis_non_normalized_( ....: 'n', 1/2, alpha=0, beta=1, precision=3) 1/2*2^n*n^(-1) + O(2^n*n^(-2)) }}} instead of the correct `2^n * n^(-1) + O(2^n * n^(-2))`. Furthermore, its performance is poor as it relies on substitution. Speed up is possible by introducing a flag to `asymptotic_expansions.SingularityAnalysis` to ignore the normalization factor. See #17601 for the asymptotic expansions meta ticket. URL: http://trac.sagemath.org/20051 Reported by: cheuberg Ticket author(s): Clemens Heuberger Reviewer(s): Benjamin Hackl
- Loading branch information
Showing
3 changed files
with
112 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters