You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We define const TOL(N::Type{Rational{INNER}}) where {INNER} = zero(N). During iterative refinement, we compare two vectors with norm(p1-p2, 2) < TOL(N). This will always result in false. However, we want to terminate in the case p1 == p2.
The text was updated successfully, but these errors were encountered:
We define
const TOL(N::Type{Rational{INNER}}) where {INNER} = zero(N)
. During iterative refinement, we compare two vectors withnorm(p1-p2, 2) < TOL(N)
. This will always result infalse
. However, we want to terminate in the casep1 == p2
.The text was updated successfully, but these errors were encountered: