There is some debugging print statement left in quadrature representation

Issue #26 resolved
Jan Blechta created an issue

The code

from dolfin import *

mesh = UnitSquareMesh(3, 3)
V = FunctionSpace(mesh, 'CG', 3)
u = Function(V)

assemble(u*dx(None, {'representation': 'quadrature'}))

prints

Calling FFC just-in-time (JIT) compiler, this may take some time.
{'log_prefix': '', 'format': 'ufc', 'epsilon': 1e-14, 'no-evaluate_basis_derivatives': True, 'precision': 15, 'quadrature_degree': -1, 'cache_dir': '', 'restrict_keyword': '', 'optimize': False, 'cpp_optimize': True, 'log_level': 25, 'name': 'ffc', 'error_control': False, 'form_postfix': False, 'cpp_optimize_flags': '-O2', 'convert_exceptions_to_warnings': False, 'split': False, 'representation': 'auto', 'quadrature_rule': 'auto', 'output_dir': '.'}

Comments (2)

  1. Log in to comment