Return true if DOLFINx is compiled with petsc4py
| 38 | |
| 39 | /// Return true if DOLFINx is compiled with petsc4py |
| 40 | consteval bool has_petsc4py() |
| 41 | { |
| 42 | #ifdef HAS_PETSC4PY |
| 43 | return true; |
| 44 | #else |
| 45 | return false; |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | // Interface for dolfinx/common |
| 50 | void common(nb::module_& m) |