Skip to content

Commit

Permalink
Test for bivariate points (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Sep 21, 2023
1 parent aa301f9 commit eb50cb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ApproxFunOrthogonalPolynomialsPolynomialsExt = "Polynomials"
ApproxFunOrthogonalPolynomialsStaticExt = "Static"

[compat]
ApproxFunBase = "0.8.58, 0.9.15"
ApproxFunBase = "0.8.60, 0.9.16"
ApproxFunBaseTest = "0.1"
Aqua = "0.7"
BandedMatrices = "0.16, 0.17"
Expand Down
6 changes: 6 additions & 0 deletions test/MultivariateTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ include("testutils.jl")
end
end

@testset "points" begin
S = Chebyshev(1..2) Chebyshev(3..4)
@test all(p domain(factor(S, 1)) for p in points(S, 10, 10)[1])
@test all(p domain(factor(S, 2)) for p in points(S, 10, 10)[2])
end

@testset "Evaluation" begin

@testset "2D" begin
Expand Down

0 comments on commit eb50cb4

Please sign in to comment.