From 81609e9cee1aa8d7162977fbd6a795a0486882fd Mon Sep 17 00:00:00 2001 From: juliohm <3345261+juliohm@users.noreply.github.com> Date: Sun, 28 Jul 2024 18:53:20 +0000 Subject: [PATCH 1/2] :robot: Format .jl files --- src/tolerances.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tolerances.jl b/src/tolerances.jl index b5aa60b24..8a0fe68cf 100644 --- a/src/tolerances.jl +++ b/src/tolerances.jl @@ -3,7 +3,7 @@ # ------------------------------------------------------------------ const ATOL64 = ScopedValue(1e-10) -const ATOL32 = ScopedValue(1f-5) +const ATOL32 = ScopedValue(1.0f-5) """ atol(T) From 896b60bbfc70c3374f491b3e4cf2addcebbbb8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Hoffimann?= Date: Sun, 28 Jul 2024 17:26:17 -0300 Subject: [PATCH 2/2] Update src/tolerances.jl Co-authored-by: Joshua Lampert <51029046+JoshuaLampert@users.noreply.github.com> --- src/tolerances.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tolerances.jl b/src/tolerances.jl index 8a0fe68cf..3ba29034c 100644 --- a/src/tolerances.jl +++ b/src/tolerances.jl @@ -2,7 +2,7 @@ # Licensed under the MIT License. See LICENSE in the project root. # ------------------------------------------------------------------ -const ATOL64 = ScopedValue(1e-10) +const ATOL64 = ScopedValue(1.0e-10) const ATOL32 = ScopedValue(1.0f-5) """