Skip to content

Commit

Permalink
add more tests for changebasis_I
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Nov 11, 2023
1 parent 66d573d commit d4b8a6c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/test_ChangeBasis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@
P5 = BSplineSpace{2}(knotvector" 21 3")
P6 = BSplineSpace{3}(knotvector"212 4")
test_changebasis_I(P5, P6)

P7 = BSplineSpace{3, Int64, KnotVector{Int64}}(KnotVector([1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 6]))
P8 = BSplineSpace{3, Int64, KnotVector{Int64}}(KnotVector([1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 7, 7]))
test_changebasis_I(P7, P8)

Q7 = BSplineSpace{3, Int64, KnotVector{Int64}}(KnotVector(-[1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 6]))
Q8 = BSplineSpace{3, Int64, KnotVector{Int64}}(KnotVector(-[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 7, 7]))
test_changebasis_I(Q7, Q8)
end

@testset "changebasis_sim" begin
Expand Down

0 comments on commit d4b8a6c

Please sign in to comment.