xref: /petsc/src/dm/interface/dmregall.c (revision ef51cf95fd86cced3e96e21da8f2b0549f9cb6d4)
1264ace61SBarry Smith 
23c48a1e8SJed Brown #include <petscdm.h>     /*I  "petscdm.h"  I*/
377623264SMatthew G. Knepley #include <petscdmplex.h> /*I  "petscdmplex.h"  I*/
48cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_DA(DM);
58cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Composite(DM);
68cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Sliced(DM);
78cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Shell(DM);
88cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Redundant(DM);
98cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Plex(DM);
108cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Patch(DM);
11edf5aa1bSVijay Mahadevan #if defined(PETSC_HAVE_MOAB)
121d72bce8STim Tautges PETSC_EXTERN PetscErrorCode DMCreate_Moab(DM);
13edf5aa1bSVijay Mahadevan #endif
14406e3badSSatish Balay PETSC_EXTERN PetscErrorCode DMCreate_Network(DM);
15*ef51cf95SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_Forest(DM);
16b34044e4SToby Isaac #if defined(PETSC_HAVE_P4EST)
17b34044e4SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_p4est(DM);
18b34044e4SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_p8est(DM);
19b34044e4SToby Isaac #endif
20264ace61SBarry Smith 
21264ace61SBarry Smith #undef __FUNCT__
22264ace61SBarry Smith #define __FUNCT__ "DMRegisterAll"
23264ace61SBarry Smith /*@C
24264ace61SBarry Smith   DMRegisterAll - Registers all of the DM components in the DM package.
25264ace61SBarry Smith 
26264ace61SBarry Smith   Not Collective
27264ace61SBarry Smith 
28264ace61SBarry Smith   Input parameter:
29264ace61SBarry Smith . path - The dynamic library path
30264ace61SBarry Smith 
31264ace61SBarry Smith   Level: advanced
32264ace61SBarry Smith 
33264ace61SBarry Smith .keywords: DM, register, all
34607a6623SBarry Smith .seealso:  DMRegister(), DMRegisterDestroy()
35264ace61SBarry Smith @*/
36607a6623SBarry Smith PetscErrorCode  DMRegisterAll()
37264ace61SBarry Smith {
38264ace61SBarry Smith   PetscErrorCode ierr;
39264ace61SBarry Smith 
40264ace61SBarry Smith   PetscFunctionBegin;
41264ace61SBarry Smith   DMRegisterAllCalled = PETSC_TRUE;
428865f1eaSKarl Rupp 
43bdf89e91SBarry Smith   ierr = DMRegister(DMDA,         DMCreate_DA);CHKERRQ(ierr);
44bdf89e91SBarry Smith   ierr = DMRegister(DMCOMPOSITE,  DMCreate_Composite);CHKERRQ(ierr);
45bdf89e91SBarry Smith   ierr = DMRegister(DMSLICED,     DMCreate_Sliced);CHKERRQ(ierr);
46bdf89e91SBarry Smith   ierr = DMRegister(DMSHELL,      DMCreate_Shell);CHKERRQ(ierr);
47bdf89e91SBarry Smith   ierr = DMRegister(DMREDUNDANT,  DMCreate_Redundant);CHKERRQ(ierr);
48bdf89e91SBarry Smith   ierr = DMRegister(DMPLEX,       DMCreate_Plex);CHKERRQ(ierr);
49bdf89e91SBarry Smith   ierr = DMRegister(DMPATCH,      DMCreate_Patch);CHKERRQ(ierr);
501d72bce8STim Tautges #if defined(PETSC_HAVE_MOAB)
518a1af44dSJed Brown   ierr = DMRegister(DMMOAB,       DMCreate_Moab);CHKERRQ(ierr);
521d72bce8STim Tautges #endif
53b2930b41SShri Abhyankar   ierr = DMRegister(DMNETWORK,    DMCreate_Network);CHKERRQ(ierr);
54*ef51cf95SToby Isaac   ierr = DMRegister(DMFOREST,     DMCreate_Forest);CHKERRQ(ierr);
55b34044e4SToby Isaac #if defined(PETSC_HAVE_P4EST)
56b34044e4SToby Isaac   ierr = DMRegister(DMP4EST,      DMCreate_p4est);CHKERRQ(ierr);
57b34044e4SToby Isaac   ierr = DMRegister(DMP8EST,      DMCreate_p8est);CHKERRQ(ierr);
58b34044e4SToby Isaac #endif
59264ace61SBarry Smith   PetscFunctionReturn(0);
60264ace61SBarry Smith }
6177623264SMatthew G. Knepley 
6277623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Chaco(PetscPartitioner);
6377623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_ParMetis(PetscPartitioner);
6477623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Shell(PetscPartitioner);
6577623264SMatthew G. Knepley 
6677623264SMatthew G. Knepley #undef __FUNCT__
6777623264SMatthew G. Knepley #define __FUNCT__ "PetscPartitionerRegisterAll"
6877623264SMatthew G. Knepley /*@C
6977623264SMatthew G. Knepley   PetscPartitionerRegisterAll - Registers all of the PetscPartitioner components in the DM package.
7077623264SMatthew G. Knepley 
7177623264SMatthew G. Knepley   Not Collective
7277623264SMatthew G. Knepley 
7377623264SMatthew G. Knepley   Input parameter:
7477623264SMatthew G. Knepley . path - The dynamic library path
7577623264SMatthew G. Knepley 
7677623264SMatthew G. Knepley   Level: advanced
7777623264SMatthew G. Knepley 
7877623264SMatthew G. Knepley .keywords: PetscPartitioner, register, all
7977623264SMatthew G. Knepley .seealso:  PetscPartitionerRegister(), PetscPartitionerRegisterDestroy()
8077623264SMatthew G. Knepley @*/
8177623264SMatthew G. Knepley PetscErrorCode PetscPartitionerRegisterAll()
8277623264SMatthew G. Knepley {
8377623264SMatthew G. Knepley   PetscErrorCode ierr;
8477623264SMatthew G. Knepley 
8577623264SMatthew G. Knepley   PetscFunctionBegin;
8677623264SMatthew G. Knepley   PetscPartitionerRegisterAllCalled = PETSC_TRUE;
8777623264SMatthew G. Knepley 
8877623264SMatthew G. Knepley   ierr = PetscPartitionerRegister(PETSCPARTITIONERCHACO,    PetscPartitionerCreate_Chaco);CHKERRQ(ierr);
8977623264SMatthew G. Knepley   ierr = PetscPartitionerRegister(PETSCPARTITIONERPARMETIS, PetscPartitionerCreate_ParMetis);CHKERRQ(ierr);
9077623264SMatthew G. Knepley   ierr = PetscPartitionerRegister(PETSCPARTITIONERSHELL,    PetscPartitionerCreate_Shell);CHKERRQ(ierr);
9177623264SMatthew G. Knepley   PetscFunctionReturn(0);
9277623264SMatthew G. Knepley }
9306759e06SMatthew G. Knepley #include <petscfe.h>     /*I  "petscfe.h"  I*/
94264ace61SBarry Smith 
9506759e06SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscSpaceCreate_Polynomial(PetscSpace);
962bdb15eaSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscSpaceCreate_DG(PetscSpace);
9706759e06SMatthew G. Knepley 
9806759e06SMatthew G. Knepley #undef __FUNCT__
9906759e06SMatthew G. Knepley #define __FUNCT__ "PetscSpaceRegisterAll"
10006759e06SMatthew G. Knepley /*@C
10106759e06SMatthew G. Knepley   PetscSpaceRegisterAll - Registers all of the PetscSpace components in the PetscFE package.
10206759e06SMatthew G. Knepley 
10306759e06SMatthew G. Knepley   Not Collective
10406759e06SMatthew G. Knepley 
10506759e06SMatthew G. Knepley   Input parameter:
10606759e06SMatthew G. Knepley . path - The dynamic library path
10706759e06SMatthew G. Knepley 
10806759e06SMatthew G. Knepley   Level: advanced
10906759e06SMatthew G. Knepley 
11006759e06SMatthew G. Knepley .keywords: PetscSpace, register, all
11106759e06SMatthew G. Knepley .seealso:  PetscSpaceRegister(), PetscSpaceRegisterDestroy()
11206759e06SMatthew G. Knepley @*/
11306759e06SMatthew G. Knepley PetscErrorCode PetscSpaceRegisterAll()
11406759e06SMatthew G. Knepley {
11506759e06SMatthew G. Knepley   PetscErrorCode ierr;
11606759e06SMatthew G. Knepley 
11706759e06SMatthew G. Knepley   PetscFunctionBegin;
11806759e06SMatthew G. Knepley   PetscSpaceRegisterAllCalled = PETSC_TRUE;
11906759e06SMatthew G. Knepley 
12006759e06SMatthew G. Knepley   ierr = PetscSpaceRegister(PETSCSPACEPOLYNOMIAL, PetscSpaceCreate_Polynomial);CHKERRQ(ierr);
1212bdb15eaSMatthew G. Knepley   ierr = PetscSpaceRegister(PETSCSPACEDG,         PetscSpaceCreate_DG);CHKERRQ(ierr);
12206759e06SMatthew G. Knepley   PetscFunctionReturn(0);
12306759e06SMatthew G. Knepley }
12406759e06SMatthew G. Knepley 
12506759e06SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDualSpaceCreate_Lagrange(PetscDualSpace);
126c2765ee2SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDualSpaceCreate_Simple(PetscDualSpace);
12706759e06SMatthew G. Knepley 
12806759e06SMatthew G. Knepley #undef __FUNCT__
12906759e06SMatthew G. Knepley #define __FUNCT__ "PetscDualSpaceRegisterAll"
13006759e06SMatthew G. Knepley /*@C
13106759e06SMatthew G. Knepley   PetscDualSpaceRegisterAll - Registers all of the PetscDualSpace components in the PetscFE package.
13206759e06SMatthew G. Knepley 
13306759e06SMatthew G. Knepley   Not Collective
13406759e06SMatthew G. Knepley 
13506759e06SMatthew G. Knepley   Input parameter:
13606759e06SMatthew G. Knepley . path - The dynamic library path
13706759e06SMatthew G. Knepley 
13806759e06SMatthew G. Knepley   Level: advanced
13906759e06SMatthew G. Knepley 
14006759e06SMatthew G. Knepley .keywords: PetscDualSpace, register, all
14106759e06SMatthew G. Knepley .seealso:  PetscDualSpaceRegister(), PetscDualSpaceRegisterDestroy()
14206759e06SMatthew G. Knepley @*/
14306759e06SMatthew G. Knepley PetscErrorCode PetscDualSpaceRegisterAll()
14406759e06SMatthew G. Knepley {
14506759e06SMatthew G. Knepley   PetscErrorCode ierr;
14606759e06SMatthew G. Knepley 
14706759e06SMatthew G. Knepley   PetscFunctionBegin;
14806759e06SMatthew G. Knepley   PetscDualSpaceRegisterAllCalled = PETSC_TRUE;
14906759e06SMatthew G. Knepley 
15006759e06SMatthew G. Knepley   ierr = PetscDualSpaceRegister(PETSCDUALSPACELAGRANGE, PetscDualSpaceCreate_Lagrange);CHKERRQ(ierr);
151c2765ee2SMatthew G. Knepley   ierr = PetscDualSpaceRegister(PETSCDUALSPACESIMPLE,   PetscDualSpaceCreate_Simple);CHKERRQ(ierr);
15206759e06SMatthew G. Knepley   PetscFunctionReturn(0);
15306759e06SMatthew G. Knepley }
1540483ade4SMatthew G. Knepley 
1550483ade4SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Basic(PetscFE);
156aaf1837cSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Nonaffine(PetscFE);
157aaf1837cSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Composite(PetscFE);
158133ee763SMatthew G. Knepley #ifdef PETSC_HAVE_OPENCL
159133ee763SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_OpenCL(PetscFE);
160133ee763SMatthew G. Knepley #endif
1610483ade4SMatthew G. Knepley 
1620483ade4SMatthew G. Knepley #undef __FUNCT__
1630483ade4SMatthew G. Knepley #define __FUNCT__ "PetscFERegisterAll"
1640483ade4SMatthew G. Knepley /*@C
1650483ade4SMatthew G. Knepley   PetscFERegisterAll - Registers all of the PetscFE components in the PetscFE package.
1660483ade4SMatthew G. Knepley 
1670483ade4SMatthew G. Knepley   Not Collective
1680483ade4SMatthew G. Knepley 
1690483ade4SMatthew G. Knepley   Input parameter:
1700483ade4SMatthew G. Knepley . path - The dynamic library path
1710483ade4SMatthew G. Knepley 
1720483ade4SMatthew G. Knepley   Level: advanced
1730483ade4SMatthew G. Knepley 
1740483ade4SMatthew G. Knepley .keywords: PetscFE, register, all
1750483ade4SMatthew G. Knepley .seealso:  PetscFERegister(), PetscFERegisterDestroy()
1760483ade4SMatthew G. Knepley @*/
1770483ade4SMatthew G. Knepley PetscErrorCode PetscFERegisterAll()
1780483ade4SMatthew G. Knepley {
1790483ade4SMatthew G. Knepley   PetscErrorCode ierr;
1800483ade4SMatthew G. Knepley 
1810483ade4SMatthew G. Knepley   PetscFunctionBegin;
1820483ade4SMatthew G. Knepley   PetscFERegisterAllCalled = PETSC_TRUE;
1830483ade4SMatthew G. Knepley 
1840483ade4SMatthew G. Knepley   ierr = PetscFERegister(PETSCFEBASIC,     PetscFECreate_Basic);CHKERRQ(ierr);
185aaf1837cSMatthew G. Knepley   ierr = PetscFERegister(PETSCFENONAFFINE, PetscFECreate_Nonaffine);CHKERRQ(ierr);
186aaf1837cSMatthew G. Knepley   ierr = PetscFERegister(PETSCFECOMPOSITE, PetscFECreate_Composite);CHKERRQ(ierr);
187133ee763SMatthew G. Knepley #ifdef PETSC_HAVE_OPENCL
188133ee763SMatthew G. Knepley   ierr = PetscFERegister(PETSCFEOPENCL, PetscFECreate_OpenCL);CHKERRQ(ierr);
189133ee763SMatthew G. Knepley #endif
1900483ade4SMatthew G. Knepley   PetscFunctionReturn(0);
1910483ade4SMatthew G. Knepley }
192f62f30faSMatthew G. Knepley #include <petscfv.h>     /*I  "petscfv.h"  I*/
193f62f30faSMatthew G. Knepley 
194ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Sin(PetscLimiter);
1959347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Zero(PetscLimiter);
1969347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_None(PetscLimiter);
1979347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Minmod(PetscLimiter);
1989347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_VanLeer(PetscLimiter);
1999347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_VanAlbada(PetscLimiter);
2009347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Superbee(PetscLimiter);
2019347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_MC(PetscLimiter);
202ab2453f0SMatthew G. Knepley 
203ab2453f0SMatthew G. Knepley #undef __FUNCT__
204ab2453f0SMatthew G. Knepley #define __FUNCT__ "PetscLimiterRegisterAll"
205ab2453f0SMatthew G. Knepley /*@C
206ab2453f0SMatthew G. Knepley   PetscLimiterRegisterAll - Registers all of the PetscLimiter components in the PetscFV package.
207ab2453f0SMatthew G. Knepley 
208ab2453f0SMatthew G. Knepley   Not Collective
209ab2453f0SMatthew G. Knepley 
210ab2453f0SMatthew G. Knepley   Input parameter:
211ab2453f0SMatthew G. Knepley . path - The dynamic library path
212ab2453f0SMatthew G. Knepley 
213ab2453f0SMatthew G. Knepley   Level: advanced
214ab2453f0SMatthew G. Knepley 
215ab2453f0SMatthew G. Knepley .keywords: PetscLimiter, register, all
216ab2453f0SMatthew G. Knepley .seealso:  PetscLimiterRegister(), PetscLimiterRegisterDestroy()
217ab2453f0SMatthew G. Knepley @*/
218ab2453f0SMatthew G. Knepley PetscErrorCode PetscLimiterRegisterAll()
219ab2453f0SMatthew G. Knepley {
220ab2453f0SMatthew G. Knepley   PetscErrorCode ierr;
221ab2453f0SMatthew G. Knepley 
222ab2453f0SMatthew G. Knepley   PetscFunctionBegin;
223ab2453f0SMatthew G. Knepley   PetscLimiterRegisterAllCalled = PETSC_TRUE;
224ab2453f0SMatthew G. Knepley 
225ab2453f0SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERSIN,       PetscLimiterCreate_Sin);CHKERRQ(ierr);
2269347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERZERO,      PetscLimiterCreate_Zero);CHKERRQ(ierr);
2279347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERNONE,      PetscLimiterCreate_None);CHKERRQ(ierr);
2289347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERMINMOD,    PetscLimiterCreate_Minmod);CHKERRQ(ierr);
2299347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERVANLEER,   PetscLimiterCreate_VanLeer);CHKERRQ(ierr);
2309347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERVANALBADA, PetscLimiterCreate_VanAlbada);CHKERRQ(ierr);
2319347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERSUPERBEE,  PetscLimiterCreate_Superbee);CHKERRQ(ierr);
2329347ee04SMatthew G. Knepley   ierr = PetscLimiterRegister(PETSCLIMITERMC,        PetscLimiterCreate_MC);CHKERRQ(ierr);
233ab2453f0SMatthew G. Knepley   PetscFunctionReturn(0);
234ab2453f0SMatthew G. Knepley }
235ab2453f0SMatthew G. Knepley 
236f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreate_Upwind(PetscFV);
2370545663fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreate_LeastSquares(PetscFV);
238f62f30faSMatthew G. Knepley 
239f62f30faSMatthew G. Knepley #undef __FUNCT__
240f62f30faSMatthew G. Knepley #define __FUNCT__ "PetscFVRegisterAll"
241f62f30faSMatthew G. Knepley /*@C
2420545663fSMatthew G. Knepley   PetscFVRegisterAll - Registers all of the PetscFV components in the PetscFV package.
243f62f30faSMatthew G. Knepley 
244f62f30faSMatthew G. Knepley   Not Collective
245f62f30faSMatthew G. Knepley 
246f62f30faSMatthew G. Knepley   Input parameter:
247f62f30faSMatthew G. Knepley . path - The dynamic library path
248f62f30faSMatthew G. Knepley 
249f62f30faSMatthew G. Knepley   Level: advanced
250f62f30faSMatthew G. Knepley 
251f62f30faSMatthew G. Knepley .keywords: PetscFV, register, all
252f62f30faSMatthew G. Knepley .seealso:  PetscFVRegister(), PetscFVRegisterDestroy()
253f62f30faSMatthew G. Knepley @*/
254f62f30faSMatthew G. Knepley PetscErrorCode PetscFVRegisterAll()
255f62f30faSMatthew G. Knepley {
256f62f30faSMatthew G. Knepley   PetscErrorCode ierr;
257f62f30faSMatthew G. Knepley 
258f62f30faSMatthew G. Knepley   PetscFunctionBegin;
259f62f30faSMatthew G. Knepley   PetscFVRegisterAllCalled = PETSC_TRUE;
260f62f30faSMatthew G. Knepley 
261f62f30faSMatthew G. Knepley   ierr = PetscFVRegister(PETSCFVUPWIND,       PetscFVCreate_Upwind);CHKERRQ(ierr);
2620545663fSMatthew G. Knepley   ierr = PetscFVRegister(PETSCFVLEASTSQUARES, PetscFVCreate_LeastSquares);CHKERRQ(ierr);
263f62f30faSMatthew G. Knepley   PetscFunctionReturn(0);
264f62f30faSMatthew G. Knepley }
2652764a2aaSMatthew G. Knepley #include <petscds.h>     /*I  "petscds.h"  I*/
266022a7a5cSMatthew G. Knepley 
2672764a2aaSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDSCreate_Basic(PetscDS);
268022a7a5cSMatthew G. Knepley 
269022a7a5cSMatthew G. Knepley #undef __FUNCT__
2702764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSRegisterAll"
271022a7a5cSMatthew G. Knepley /*@C
2722764a2aaSMatthew G. Knepley   PetscDSRegisterAll - Registers all of the PetscDS components in the PetscDS package.
273022a7a5cSMatthew G. Knepley 
274022a7a5cSMatthew G. Knepley   Not Collective
275022a7a5cSMatthew G. Knepley 
276022a7a5cSMatthew G. Knepley   Input parameter:
277022a7a5cSMatthew G. Knepley . path - The dynamic library path
278022a7a5cSMatthew G. Knepley 
279022a7a5cSMatthew G. Knepley   Level: advanced
280022a7a5cSMatthew G. Knepley 
2812764a2aaSMatthew G. Knepley .keywords: PetscDS, register, all
2822764a2aaSMatthew G. Knepley .seealso:  PetscDSRegister(), PetscDSRegisterDestroy()
283022a7a5cSMatthew G. Knepley @*/
2842764a2aaSMatthew G. Knepley PetscErrorCode PetscDSRegisterAll()
285022a7a5cSMatthew G. Knepley {
286022a7a5cSMatthew G. Knepley   PetscErrorCode ierr;
287022a7a5cSMatthew G. Knepley 
288022a7a5cSMatthew G. Knepley   PetscFunctionBegin;
2892764a2aaSMatthew G. Knepley   PetscDSRegisterAllCalled = PETSC_TRUE;
290022a7a5cSMatthew G. Knepley 
2912764a2aaSMatthew G. Knepley   ierr = PetscDSRegister(PETSCDSBASIC, PetscDSCreate_Basic);CHKERRQ(ierr);
292022a7a5cSMatthew G. Knepley   PetscFunctionReturn(0);
293022a7a5cSMatthew G. Knepley }
294