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

add --precision to argument list

This commit is contained in:
kalmarek 2020-11-14 20:38:34 +01:00
parent 89c8009083
commit 2effd731bc
No known key found for this signature in database
GPG Key ID: 8BF1A3855328FC15

View File

@ -87,6 +87,10 @@ function parse_our_args()
help = "generator b (optional)"
"--ab"
help = "array of generators a and b (optional)"
"--precision"
help = "set the precision of computations"
arg_type = Int
default = 128
end
result = parse_args(s)
@ -113,11 +117,14 @@ const p = let p = parsed_args["p"]
p
end
const LOGFILE = "SL(2,$p)_eigvals_$(now()).log"
const PRECISION = parsed_args["precision"]
const LOGFILE = joinpath("log", "SL(2,$p)_eigvals_$(now()).log")
open(joinpath("log", LOGFILE), "w") do io
open(LOGFILE, "w") do io
@info "Logging into $LOGFILE"
with_logger(SimpleLogger(io)) do
@info "Arguments:" args=parsed_args
a,b = SL2p_gens(p)
a = SL₂{p}(get(parsed_args, "a", a))