Irrelevant warning in quadrature representation

Issue #44 resolved
Jan Blechta created an issue

Message Missing element number, likely because vector elements are not yet supported in custom integrals. is issued for many quadrature forms without custom integral. MWE:

from dolfin import *
mesh = UnitIntervalMesh(1)
V = FunctionSpace(mesh, 'CG', 1)
u = TrialFunction(V)
v = TestFunction(V)
a = u*v*dx
assemble(a, form_compiler_parameters={'representation': 'quadrature'})

Comments (2)

  1. Log in to comment