Package sfc :: Package common :: Module options
[hide private]
[frames] | no frames]

Module options

source code

This module contains default options for SFC.

Functions [hide private]
 
default_parameters()
Construct a ParameterDict with default options for SFC, which can then be modified and passed to jit.
source code
Function Details [hide private]

default_parameters()

source code 
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.