From 509d9c537c90f7c6d23bcd9f5256f1c2521d82bb Mon Sep 17 00:00:00 2001 From: Luis Benet Date: Wed, 13 Dec 2023 07:26:08 -0600 Subject: [PATCH] Bump IA to v0.22 and fix a test --- Project.toml | 2 +- test/intervals.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 24b3803f..3d2daa71 100644 --- a/Project.toml +++ b/Project.toml @@ -11,7 +11,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] Aqua = "0.8" -IntervalArithmetic = "0.15, 0.16, 0.17, 0.18, 0.19, 0.20" +IntervalArithmetic = "0.22" LinearAlgebra = "<0.0.1, 1" Markdown = "<0.0.1, 1" Requires = "0.5.2, 1" diff --git a/test/intervals.jl b/test/intervals.jl index 34ea9949..72ab3ebe 100644 --- a/test/intervals.jl +++ b/test/intervals.jl @@ -48,7 +48,7 @@ eeuler = Base.MathConstants.e @test isequal_interval(evaluate(p4(x,y), [a, -b]), p4(a, -b)) @test isequal_interval((p5(x,y))([a, b]), p5(a, b)) @test issubset_interval((a-b)^4, ((x-y)^4)([a, b])) - @test isequal_interval((((x-y)^4)[4])([a, b]), interval(-39, 81)) + @test isequal_interval((((x-y)^4)[4])([a, b]), interval(-64, 81)) p4n = normalize_taylor(p4(x,y), [a, b], true) @test issubset_interval(interval(0, 16), p4n([b, b]))