Skip to content

Commit

Permalink
fix CI to match new default Quad/Hex quadrature
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Aug 3, 2024
1 parent 3b4f5cc commit ffe3af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reference_elem_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
@test abs(sum(rd.wf)) 8
@test abs(sum(rd.wf .* rd.nrJ)) + abs(sum(rd.wf .* rd.nsJ)) < tol
@test rd.Pq * rd.Vq I
Vfp = vandermonde(Line(), N, quad_nodes(Line(), N+1)[1]) / vandermonde(Line(), N, nodes(Line(), N))
rstf = (x->Vfp * x[reshape(rd.Fmask,:,rd.Nfaces)]).(rd.rst)
Vfp = vandermonde(Line(), N, quad_nodes(Line(), N)[1]) / vandermonde(Line(), N, nodes(Line(), N))
rstf = (x->Vfp * x[reshape(rd.Fmask, :, rd.Nfaces)]).(rd.rst)
@test all(vec.(rstf) .≈ rd.rstf)

@test StartUpDG.eigenvalue_inverse_trace_constant(rd) inverse_trace_constant(rd)
Expand Down

0 comments on commit ffe3af6

Please sign in to comment.