From 3e481f0e1c708bb0d2728be45719af315595ea48 Mon Sep 17 00:00:00 2001 From: Mehdi Slimani Date: Wed, 2 Oct 2024 09:33:59 +0000 Subject: [PATCH] added missing padding argument in python demo --- python/demo/demo_static-condensation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/demo/demo_static-condensation.py b/python/demo/demo_static-condensation.py index 93c7d29d690..d415c7aafed 100644 --- a/python/demo/demo_static-condensation.py +++ b/python/demo/demo_static-condensation.py @@ -183,7 +183,7 @@ def tabulate_A(A_, w_, c_, coords_, entity_local_index, permutation=ffi.NULL): A.assemble() # Create bounding box for function evaluation -bb_tree = geometry.bb_tree(msh, 2) +bb_tree = geometry.bb_tree(msh, 2, 0.0) # Check against standard table value p = np.array([[48.0, 52.0, 0.0]], dtype=np.float64)