-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent bdsqr_estimate from rounding t to zero (#819)
In bdsqr_estimate, the tolerance used to decide that elements of E have converged is modified by the value t, which changes as the loop traverses elements of D and E. Thanks to the order of operations used to calculate it, the updated t may be rounded down to zero in some cases, which brings the tolerance down to zero and prevents elements of E from being considered to have converged. * Prevent bdsqr_estimate from rounding t to zero * Addressed review comments * Addressed review comment
- Loading branch information
Showing
3 changed files
with
72 additions
and
42 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