xref: /petsc/include/petscpctypes.h (revision ee6acaa353f2656706f0bfcc37240d260df813b4)
1b0753f9dSMatthew G. Knepley #if !defined(_PETSCPCTYPES_H)
2b0753f9dSMatthew G. Knepley #define _PETSCPCTYPES_H
3b0753f9dSMatthew G. Knepley 
4b0753f9dSMatthew G. Knepley #include <petscdmtypes.h>
5b0753f9dSMatthew G. Knepley 
6b0753f9dSMatthew G. Knepley /*S
7b0753f9dSMatthew G. Knepley      PC - Abstract PETSc object that manages all preconditioners including direct solvers such as PCLU
8b0753f9dSMatthew G. Knepley 
9b0753f9dSMatthew G. Knepley    Level: beginner
10b0753f9dSMatthew G. Knepley 
11b0753f9dSMatthew G. Knepley   Concepts: preconditioners
12b0753f9dSMatthew G. Knepley 
13b0753f9dSMatthew G. Knepley .seealso:  PCCreate(), PCSetType(), PCType (for list of available types)
14b0753f9dSMatthew G. Knepley S*/
15b0753f9dSMatthew G. Knepley typedef struct _p_PC* PC;
16b0753f9dSMatthew G. Knepley 
17b0753f9dSMatthew G. Knepley /*J
18b0753f9dSMatthew G. Knepley     PCType - String with the name of a PETSc preconditioner method.
19b0753f9dSMatthew G. Knepley 
20b0753f9dSMatthew G. Knepley    Level: beginner
21b0753f9dSMatthew G. Knepley 
2295452b02SPatrick Sanan    Notes:
2395452b02SPatrick Sanan     Click on the links above to see details on a particular solver
24b0753f9dSMatthew G. Knepley 
25b0753f9dSMatthew G. Knepley           PCRegister() is used to register preconditioners that are then accessible via PCSetType()
26b0753f9dSMatthew G. Knepley 
27b0753f9dSMatthew G. Knepley .seealso: PCSetType(), PC, PCCreate(), PCRegister(), PCSetFromOptions()
28b0753f9dSMatthew G. Knepley J*/
29b0753f9dSMatthew G. Knepley typedef const char* PCType;
30b0753f9dSMatthew G. Knepley #define PCNONE            "none"
31b0753f9dSMatthew G. Knepley #define PCJACOBI          "jacobi"
32b0753f9dSMatthew G. Knepley #define PCSOR             "sor"
33b0753f9dSMatthew G. Knepley #define PCLU              "lu"
34b0753f9dSMatthew G. Knepley #define PCSHELL           "shell"
35b0753f9dSMatthew G. Knepley #define PCBJACOBI         "bjacobi"
36b0753f9dSMatthew G. Knepley #define PCMG              "mg"
37b0753f9dSMatthew G. Knepley #define PCEISENSTAT       "eisenstat"
38b0753f9dSMatthew G. Knepley #define PCILU             "ilu"
39b0753f9dSMatthew G. Knepley #define PCICC             "icc"
40b0753f9dSMatthew G. Knepley #define PCASM             "asm"
41b0753f9dSMatthew G. Knepley #define PCGASM            "gasm"
42b0753f9dSMatthew G. Knepley #define PCKSP             "ksp"
43b0753f9dSMatthew G. Knepley #define PCCOMPOSITE       "composite"
44b0753f9dSMatthew G. Knepley #define PCREDUNDANT       "redundant"
45b0753f9dSMatthew G. Knepley #define PCSPAI            "spai"
46b0753f9dSMatthew G. Knepley #define PCNN              "nn"
47b0753f9dSMatthew G. Knepley #define PCCHOLESKY        "cholesky"
48b0753f9dSMatthew G. Knepley #define PCPBJACOBI        "pbjacobi"
49b0753f9dSMatthew G. Knepley #define PCMAT             "mat"
50b0753f9dSMatthew G. Knepley #define PCHYPRE           "hypre"
51b0753f9dSMatthew G. Knepley #define PCPARMS           "parms"
52b0753f9dSMatthew G. Knepley #define PCFIELDSPLIT      "fieldsplit"
53b0753f9dSMatthew G. Knepley #define PCTFS             "tfs"
54b0753f9dSMatthew G. Knepley #define PCML              "ml"
55b0753f9dSMatthew G. Knepley #define PCGALERKIN        "galerkin"
56b0753f9dSMatthew G. Knepley #define PCEXOTIC          "exotic"
57b0753f9dSMatthew G. Knepley #define PCCP              "cp"
58b0753f9dSMatthew G. Knepley #define PCBFBT            "bfbt"
59b0753f9dSMatthew G. Knepley #define PCLSC             "lsc"
60b0753f9dSMatthew G. Knepley #define PCPYTHON          "python"
61b0753f9dSMatthew G. Knepley #define PCPFMG            "pfmg"
62b0753f9dSMatthew G. Knepley #define PCSYSPFMG         "syspfmg"
63b0753f9dSMatthew G. Knepley #define PCREDISTRIBUTE    "redistribute"
64b0753f9dSMatthew G. Knepley #define PCSVD             "svd"
65b0753f9dSMatthew G. Knepley #define PCGAMG            "gamg"
664b3f184cSKarl Rupp #define PCCHOWILUVIENNACL "chowiluviennacl"
6770baa948SKarl Rupp #define PCROWSCALINGVIENNACL "rowscalingviennacl"
6807598726SKarl Rupp #define PCSAVIENNACL      "saviennacl"
69b0753f9dSMatthew G. Knepley #define PCBDDC            "bddc"
70b0753f9dSMatthew G. Knepley #define PCKACZMARZ        "kaczmarz"
7168ddcbeaSBarry Smith #define PCTELESCOPE       "telescope"
724bbf5ea8SMatthew G. Knepley #define PCPATCH           "patch"
73b0753f9dSMatthew G. Knepley 
74b0753f9dSMatthew G. Knepley /*E
75b0753f9dSMatthew G. Knepley     PCSide - If the preconditioner is to be applied to the left, right
76b0753f9dSMatthew G. Knepley      or symmetrically around the operator.
77b0753f9dSMatthew G. Knepley 
78b0753f9dSMatthew G. Knepley    Level: beginner
79b0753f9dSMatthew G. Knepley 
80b0753f9dSMatthew G. Knepley .seealso:
81b0753f9dSMatthew G. Knepley E*/
82b0753f9dSMatthew G. Knepley typedef enum { PC_SIDE_DEFAULT=-1,PC_LEFT,PC_RIGHT,PC_SYMMETRIC} PCSide;
83b0753f9dSMatthew G. Knepley #define PC_SIDE_MAX (PC_SYMMETRIC + 1)
84b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const *const PCSides;
85b0753f9dSMatthew G. Knepley 
86b0753f9dSMatthew G. Knepley /*E
87b0753f9dSMatthew G. Knepley     PCRichardsonConvergedReason - reason a PCApplyRichardson method terminates
88b0753f9dSMatthew G. Knepley 
89b0753f9dSMatthew G. Knepley    Level: advanced
90b0753f9dSMatthew G. Knepley 
9195452b02SPatrick Sanan    Notes:
9295452b02SPatrick Sanan     this must match petsc/finclude/petscpc.h and the KSPConvergedReason values in petscksp.h
93b0753f9dSMatthew G. Knepley 
94b0753f9dSMatthew G. Knepley .seealso: PCApplyRichardson()
95b0753f9dSMatthew G. Knepley E*/
96b0753f9dSMatthew G. Knepley typedef enum {
97b0753f9dSMatthew G. Knepley               PCRICHARDSON_CONVERGED_RTOL               =  2,
98b0753f9dSMatthew G. Knepley               PCRICHARDSON_CONVERGED_ATOL               =  3,
99b0753f9dSMatthew G. Knepley               PCRICHARDSON_CONVERGED_ITS                =  4,
100b0753f9dSMatthew G. Knepley               PCRICHARDSON_DIVERGED_DTOL                = -4} PCRichardsonConvergedReason;
101b0753f9dSMatthew G. Knepley 
102b0753f9dSMatthew G. Knepley /*E
103b0753f9dSMatthew G. Knepley     PCJacobiType - What elements are used to form the Jacobi preconditioner
104b0753f9dSMatthew G. Knepley 
105b0753f9dSMatthew G. Knepley    Level: intermediate
106b0753f9dSMatthew G. Knepley 
107b0753f9dSMatthew G. Knepley .seealso:
108b0753f9dSMatthew G. Knepley E*/
109b0753f9dSMatthew G. Knepley typedef enum { PC_JACOBI_DIAGONAL,PC_JACOBI_ROWMAX,PC_JACOBI_ROWSUM} PCJacobiType;
110b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCJacobiTypes[];
111b0753f9dSMatthew G. Knepley 
112b0753f9dSMatthew G. Knepley /*E
113b0753f9dSMatthew G. Knepley     PCASMType - Type of additive Schwarz method to use
114b0753f9dSMatthew G. Knepley 
115b0753f9dSMatthew G. Knepley $  PC_ASM_BASIC        - Symmetric version where residuals from the ghost points are used
116b0753f9dSMatthew G. Knepley $                        and computed values in ghost regions are added together.
117b0753f9dSMatthew G. Knepley $                        Classical standard additive Schwarz.
118b0753f9dSMatthew G. Knepley $  PC_ASM_RESTRICT     - Residuals from ghost points are used but computed values in ghost
119b0753f9dSMatthew G. Knepley $                        region are discarded.
120b0753f9dSMatthew G. Knepley $                        Default.
121b0753f9dSMatthew G. Knepley $  PC_ASM_INTERPOLATE  - Residuals from ghost points are not used, computed values in ghost
122b0753f9dSMatthew G. Knepley $                        region are added back in.
123b0753f9dSMatthew G. Knepley $  PC_ASM_NONE         - Residuals from ghost points are not used, computed ghost values are
124b0753f9dSMatthew G. Knepley $                        discarded.
125b0753f9dSMatthew G. Knepley $                        Not very good.
126b0753f9dSMatthew G. Knepley 
127b0753f9dSMatthew G. Knepley    Level: beginner
128b0753f9dSMatthew G. Knepley 
129b0753f9dSMatthew G. Knepley .seealso: PCASMSetType()
130b0753f9dSMatthew G. Knepley E*/
131b0753f9dSMatthew G. Knepley typedef enum {PC_ASM_BASIC = 3,PC_ASM_RESTRICT = 1,PC_ASM_INTERPOLATE = 2,PC_ASM_NONE = 0} PCASMType;
132b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCASMTypes[];
133b0753f9dSMatthew G. Knepley 
134b0753f9dSMatthew G. Knepley /*E
135b0753f9dSMatthew G. Knepley     PCGASMType - Type of generalized additive Schwarz method to use (differs from ASM in allowing multiple processors per subdomain).
136b0753f9dSMatthew G. Knepley 
137b0753f9dSMatthew G. Knepley    Each subdomain has nested inner and outer parts.  The inner subdomains are assumed to form a non-overlapping covering of the computational
138b0753f9dSMatthew G. Knepley    domain, while the outer subdomains contain the inner subdomains and overlap with each other.  This preconditioner will compute
139b0753f9dSMatthew G. Knepley    a subdomain correction over each *outer* subdomain from a residual computed there, but its different variants will differ in
140b0753f9dSMatthew G. Knepley    (a) how the outer subdomain residual is computed, and (b) how the outer subdomain correction is computed.
141b0753f9dSMatthew G. Knepley 
142b0753f9dSMatthew G. Knepley $  PC_GASM_BASIC       - Symmetric version where the full from the outer subdomain is used, and the resulting correction is applied
143b0753f9dSMatthew G. Knepley $                        over the outer subdomains.  As a result, points in the overlap will receive the sum of the corrections
144b0753f9dSMatthew G. Knepley $                        from neighboring subdomains.
145b0753f9dSMatthew G. Knepley $                        Classical standard additive Schwarz.
146b0753f9dSMatthew G. Knepley $  PC_GASM_RESTRICT    - Residual from the outer subdomain is used but the correction is restricted to the inner subdomain only
147b0753f9dSMatthew G. Knepley $                        (i.e., zeroed out over the overlap portion of the outer subdomain before being applied).  As a result,
148b0753f9dSMatthew G. Knepley $                        each point will receive a correction only from the unique inner subdomain containing it (nonoverlapping covering
149b0753f9dSMatthew G. Knepley $                        assumption).
150b0753f9dSMatthew G. Knepley $                        Default.
151b0753f9dSMatthew G. Knepley $  PC_GASM_INTERPOLATE - Residual is zeroed out over the overlap portion of the outer subdomain, but the resulting correction is
152b0753f9dSMatthew G. Knepley $                        applied over the outer subdomain. As a result, points in the overlap will receive the sum of the corrections
153b0753f9dSMatthew G. Knepley $                        from neighboring subdomains.
154b0753f9dSMatthew G. Knepley $
155b0753f9dSMatthew G. Knepley $  PC_GASM_NONE        - Residuals and corrections are zeroed out outside the local subdomains.
156b0753f9dSMatthew G. Knepley $                        Not very good.
157b0753f9dSMatthew G. Knepley 
158b0753f9dSMatthew G. Knepley    Level: beginner
159b0753f9dSMatthew G. Knepley 
160b0753f9dSMatthew G. Knepley .seealso: PCGASMSetType()
161b0753f9dSMatthew G. Knepley E*/
162b0753f9dSMatthew G. Knepley typedef enum {PC_GASM_BASIC = 3,PC_GASM_RESTRICT = 1,PC_GASM_INTERPOLATE = 2,PC_GASM_NONE = 0} PCGASMType;
163b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCGASMTypes[];
164b0753f9dSMatthew G. Knepley 
165b0753f9dSMatthew G. Knepley /*E
166b0753f9dSMatthew G. Knepley     PCCompositeType - Determines how two or more preconditioner are composed
167b0753f9dSMatthew G. Knepley 
168b0753f9dSMatthew G. Knepley $  PC_COMPOSITE_ADDITIVE - results from application of all preconditioners are added together
169b0753f9dSMatthew G. Knepley $  PC_COMPOSITE_MULTIPLICATIVE - preconditioners are applied sequentially to the residual freshly
170b0753f9dSMatthew G. Knepley $                                computed after the previous preconditioner application
171b0753f9dSMatthew G. Knepley $  PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE - preconditioners are applied sequentially to the residual freshly
172d0ecd4dfSBarry Smith $                                computed from first preconditioner to last and then back (Use only for symmetric matrices and preconditioners)
173b0753f9dSMatthew G. Knepley $  PC_COMPOSITE_SPECIAL - This is very special for a matrix of the form alpha I + R + S
174b0753f9dSMatthew G. Knepley $                         where first preconditioner is built from alpha I + S and second from
175b0753f9dSMatthew G. Knepley $                         alpha I + R
176b0753f9dSMatthew G. Knepley 
177b0753f9dSMatthew G. Knepley    Level: beginner
178b0753f9dSMatthew G. Knepley 
179b0753f9dSMatthew G. Knepley .seealso: PCCompositeSetType()
180b0753f9dSMatthew G. Knepley E*/
181b0753f9dSMatthew G. Knepley typedef enum {PC_COMPOSITE_ADDITIVE,PC_COMPOSITE_MULTIPLICATIVE,PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE,PC_COMPOSITE_SPECIAL,PC_COMPOSITE_SCHUR} PCCompositeType;
182b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCCompositeTypes[];
183b0753f9dSMatthew G. Knepley 
184b0753f9dSMatthew G. Knepley /*E
185b0753f9dSMatthew G. Knepley     PCFieldSplitSchurPreType - Determines how to precondition Schur complement
186b0753f9dSMatthew G. Knepley 
187b0753f9dSMatthew G. Knepley     Level: intermediate
188b0753f9dSMatthew G. Knepley 
189b0753f9dSMatthew G. Knepley .seealso: PCFieldSplitSetSchurPre()
190b0753f9dSMatthew G. Knepley E*/
191b0753f9dSMatthew G. Knepley typedef enum {PC_FIELDSPLIT_SCHUR_PRE_SELF,PC_FIELDSPLIT_SCHUR_PRE_SELFP,PC_FIELDSPLIT_SCHUR_PRE_A11,PC_FIELDSPLIT_SCHUR_PRE_USER,PC_FIELDSPLIT_SCHUR_PRE_FULL} PCFieldSplitSchurPreType;
192b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCFieldSplitSchurPreTypes[];
193b0753f9dSMatthew G. Knepley 
194b0753f9dSMatthew G. Knepley /*E
195b0753f9dSMatthew G. Knepley     PCFieldSplitSchurFactType - determines which off-diagonal parts of the approximate block factorization to use
196b0753f9dSMatthew G. Knepley 
197b0753f9dSMatthew G. Knepley     Level: intermediate
198b0753f9dSMatthew G. Knepley 
199b0753f9dSMatthew G. Knepley .seealso: PCFieldSplitSetSchurFactType()
200b0753f9dSMatthew G. Knepley E*/
201b0753f9dSMatthew G. Knepley typedef enum {
202b0753f9dSMatthew G. Knepley   PC_FIELDSPLIT_SCHUR_FACT_DIAG,
203b0753f9dSMatthew G. Knepley   PC_FIELDSPLIT_SCHUR_FACT_LOWER,
204b0753f9dSMatthew G. Knepley   PC_FIELDSPLIT_SCHUR_FACT_UPPER,
205b0753f9dSMatthew G. Knepley   PC_FIELDSPLIT_SCHUR_FACT_FULL
206b0753f9dSMatthew G. Knepley } PCFieldSplitSchurFactType;
207b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCFieldSplitSchurFactTypes[];
208b0753f9dSMatthew G. Knepley 
209b0753f9dSMatthew G. Knepley /*E
210b0753f9dSMatthew G. Knepley     PCPARMSGlobalType - Determines the global preconditioner method in PARMS
211b0753f9dSMatthew G. Knepley 
212b0753f9dSMatthew G. Knepley     Level: intermediate
213b0753f9dSMatthew G. Knepley 
214b0753f9dSMatthew G. Knepley .seealso: PCPARMSSetGlobal()
215b0753f9dSMatthew G. Knepley E*/
216b0753f9dSMatthew G. Knepley typedef enum {PC_PARMS_GLOBAL_RAS,PC_PARMS_GLOBAL_SCHUR,PC_PARMS_GLOBAL_BJ} PCPARMSGlobalType;
217b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCPARMSGlobalTypes[];
218b0753f9dSMatthew G. Knepley /*E
219b0753f9dSMatthew G. Knepley     PCPARMSLocalType - Determines the local preconditioner method in PARMS
220b0753f9dSMatthew G. Knepley 
221b0753f9dSMatthew G. Knepley     Level: intermediate
222b0753f9dSMatthew G. Knepley 
223b0753f9dSMatthew G. Knepley .seealso: PCPARMSSetLocal()
224b0753f9dSMatthew G. Knepley E*/
225b0753f9dSMatthew G. Knepley typedef enum {PC_PARMS_LOCAL_ILU0,PC_PARMS_LOCAL_ILUK,PC_PARMS_LOCAL_ILUT,PC_PARMS_LOCAL_ARMS} PCPARMSLocalType;
226b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCPARMSLocalTypes[];
227b0753f9dSMatthew G. Knepley 
228b0753f9dSMatthew G. Knepley /*E
229b0753f9dSMatthew G. Knepley     PCGAMGType - type of generalized algebraic multigrid (PCGAMG) method
230b0753f9dSMatthew G. Knepley 
231b0753f9dSMatthew G. Knepley     Level: intermediate
232b0753f9dSMatthew G. Knepley 
233b0753f9dSMatthew G. Knepley .seealso: PCMG, PCSetType(), PCGAMGSetThreshold(), PCGAMGSetThreshold(), PCGAMGSetReuseInterpolation()
234b0753f9dSMatthew G. Knepley E*/
235b0753f9dSMatthew G. Knepley typedef const char *PCGAMGType;
236b0753f9dSMatthew G. Knepley #define PCGAMGAGG         "agg"
237b0753f9dSMatthew G. Knepley #define PCGAMGGEO         "geo"
238b0753f9dSMatthew G. Knepley #define PCGAMGCLASSICAL   "classical"
239b0753f9dSMatthew G. Knepley 
240b0753f9dSMatthew G. Knepley typedef const char *PCGAMGClassicalType;
241b0753f9dSMatthew G. Knepley #define PCGAMGCLASSICALDIRECT   "direct"
242b0753f9dSMatthew G. Knepley #define PCGAMGCLASSICALSTANDARD "standard"
243b0753f9dSMatthew G. Knepley 
244b0753f9dSMatthew G. Knepley /*E
245b0753f9dSMatthew G. Knepley     PCMGType - Determines the type of multigrid method that is run.
246b0753f9dSMatthew G. Knepley 
247b0753f9dSMatthew G. Knepley    Level: beginner
248b0753f9dSMatthew G. Knepley 
249b0753f9dSMatthew G. Knepley    Values:
250c1cbb1deSBarry Smith +  PC_MG_MULTIPLICATIVE (default) - traditional V or W cycle as determined by PCMGSetCycleType()
251b0753f9dSMatthew G. Knepley .  PC_MG_ADDITIVE - the additive multigrid preconditioner where all levels are
252b0753f9dSMatthew G. Knepley                 smoothed before updating the residual. This only uses the
253b0753f9dSMatthew G. Knepley                 down smoother, in the preconditioner the upper smoother is ignored
254b0753f9dSMatthew G. Knepley .  PC_MG_FULL - same as multiplicative except one also performs grid sequencing,
255b0753f9dSMatthew G. Knepley             that is starts on the coarsest grid, performs a cycle, interpolates
256b0753f9dSMatthew G. Knepley             to the next, performs a cycle etc. This is much like the F-cycle presented in "Multigrid" by Trottenberg, Oosterlee, Schuller page 49, but that
257b0753f9dSMatthew G. Knepley             algorithm supports smoothing on before the restriction on each level in the initial restriction to the coarsest stage. In addition that algorithm
258b0753f9dSMatthew G. Knepley             calls the V-cycle only on the coarser level and has a post-smoother instead.
259b0753f9dSMatthew G. Knepley -  PC_MG_KASKADE - like full multigrid except one never goes back to a coarser level
260b0753f9dSMatthew G. Knepley                from a finer
261b0753f9dSMatthew G. Knepley 
262c1cbb1deSBarry Smith .seealso: PCMGSetType(), PCMGSetCycleType(), PCMGSetCycleTypeOnLevel()
263b0753f9dSMatthew G. Knepley 
264b0753f9dSMatthew G. Knepley E*/
265b0753f9dSMatthew G. Knepley typedef enum { PC_MG_MULTIPLICATIVE,PC_MG_ADDITIVE,PC_MG_FULL,PC_MG_KASKADE } PCMGType;
266b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCMGTypes[];
267b0753f9dSMatthew G. Knepley #define PC_MG_CASCADE PC_MG_KASKADE;
268b0753f9dSMatthew G. Knepley 
269b0753f9dSMatthew G. Knepley /*E
270b0753f9dSMatthew G. Knepley     PCMGCycleType - Use V-cycle or W-cycle
271b0753f9dSMatthew G. Knepley 
272b0753f9dSMatthew G. Knepley    Level: beginner
273b0753f9dSMatthew G. Knepley 
274b0753f9dSMatthew G. Knepley    Values:
275b0753f9dSMatthew G. Knepley +  PC_MG_V_CYCLE
276b0753f9dSMatthew G. Knepley -  PC_MG_W_CYCLE
277b0753f9dSMatthew G. Knepley 
278b0753f9dSMatthew G. Knepley .seealso: PCMGSetCycleType()
279b0753f9dSMatthew G. Knepley 
280b0753f9dSMatthew G. Knepley E*/
281b0753f9dSMatthew G. Knepley typedef enum { PC_MG_CYCLE_V = 1,PC_MG_CYCLE_W = 2 } PCMGCycleType;
282b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCMGCycleTypes[];
283b0753f9dSMatthew G. Knepley 
284b0753f9dSMatthew G. Knepley /*E
2852134b1e4SBarry Smith     PCMGalerkinType - Determines if the coarse grid operators are computed via the Galerkin process
2862134b1e4SBarry Smith 
2872134b1e4SBarry Smith    Level: beginner
2882134b1e4SBarry Smith 
2892134b1e4SBarry Smith    Values:
2902134b1e4SBarry Smith +  PC_MG_GALERKIN_PMAT - computes the pmat (matrix from which the preconditioner is built) via the Galerkin process from the finest grid
2912134b1e4SBarry Smith .  PC_MG_GALERKIN_MAT -  computes the mat (matrix used to apply the operator) via the Galerkin process from the finest grid
2922134b1e4SBarry Smith .  PC_MG_GALERKIN_BOTH - computes both the mat and pmat via the Galerkin process (if pmat == mat the construction is only done once
2932134b1e4SBarry Smith -  PC_MG_GALERKIN_NONE - neither operator is computed via the Galerkin process, the user must provide the operator
2942134b1e4SBarry Smith 
2952134b1e4SBarry Smith    Users should never set PC_MG_GALERKIN_EXTERNAL, it is used by GAMG and ML
2962134b1e4SBarry Smith 
2972134b1e4SBarry Smith .seealso: PCMGSetCycleType()
2982134b1e4SBarry Smith 
2992134b1e4SBarry Smith E*/
3002134b1e4SBarry Smith typedef enum { PC_MG_GALERKIN_BOTH,PC_MG_GALERKIN_PMAT,PC_MG_GALERKIN_MAT, PC_MG_GALERKIN_NONE, PC_MG_GALERKIN_EXTERNAL} PCMGGalerkinType;
3012134b1e4SBarry Smith PETSC_EXTERN const char *const PCMGGalerkinTypes[];
3022134b1e4SBarry Smith 
3032134b1e4SBarry Smith /*E
304b0753f9dSMatthew G. Knepley     PCExoticType - Face based or wirebasket based coarse grid space
305b0753f9dSMatthew G. Knepley 
306b0753f9dSMatthew G. Knepley    Level: beginner
307b0753f9dSMatthew G. Knepley 
308b0753f9dSMatthew G. Knepley .seealso: PCExoticSetType(), PCEXOTIC
309b0753f9dSMatthew G. Knepley E*/
310b0753f9dSMatthew G. Knepley typedef enum { PC_EXOTIC_FACE,PC_EXOTIC_WIREBASKET } PCExoticType;
311b0753f9dSMatthew G. Knepley PETSC_EXTERN const char *const PCExoticTypes[];
312b0753f9dSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PCExoticSetType(PC,PCExoticType);
313b0753f9dSMatthew G. Knepley 
3148c1cd74cSHong Zhang /*E
315*ee6acaa3SMatthew G. Knepley     PCPatchConstructType - The algorithm used to construct patches for the preconditioner
3164bbf5ea8SMatthew G. Knepley 
3174bbf5ea8SMatthew G. Knepley    Level: beginner
3184bbf5ea8SMatthew G. Knepley 
3194bbf5ea8SMatthew G. Knepley .seealso: PCPatchSetConstructType(), PCEXOTIC
3204bbf5ea8SMatthew G. Knepley E*/
3214bbf5ea8SMatthew G. Knepley typedef enum {PC_PATCH_STAR, PC_PATCH_VANKA, PC_PATCH_USER, PC_PATCH_PYTHON} PCPatchConstructType;
3224bbf5ea8SMatthew G. Knepley PETSC_EXTERN const char *const PCPatchConstructTypes[];
3234bbf5ea8SMatthew G. Knepley 
3244bbf5ea8SMatthew G. Knepley /*E
3258c1cd74cSHong Zhang     PCFailedReason - indicates type of PC failure
3268c1cd74cSHong Zhang 
3278c1cd74cSHong Zhang     Level: beginner
3288c1cd74cSHong Zhang 
3298c1cd74cSHong Zhang     Any additions/changes here MUST also be made in include/petsc/finclude/petscpc.h
3308c1cd74cSHong Zhang E*/
331284f0211SHong Zhang typedef enum {PC_NOERROR,PC_FACTOR_STRUCT_ZEROPIVOT,PC_FACTOR_NUMERIC_ZEROPIVOT,PC_FACTOR_OUTMEMORY,PC_FACTOR_OTHER,PC_SUBPC_ERROR} PCFailedReason;
3321c852feaSHong Zhang PETSC_EXTERN const char *const PCFailedReasons[];
333b0753f9dSMatthew G. Knepley #endif
334