Construct a ParameterDict with default options for SFC,
which can then be modified and passed to jit.
Some options may need explanation:
options.integration.representation:
"disable" | Generate empty tabulate_tensor functions, for debugging.
"symbolic" | Integrate each element tensor entry symbolically.
"truncated_symbolic" | Integrate symbolically after truncating the Taylor series.
"symbolic_quadrature" | Integrate by quadrature using symbolic expressions.
"quadrature" | (DEFAULT) Generate (partially) inlined quadrature rule.
"safe_quadrature" | Generate slow but safe quadrature code.
|