Skip to content

Commit

Permalink
Rel 4.0.9 - Added results Ubuntu/Windows and MacOS (m1) as comment
Browse files Browse the repository at this point in the history
  • Loading branch information
goedman committed May 25, 2022
1 parent 82e04ad commit cf3a383
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/test_Paper_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,13 @@ println("f(t0) = ", f(t0))

@test abs(f(1.5) - realpart(f(t0))) < 5eps(1.0)
@test abs(ε₁part(f(t0))-4.053427893898621) < 5eps(1.0) && ε₁part(f(t0)) == ε₂part(f(t0))
@test abs(ε₁ε₂part(f(t0))-9.463073681596601) < 10eps(1.0)

# Ubuntu & Windows CI:
# f(t0) = 4.497780053946162 + 4.05342789389862ε₁
# + 4.05342789389862ε₂ + 9.463073681596601ε₁ε₂

# MacOS (M1 only):
# f(t0) = 4.497780053946162 + 4.05342789389862ε₁
# + 4.05342789389862ε₂ + 9.463073681596603ε₁ε₂

@test abs(ε₁ε₂part(f(t0))-9.463073681596601) < 10eps(1.0)

0 comments on commit cf3a383

Please sign in to comment.