Skip to content

Commit

Permalink
raised tolerance again
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcohen1 committed Aug 21, 2024
1 parent 7fb7b5f commit f92b825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function ≅(r1::Vector{Float64}, r2::Vector{Float64})
end

for i in eachindex(r1)
if !isapprox(r1[i], r2[i]; rtol=.001)
if !isapprox(r1[i], r2[i]; rtol=.05)
return false
end
end
Expand All @@ -36,7 +36,7 @@ function ≅(r1::ComponentArray, r2::ComponentArray)
end

for i in eachindex(r1)
if !isapprox(r1[i], r2[i]; rtol=.001)
if !isapprox(r1[i], r2[i]; rtol=.05)
return false
end
end
Expand Down

0 comments on commit f92b825

Please sign in to comment.