1
0
mirror of https://github.com/kalmarek/SmallHyperbolic synced 2024-07-27 13:05:31 +02:00

formatting

This commit is contained in:
Marek Kaluba 2022-02-13 11:38:31 +01:00
parent 7e540e8493
commit 91fb10742e
No known key found for this signature in database
GPG Key ID: 8BF1A3855328FC15
2 changed files with 51 additions and 51 deletions

View File

@ -71,7 +71,8 @@ function adjacency(ϱ, a, b; prec=256)
A = AcbMatrix(ϱ(a), prec = prec)
B = AcbMatrix(ϱ(b), prec = prec)
res = sum(A^i for i = 1:order_a-1) + sum(B^i for i = 1:order_b-1)
return Arblib.scalar_div!(res, res, k)
#return Arblib.scalar_div!(res, res, k)
return res
end
function parse_our_args()
@ -113,7 +114,8 @@ end
parsed_args = parse_our_args()
const p = let p = parsed_args["p"]
isprime(p) || @error "You need to provide a prime, ex: `julia adj_psl2_eigvals.jl -p 31`"
isprime(p) ||
@error "You need to provide a prime, ex: `julia adj_psl2_eigvals.jl -p 31`"
p
end

View File

@ -10,18 +10,16 @@ const DATA_DIR = joinpath(@__DIR__, "..", "..", "data")
function _files_with_extension(dir::AbstractString, ext::AbstractString)
return [
joinpath(dir, f) for f in readdir(dir) if
isfile(joinpath(dir, f)) && endswith(f, '.'*ext)
joinpath(dir, f) for
f in readdir(dir) if isfile(joinpath(dir, f)) && endswith(f, '.' * ext)
]
end
all_grps_presentations =
let tables = _files_with_extension(DATA_DIR, "txt")
all_grps_presentations = let tables = _files_with_extension(DATA_DIR, "txt")
mapreduce(parse_grouppresentations_abstract, union, tables) |> Dict
end
grps =
let csvs = _files_with_extension(DATA_DIR, "csv")
grps = let csvs = _files_with_extension(DATA_DIR, "csv")
trGrps = mapreduce(union, csvs) do file
m = match(r".*_(\d)_(\d)_(\d).csv", basename(file))
@ -33,7 +31,7 @@ grps =
groups = data[2:end, :]
grps = map(enumerate(eachrow(groups))) do (i, props)
nt = (; (Symbol(l) => v for (l, v) in zip(labels, props))...)
@debug i, grp_name(nt)
# @debug i, grp_name(nt)
P = all_grps_presentations[grp_name(nt)]
grp = TriangleGrp(type, P.generators, P.relations, nt)
end