Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 18a0218

Browse files
committed
commiting current progress
1 parent f9ef5c3 commit 18a0218

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/2D_3D_fast_multiplication.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ end
13651365

13661366
end
13671367

1368-
@testset "irregular x grid and regular y and z gris (dy = 0.25, dz = 0.05)" begin
1368+
@testset "irregular x grid and regular y and z grids (dy = 0.25, dz = 0.05)" begin
13691369

13701370
N = 100
13711371
dy = 0.25
@@ -1489,7 +1489,7 @@ end
14891489
@test M_temp ((Lx2*M)[1:N,2:N+1,:]+(Lx3*M)[1:N,2:N+1,:]+(Lx4*M)[1:N,2:N+1,:]+(Ly2*M)[2:N+1,1:N,:]+(Ly3*M)[2:N+1,1:N,:]+(Ly4*M)[2:N+1,1:N,:])
14901490

14911491
# Test that composition of both y and z operators works
1492-
A = Ly2 + Lz2 + Ly3 + Lz3 + Lz4 + Ly4
1492+
A = Ly2 +Ly3 + Ly4 + Lz2 + Lz3 + Lz4
14931493
M_temp = zeros(N+2,N,N)
14941494
mul!(M_temp, A, M)
14951495
# Need to figure out why this test is exploding

0 commit comments

Comments
 (0)