Skip to content

Commit

Permalink
Reduced memory in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Nov 8, 2024
1 parent 10a469a commit 2477b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/AdaptivityTests/MacroFEStokesTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function main(Dc,reftype)
p_sol(x) = x[1] - 1.0/2.0

domain = (Dc == 2) ? (0,1,0,1) : (0,1,0,1,0,1)
nc = (Dc == 2) ? (2,2) : (1,1,1)
nc = (Dc == 2) ? (1,1) : (1,1,1)
model = simplexify(CartesianDiscreteModel(domain,nc))

poly = (Dc == 2) ? TRI : TET
Expand Down Expand Up @@ -65,7 +65,7 @@ end

main(2,:barycentric)
#main(2,:powellsabin)
main(3,:barycentric)
#main(3,:barycentric)
#main(3,:powellsabin)

end # module

0 comments on commit 2477b6c

Please sign in to comment.