File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -380,8 +380,14 @@ import ApproxFunOrthogonalPolynomials: jacobip
380
380
381
381
@testset " Multiplication" begin
382
382
xJ = Fun (NormalizedJacobi (1 ,1 ))
383
- @test (Multiplication (Fun ()) * xJ)(0.4 ) ≈ (0.4 )^ 2
384
- @test (Multiplication (Fun (NormalizedChebyshev ())) * xJ)(0.4 ) ≈ (0.4 )^ 2
383
+ xC = Fun ()
384
+ xNC = Fun (NormalizedChebyshev ())
385
+ @test (Multiplication (xC) * xJ)(0.4 ) ≈ (0.4 )^ 2
386
+ @test (Multiplication (xNC) * xJ)(0.4 ) ≈ (0.4 )^ 2
387
+ @test ApproxFunBase. isbanded (Multiplication (xC, NormalizedLegendre ()))
388
+ @test ApproxFunBase. isbanded (Multiplication (xNC, NormalizedLegendre ()))
389
+ @test ApproxFunBase. isbanded (Multiplication (xC, NormalizedJacobi (1 ,1 )))
390
+ @test ApproxFunBase. isbanded (Multiplication (xNC, NormalizedJacobi (1 ,1 )))
385
391
end
386
392
end
387
393
You can’t perform that action at this time.
0 commit comments