Skip to content
Snippets Groups Projects
Commit ba7a3cda authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[bugfix] use integer division for quadrature order

parent 8445b535
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ def quadrature_points_per_direction():
q = 2
# Quadrature points in per direction
nb_qp = q / 2 + 1
nb_qp = q // 2 + 1
return nb_qp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment