Compiled UFL form without associated DOLFINx data.
| 540 | |
| 541 | @dataclass |
| 542 | class CompiledForm: |
| 543 | """Compiled UFL form without associated DOLFINx data.""" |
| 544 | |
| 545 | ufl_form: ufl.Form # The original ufl form |
| 546 | ufcx_form: typing.Any # The compiled form |
| 547 | module: typing.Any # The module |
| 548 | code: str # The source code |
| 549 | dtype: npt.DTypeLike # data type used for the `ufcx_form` |
| 550 | |
| 551 | |
| 552 | def compile_form( |