xref: /petsc/src/binding/petsc4py/src/petsc4py/PETSc/typing.pxi (revision 0c5727118538cc82ab6050202f4496ec4e39cf67)
1cdef Any
2cdef Self
3cdef Union
4cdef Literal
5cdef Optional
6cdef NoReturn
7
8cdef Callable
9cdef Hashable
10cdef Iterable
11cdef Iterator
12cdef Sequence
13cdef Mapping
14
15cdef PathLike
16
17cdef Scalar
18cdef ArrayBool
19cdef ArrayInt
20cdef ArrayReal
21cdef ArrayComplex
22cdef ArrayScalar
23
24cdef DimsSpec
25cdef AccessModeSpec
26cdef InsertModeSpec
27cdef ScatterModeSpec
28cdef LayoutSizeSpec
29cdef NormTypeSpec
30
31# --- PetscObject ---
32
33cdef PetscOptionsHandlerFunction
34
35# --- Mat ---
36
37cdef MatAssemblySpec
38cdef MatSizeSpec
39cdef MatBlockSizeSpec
40cdef CSRIndicesSpec
41cdef CSRSpec
42cdef NNZSpec
43
44# --- MatNullSpace ---
45
46cdef MatNullFunction
47
48# --- DM ---
49
50cdef DMCoarsenHookFunction
51cdef DMRestrictHookFunction
52
53# --- KSP ---
54
55cdef KSPRHSFunction
56cdef KSPOperatorsFunction
57cdef KSPConvergenceTestFunction
58cdef KSPMonitorFunction
59cdef KSPPreSolveFunction
60cdef KSPPostSolveFunction
61
62# --- TS ---
63
64cdef TSRHSFunction
65cdef TSRHSJacobian
66cdef TSRHSJacobianP
67cdef TSIFunction
68cdef TSIJacobian
69cdef TSIJacobianP
70cdef TSI2Function
71cdef TSI2Jacobian
72cdef TSMonitorFunction
73cdef TSIndicatorFunction
74cdef TSPostEventFunction
75cdef TSPreStepFunction
76cdef TSPostStepFunction
77
78# --- SNES ---
79
80cdef SNESMonitorFunction
81cdef SNESObjFunction
82cdef SNESFunction
83cdef SNESJacobianFunction
84cdef SNESGuessFunction
85cdef SNESUpdateFunction
86cdef SNESLSPreFunction
87cdef SNESNGSFunction
88cdef SNESConvergedFunction
89
90# --- TAO ---
91
92cdef TAOObjectiveFunction
93cdef TAOGradientFunction
94cdef TAOObjectiveGradientFunction
95cdef TAOHessianFunction
96cdef TAOUpdateFunction
97cdef TAOMonitorFunction
98cdef TAOConvergedFunction
99cdef TAOJacobianFunction
100cdef TAOResidualFunction
101cdef TAOJacobianResidualFunction
102cdef TAOVariableBoundsFunction
103cdef TAOConstraintsFunction
104cdef TAOLSObjectiveFunction
105cdef TAOLSGradientFunction
106cdef TAOLSObjectiveGradientFunction
107
108# --- MPI ---
109
110cdef Intracomm
111cdef Datatype
112cdef Op
113