pybind11 JIT does not pass representation to FFC

Issue #167 invalid
Jan Blechta created an issue

This code unexpectedly passes

import dijitso
dijitso.set_log_level('debug')
from dolfin import *
parameters['form_compiler']['representation'] = 'FORTRAN66'
mesh = UnitSquareMesh(3, 3)
assemble(1*dx(mesh))

and investigation of the generated code shows that uflacs has been used instead of FORTRAN66.

This is a critical bug, because representation fixtures in unit tests do not work.

Comments (1)

  1. Log in to comment