Skip to content

Commit

Permalink
fixed ex36p, reporing a wrong total DoFs
Browse files Browse the repository at this point in the history
  • Loading branch information
sshiraiwa committed Jan 8, 2024
1 parent e2edffe commit c7a70cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ex36p.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def exp_psi(ptx, val):
print("Outer iterations: " + str(k+1))
print(" Total iterations: " + str(total_iterations))
print(" Total dofs: " +
str(H1fes.GetTrueVSize() + L2fes.GetTrueVSize()))
str(H1fes.GlobalTrueVSize() + L2fes.GlobalTrueVSize()))

# 11. Exact solution.
if visualization:
Expand Down

0 comments on commit c7a70cf

Please sign in to comment.