Skip to content

Commit 25ccdb4

Browse files
committed
rect tests pass
1 parent 96b40cd commit 25ccdb4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/MultivariateOrthogonalPolynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using ClassicalOrthogonalPolynomials, FastTransforms, BlockBandedMatrices, Block
66
LazyArrays, SpecialFunctions, LinearAlgebra, BandedMatrices, LazyBandedMatrices, ArrayLayouts,
77
HarmonicOrthogonalPolynomials, RecurrenceRelationships
88

9-
import Base: axes, in, ==, +, -, /, *, ^, \, copy, copyto!, OneTo, getindex, size, oneto, all, resize!, BroadcastStyle, similar, fill!, setindex!, convert, show, summary
9+
import Base: axes, in, ==, +, -, /, *, ^, \, copy, copyto!, OneTo, getindex, size, oneto, all, resize!, BroadcastStyle, similar, fill!, setindex!, convert, show, summary, diff
1010
import Base.Broadcast: Broadcasted, broadcasted, DefaultArrayStyle
1111
import DomainSets: boundary, EuclideanDomain
1212

test/test_rect.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ using Base: oneto
103103

104104
@testset "strong form" begin
105105
𝐱 = axes(W²,1)
106-
D_x,D_y = Derivative(𝐱,(1,0)),Derivative{2}(𝐱,(0,1))
107-
Δ =\(D_x^2 + D_y^2)*
106+
D_x,D_y = Derivative(𝐱,(1,0)),Derivative(𝐱,(0,1))
107+
Δ =\((D_x^2 + D_y^2)*)
108108

109109
K = Block.(1:200); @time L = Δ[K,K]; @time qr(L);
110-
\(qr(Δ), [1; zeros(∞)]; tolerance=1E-1)
110+
@time \(qr(Δ), [1; zeros(∞)]; tolerance=1E-1)
111111
end
112112

113113
@testset "weakform" begin

0 commit comments

Comments
 (0)