From c6f85e4a1002b8e51986897a1f10914f9394352d Mon Sep 17 00:00:00 2001 From: Joe Dean Date: Thu, 9 Jan 2025 17:55:33 +0000 Subject: [PATCH] Add FIXME --- python/demo/demo_mixed-topology.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/demo/demo_mixed-topology.py b/python/demo/demo_mixed-topology.py index fe040fd027..579ffebba9 100644 --- a/python/demo/demo_mixed-topology.py +++ b/python/demo/demo_mixed-topology.py @@ -104,6 +104,8 @@ a += [(ufl.inner(ufl.grad(u), ufl.grad(v)) - k**2 * u * v) * ufl.dx] # Compile the form +# FIXME: For the time being, since UFL doesn't understand mixed topology meshes, +# we have to call mixed_topology_form instead of form. a_form = mixed_topology_form(a) # Assemble the matrix