cosmetics

This commit is contained in:
kalmar 2017-03-31 16:12:00 +02:00
parent f487c4635c
commit 5c36eccc7b
1 changed files with 2 additions and 1 deletions

View File

@ -169,9 +169,10 @@ function check_property_T(name::String, generating_set::Function,
spectral_gap = check_distance_to_positive_cone(Δ, κ, A, tol=tol, rational=false)
if spectral_gap > 0
Kazhdan_κ = sqrt(2*spectral_gap/S)
Kazhdan_κ = Float64(trunc(Kazhdan_κ,12))
Kazhdan_κ = Float64(trunc(Kazhdan_κ, 12))
info(logger, "κ($name, S) ≥ $Kazhdan_κ: Group HAS property (T)!")
else
spectral_gap = Float64(trunc(spectral_gap, 12))
info(logger, "λ($name, S) ≥ $spectral_gap: Group may NOT HAVE property (T)!")
end
else