1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-08-08 07:53:52 +02:00

no need to limit precision in rationalise_and_project

since we project directly to intervals the computational load is negligible
This commit is contained in:
kalmarek 2017-08-27 19:09:17 +02:00
parent 7fd18e9e57
commit 757f89e54b

View File

@ -148,8 +148,7 @@ function check_distance_to_positive_cone(Δ::GroupRingElem, λ, Q, wlen;
end
info(logger, "")
info(logger, "Projecting columns of the rationalized Q to the augmentation ideal...")
Q_ω_int = rationalize_and_project(Q, max(tol, 1e-12), logger)
Q_ω_int = rationalize_and_project(Q, tol, logger)
λ_ = (λ, tol)
Δ_ = (Δ, tol)