comparison test/SbpOperators/boundaryops/boundary_restriction_test.jl @ 1017:6abbb2c6c3e4 refactor/lazy_tensors

Remove the Lazy prefix on some types
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 21 Mar 2022 15:22:22 +0100
parents 1ba8a398af9c
children 7fc8df5157a7
comparison
equal deleted inserted replaced
1016:5c8c148c56a3 1017:6abbb2c6c3e4
28 end 28 end
29 29
30 @testset "2D" begin 30 @testset "2D" begin
31 e_w = boundary_restriction(g_2D,e_closure,CartesianBoundary{1,Upper}()) 31 e_w = boundary_restriction(g_2D,e_closure,CartesianBoundary{1,Upper}())
32 @test e_w == boundary_restriction(g_2D,stencil_set,CartesianBoundary{1,Upper}()) 32 @test e_w == boundary_restriction(g_2D,stencil_set,CartesianBoundary{1,Upper}())
33 @test e_w isa InflatedLazyTensor 33 @test e_w isa InflatedTensor
34 @test e_w isa LazyTensor{T,1,2} where T 34 @test e_w isa LazyTensor{T,1,2} where T
35 end 35 end
36 end 36 end
37 37
38 @testset "Application" begin 38 @testset "Application" begin