Skip to content

Commit

Permalink
fixed subsequent M,N vary quad bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGibbs committed Mar 5, 2024
1 parent e919c61 commit 2881ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Galerkin_quadrature.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function get_quad_scales(k::Real, spat_dim::Int64,
M = length(mesh1)
F_upper = ones(Float16,M,N)
# F_lower = ones(Float16,N,N)
F_lower = zeros(Float16,N,N)
F_lower = zeros(Float16,M,N)

for m = 1:M
Γₘ = mesh1[m]
Expand Down

0 comments on commit 2881ca4

Please sign in to comment.