Skip to content

Commit

Permalink
IntervalArithmetic v0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Aug 24, 2023
1 parent 6097859 commit 3db69ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
IntervalArithmetic = "0.20"
IntervalArithmetic = "0.20 - 0.21"
MultivariatePolynomials = "0.4 - 0.5"
RecursiveArrayTools = "2"
Reexport = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ end

@testset "Univariate monomial, rational" begin
# exported function
@test univariate(x^3, 3, Interval(1 // 1, 2 // 1)) == [1 // 1, 2 // 1, 4 // 1, 8 // 1]
@test univariate(x, 5, Interval(0 // 1, 1 // 1)) ==
@test univariate(x^3, 3, interval(1 // 1, 2 // 1)) == [1 // 1, 2 // 1, 4 // 1, 8 // 1]
@test univariate(x, 5, interval(0 // 1, 1 // 1)) ==
[0 // 1, 1 // 5, 2 // 5, 3 // 5, 4 // 5, 1 // 1]

# internals
Expand Down

0 comments on commit 3db69ee

Please sign in to comment.