From ddbafd2e42302c857770011a5dbc8183719a58c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Richard?= Date: Mon, 11 Sep 2023 01:48:03 +0200 Subject: [PATCH] Remove mod tests for non existant function --- test/interval_tests/numeric.jl | 43 +--------------------------------- 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/test/interval_tests/numeric.jl b/test/interval_tests/numeric.jl index 0f31b16b0..21bdd6f71 100644 --- a/test/interval_tests/numeric.jl +++ b/test/interval_tests/numeric.jl @@ -397,45 +397,4 @@ end @test nthroot(interval(BigFloat, -27, 27), -3) ≛ interval(BigFloat, -Inf, Inf) @test nthroot(interval(BigFloat, -81, -16), -4) ≛ ∅ @test nthroot(interval(BigFloat, -81, -16), 1) ≛ interval(BigFloat, -81, -16) -end - -# approximation used for testing (not to rely on ≈ for intervals) -# ⪆(x, y) = (x ≈ y) && (x ⊇ y) -⪆(x::Interval, y::Interval) = x.lo ≈ y.lo && x.hi ≈ y.hi && x ⊇ y - -@testset "`mod`" begin - r = 0.0625 - x = r..(1+r) - @test mod(x, 1) == mod(x, 1.0) == 0..1 - @test mod(x, 2) == mod(x, 2.0) ⪆ x - @test mod(x, 2.5) ⪆ x - @test mod(x, 0.5) == 0..0.5 - @test mod(x, -1) == mod(x, -1.0) == -1..0 - @test mod(x, -2) == mod(x, -2.0) ⪆ -2+x - @test mod(x, -2.5) ⪆ -2.5+x - @test mod(x, -0.5) == -0.5..0 - - x = (-1+r) .. -r - @test mod(x, 1) == mod(x, 1.0) ⪆ 1+x - @test mod(x, 2) == mod(x, 2.0) ⪆ 2+x - @test mod(x, 2.5) ⪆ 2.5+x - @test mod(x, 0.5) == 0..0.5 - @test mod(x, -1) == mod(x, -1.0) ⪆ x - @test mod(x, -2) == mod(x, -2.0) ⪆ x - @test mod(x, -2.5) ⪆ x - @test mod(x, -0.5) == -0.5..0 - - x = -r .. 1-r - @test mod(x, 1) == mod(x, 1.0) == 0..1 - @test mod(x, 2) == mod(x, 2.0) == 0..2 - @test mod(x, 2.5) == 0..2.5 - @test mod(x, 0.5) == 0..0.5 - @test mod(x, -1) == mod(x, -1.0) == -1..0 - @test mod(x, -2) == mod(x, -2.0) == -2..0 - @test mod(x, -2.5) == -2.5..0 - @test mod(x, -0.5) == -0.5..0 - - # TODO - implement mod for two intervals - @test_throws ArgumentError mod(1..2, 1.4..1.5) - @test_throws ArgumentError mod(1.0, 1.4..1.5) -end +end \ No newline at end of file