1264ace61SBarry Smith 23c48a1e8SJed Brown #include <petscdm.h> /*I "petscdm.h" I*/ 377623264SMatthew G. Knepley #include <petscdmplex.h> /*I "petscdmplex.h" I*/ 4af0996ceSBarry Smith #include <petsc/private/dmimpl.h> 5af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h> 6af0996ceSBarry Smith #include <petsc/private/petscfeimpl.h> 7af0996ceSBarry Smith #include <petsc/private/petscfvimpl.h> 8af0996ceSBarry Smith #include <petsc/private/petscdsimpl.h> 98cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_DA(DM); 108cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Composite(DM); 118cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Sliced(DM); 128cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Shell(DM); 138cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Redundant(DM); 148cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Plex(DM); 158cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Patch(DM); 162fd35b1fSDave May PETSC_EXTERN PetscErrorCode DMCreate_Swarm(DM); 17edf5aa1bSVijay Mahadevan #if defined(PETSC_HAVE_MOAB) 181d72bce8STim Tautges PETSC_EXTERN PetscErrorCode DMCreate_Moab(DM); 19edf5aa1bSVijay Mahadevan #endif 20406e3badSSatish Balay PETSC_EXTERN PetscErrorCode DMCreate_Network(DM); 21ef51cf95SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_Forest(DM); 22b34044e4SToby Isaac #if defined(PETSC_HAVE_P4EST) 23b34044e4SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_p4est(DM); 24b34044e4SToby Isaac PETSC_EXTERN PetscErrorCode DMCreate_p8est(DM); 25b34044e4SToby Isaac #endif 26*d852a638SPatrick Sanan PETSC_EXTERN PetscErrorCode DMCreate_Product(DM); 27264ace61SBarry Smith 28264ace61SBarry Smith /*@C 29264ace61SBarry Smith DMRegisterAll - Registers all of the DM components in the DM package. 30264ace61SBarry Smith 31264ace61SBarry Smith Not Collective 32264ace61SBarry Smith 33264ace61SBarry Smith Input parameter: 34264ace61SBarry Smith . path - The dynamic library path 35264ace61SBarry Smith 36264ace61SBarry Smith Level: advanced 37264ace61SBarry Smith 38264ace61SBarry Smith .keywords: DM, register, all 39607a6623SBarry Smith .seealso: DMRegister(), DMRegisterDestroy() 40264ace61SBarry Smith @*/ 41dd63322aSSatish Balay PetscErrorCode DMRegisterAll(void) 42264ace61SBarry Smith { 43264ace61SBarry Smith PetscErrorCode ierr; 44264ace61SBarry Smith 45264ace61SBarry Smith PetscFunctionBegin; 460f51fdf8SToby Isaac if (DMRegisterAllCalled) PetscFunctionReturn(0); 47264ace61SBarry Smith DMRegisterAllCalled = PETSC_TRUE; 488865f1eaSKarl Rupp 49bdf89e91SBarry Smith ierr = DMRegister(DMDA, DMCreate_DA);CHKERRQ(ierr); 50bdf89e91SBarry Smith ierr = DMRegister(DMCOMPOSITE, DMCreate_Composite);CHKERRQ(ierr); 51bdf89e91SBarry Smith ierr = DMRegister(DMSLICED, DMCreate_Sliced);CHKERRQ(ierr); 52bdf89e91SBarry Smith ierr = DMRegister(DMSHELL, DMCreate_Shell);CHKERRQ(ierr); 53bdf89e91SBarry Smith ierr = DMRegister(DMREDUNDANT, DMCreate_Redundant);CHKERRQ(ierr); 54bdf89e91SBarry Smith ierr = DMRegister(DMPLEX, DMCreate_Plex);CHKERRQ(ierr); 55bdf89e91SBarry Smith ierr = DMRegister(DMPATCH, DMCreate_Patch);CHKERRQ(ierr); 562fd35b1fSDave May ierr = DMRegister(DMSWARM, DMCreate_Swarm);CHKERRQ(ierr); 571d72bce8STim Tautges #if defined(PETSC_HAVE_MOAB) 588a1af44dSJed Brown ierr = DMRegister(DMMOAB, DMCreate_Moab);CHKERRQ(ierr); 591d72bce8STim Tautges #endif 60b2930b41SShri Abhyankar ierr = DMRegister(DMNETWORK, DMCreate_Network);CHKERRQ(ierr); 61ef51cf95SToby Isaac ierr = DMRegister(DMFOREST, DMCreate_Forest);CHKERRQ(ierr); 62b34044e4SToby Isaac #if defined(PETSC_HAVE_P4EST) 63b34044e4SToby Isaac ierr = DMRegister(DMP4EST, DMCreate_p4est);CHKERRQ(ierr); 64b34044e4SToby Isaac ierr = DMRegister(DMP8EST, DMCreate_p8est);CHKERRQ(ierr); 65b34044e4SToby Isaac #endif 66*d852a638SPatrick Sanan ierr = DMRegister(DMPRODUCT, DMCreate_Product);CHKERRQ(ierr); 67264ace61SBarry Smith PetscFunctionReturn(0); 68264ace61SBarry Smith } 6977623264SMatthew G. Knepley 7077623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Chaco(PetscPartitioner); 7177623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_ParMetis(PetscPartitioner); 72137cd93aSLisandro Dalcin PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_PTScotch(PetscPartitioner); 7377623264SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Shell(PetscPartitioner); 74555a9cf8SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Simple(PetscPartitioner); 75dae52e14SToby Isaac PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_Gather(PetscPartitioner); 76de68236aSVaclav Hapla PETSC_EXTERN PetscErrorCode PetscPartitionerCreate_MatPartitioning(PetscPartitioner); 7777623264SMatthew G. Knepley 7877623264SMatthew G. Knepley /*@C 7977623264SMatthew G. Knepley PetscPartitionerRegisterAll - Registers all of the PetscPartitioner components in the DM package. 8077623264SMatthew G. Knepley 8177623264SMatthew G. Knepley Not Collective 8277623264SMatthew G. Knepley 8377623264SMatthew G. Knepley Input parameter: 8477623264SMatthew G. Knepley . path - The dynamic library path 8577623264SMatthew G. Knepley 8677623264SMatthew G. Knepley Level: advanced 8777623264SMatthew G. Knepley 8877623264SMatthew G. Knepley .keywords: PetscPartitioner, register, all 8977623264SMatthew G. Knepley .seealso: PetscPartitionerRegister(), PetscPartitionerRegisterDestroy() 9077623264SMatthew G. Knepley @*/ 91dd63322aSSatish Balay PetscErrorCode PetscPartitionerRegisterAll(void) 9277623264SMatthew G. Knepley { 9377623264SMatthew G. Knepley PetscErrorCode ierr; 9477623264SMatthew G. Knepley 9577623264SMatthew G. Knepley PetscFunctionBegin; 960f51fdf8SToby Isaac if (PetscPartitionerRegisterAllCalled) PetscFunctionReturn(0); 9777623264SMatthew G. Knepley PetscPartitionerRegisterAllCalled = PETSC_TRUE; 9877623264SMatthew G. Knepley 9977623264SMatthew G. Knepley ierr = PetscPartitionerRegister(PETSCPARTITIONERCHACO, PetscPartitionerCreate_Chaco);CHKERRQ(ierr); 10077623264SMatthew G. Knepley ierr = PetscPartitionerRegister(PETSCPARTITIONERPARMETIS, PetscPartitionerCreate_ParMetis);CHKERRQ(ierr); 101137cd93aSLisandro Dalcin ierr = PetscPartitionerRegister(PETSCPARTITIONERPTSCOTCH, PetscPartitionerCreate_PTScotch);CHKERRQ(ierr); 10277623264SMatthew G. Knepley ierr = PetscPartitionerRegister(PETSCPARTITIONERSHELL, PetscPartitionerCreate_Shell);CHKERRQ(ierr); 103555a9cf8SMatthew G. Knepley ierr = PetscPartitionerRegister(PETSCPARTITIONERSIMPLE, PetscPartitionerCreate_Simple);CHKERRQ(ierr); 104dae52e14SToby Isaac ierr = PetscPartitionerRegister(PETSCPARTITIONERGATHER, PetscPartitionerCreate_Gather);CHKERRQ(ierr); 105de68236aSVaclav Hapla ierr = PetscPartitionerRegister(PETSCPARTITIONERMATPARTITIONING, PetscPartitionerCreate_MatPartitioning);CHKERRQ(ierr); 10677623264SMatthew G. Knepley PetscFunctionReturn(0); 10777623264SMatthew G. Knepley } 10806759e06SMatthew G. Knepley #include <petscfe.h> /*I "petscfe.h" I*/ 109264ace61SBarry Smith 11006759e06SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscSpaceCreate_Polynomial(PetscSpace); 11136e5648fSToby Isaac PETSC_EXTERN PetscErrorCode PetscSpaceCreate_Tensor(PetscSpace); 1129c3cf19fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscSpaceCreate_Point(PetscSpace); 1132f5fb066SToby Isaac PETSC_EXTERN PetscErrorCode PetscSpaceCreate_Subspace(PetscSpace); 11406759e06SMatthew G. Knepley 11506759e06SMatthew G. Knepley /*@C 11606759e06SMatthew G. Knepley PetscSpaceRegisterAll - Registers all of the PetscSpace components in the PetscFE package. 11706759e06SMatthew G. Knepley 11806759e06SMatthew G. Knepley Not Collective 11906759e06SMatthew G. Knepley 12006759e06SMatthew G. Knepley Input parameter: 12106759e06SMatthew G. Knepley . path - The dynamic library path 12206759e06SMatthew G. Knepley 12306759e06SMatthew G. Knepley Level: advanced 12406759e06SMatthew G. Knepley 12506759e06SMatthew G. Knepley .keywords: PetscSpace, register, all 12606759e06SMatthew G. Knepley .seealso: PetscSpaceRegister(), PetscSpaceRegisterDestroy() 12706759e06SMatthew G. Knepley @*/ 128dd63322aSSatish Balay PetscErrorCode PetscSpaceRegisterAll(void) 12906759e06SMatthew G. Knepley { 13006759e06SMatthew G. Knepley PetscErrorCode ierr; 13106759e06SMatthew G. Knepley 13206759e06SMatthew G. Knepley PetscFunctionBegin; 1330f51fdf8SToby Isaac if (PetscSpaceRegisterAllCalled) PetscFunctionReturn(0); 13406759e06SMatthew G. Knepley PetscSpaceRegisterAllCalled = PETSC_TRUE; 13506759e06SMatthew G. Knepley 13606759e06SMatthew G. Knepley ierr = PetscSpaceRegister(PETSCSPACEPOLYNOMIAL, PetscSpaceCreate_Polynomial);CHKERRQ(ierr); 13736e5648fSToby Isaac ierr = PetscSpaceRegister(PETSCSPACETENSOR, PetscSpaceCreate_Tensor);CHKERRQ(ierr); 1389c3cf19fSMatthew G. Knepley ierr = PetscSpaceRegister(PETSCSPACEPOINT, PetscSpaceCreate_Point);CHKERRQ(ierr); 1392f5fb066SToby Isaac ierr = PetscSpaceRegister(PETSCSPACESUBSPACE, PetscSpaceCreate_Subspace);CHKERRQ(ierr); 14006759e06SMatthew G. Knepley PetscFunctionReturn(0); 14106759e06SMatthew G. Knepley } 14206759e06SMatthew G. Knepley 14306759e06SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDualSpaceCreate_Lagrange(PetscDualSpace); 144c2765ee2SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDualSpaceCreate_Simple(PetscDualSpace); 14506759e06SMatthew G. Knepley 14606759e06SMatthew G. Knepley /*@C 14706759e06SMatthew G. Knepley PetscDualSpaceRegisterAll - Registers all of the PetscDualSpace components in the PetscFE package. 14806759e06SMatthew G. Knepley 14906759e06SMatthew G. Knepley Not Collective 15006759e06SMatthew G. Knepley 15106759e06SMatthew G. Knepley Input parameter: 15206759e06SMatthew G. Knepley . path - The dynamic library path 15306759e06SMatthew G. Knepley 15406759e06SMatthew G. Knepley Level: advanced 15506759e06SMatthew G. Knepley 15606759e06SMatthew G. Knepley .keywords: PetscDualSpace, register, all 15706759e06SMatthew G. Knepley .seealso: PetscDualSpaceRegister(), PetscDualSpaceRegisterDestroy() 15806759e06SMatthew G. Knepley @*/ 159dd63322aSSatish Balay PetscErrorCode PetscDualSpaceRegisterAll(void) 16006759e06SMatthew G. Knepley { 16106759e06SMatthew G. Knepley PetscErrorCode ierr; 16206759e06SMatthew G. Knepley 16306759e06SMatthew G. Knepley PetscFunctionBegin; 1640f51fdf8SToby Isaac if (PetscDualSpaceRegisterAllCalled) PetscFunctionReturn(0); 16506759e06SMatthew G. Knepley PetscDualSpaceRegisterAllCalled = PETSC_TRUE; 16606759e06SMatthew G. Knepley 16706759e06SMatthew G. Knepley ierr = PetscDualSpaceRegister(PETSCDUALSPACELAGRANGE, PetscDualSpaceCreate_Lagrange);CHKERRQ(ierr); 168c2765ee2SMatthew G. Knepley ierr = PetscDualSpaceRegister(PETSCDUALSPACESIMPLE, PetscDualSpaceCreate_Simple);CHKERRQ(ierr); 16906759e06SMatthew G. Knepley PetscFunctionReturn(0); 17006759e06SMatthew G. Knepley } 1710483ade4SMatthew G. Knepley 1720483ade4SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Basic(PetscFE); 173aaf1837cSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Nonaffine(PetscFE); 174aaf1837cSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_Composite(PetscFE); 175497880caSRichard Tran Mills #if defined(PETSC_HAVE_OPENCL) 176133ee763SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFECreate_OpenCL(PetscFE); 177133ee763SMatthew G. Knepley #endif 1780483ade4SMatthew G. Knepley 1790483ade4SMatthew G. Knepley /*@C 1800483ade4SMatthew G. Knepley PetscFERegisterAll - Registers all of the PetscFE components in the PetscFE package. 1810483ade4SMatthew G. Knepley 1820483ade4SMatthew G. Knepley Not Collective 1830483ade4SMatthew G. Knepley 1840483ade4SMatthew G. Knepley Input parameter: 1850483ade4SMatthew G. Knepley . path - The dynamic library path 1860483ade4SMatthew G. Knepley 1870483ade4SMatthew G. Knepley Level: advanced 1880483ade4SMatthew G. Knepley 1890483ade4SMatthew G. Knepley .keywords: PetscFE, register, all 1900483ade4SMatthew G. Knepley .seealso: PetscFERegister(), PetscFERegisterDestroy() 1910483ade4SMatthew G. Knepley @*/ 192dd63322aSSatish Balay PetscErrorCode PetscFERegisterAll(void) 1930483ade4SMatthew G. Knepley { 1940483ade4SMatthew G. Knepley PetscErrorCode ierr; 1950483ade4SMatthew G. Knepley 1960483ade4SMatthew G. Knepley PetscFunctionBegin; 1970f51fdf8SToby Isaac if (PetscFERegisterAllCalled) PetscFunctionReturn(0); 1980483ade4SMatthew G. Knepley PetscFERegisterAllCalled = PETSC_TRUE; 1990483ade4SMatthew G. Knepley 2000483ade4SMatthew G. Knepley ierr = PetscFERegister(PETSCFEBASIC, PetscFECreate_Basic);CHKERRQ(ierr); 201aaf1837cSMatthew G. Knepley ierr = PetscFERegister(PETSCFECOMPOSITE, PetscFECreate_Composite);CHKERRQ(ierr); 202497880caSRichard Tran Mills #if defined(PETSC_HAVE_OPENCL) 203133ee763SMatthew G. Knepley ierr = PetscFERegister(PETSCFEOPENCL, PetscFECreate_OpenCL);CHKERRQ(ierr); 204133ee763SMatthew G. Knepley #endif 2050483ade4SMatthew G. Knepley PetscFunctionReturn(0); 2060483ade4SMatthew G. Knepley } 207f62f30faSMatthew G. Knepley #include <petscfv.h> /*I "petscfv.h" I*/ 208f62f30faSMatthew G. Knepley 209ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Sin(PetscLimiter); 2109347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Zero(PetscLimiter); 2119347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_None(PetscLimiter); 2129347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Minmod(PetscLimiter); 2139347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_VanLeer(PetscLimiter); 2149347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_VanAlbada(PetscLimiter); 2159347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_Superbee(PetscLimiter); 2169347ee04SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate_MC(PetscLimiter); 217ab2453f0SMatthew G. Knepley 218ab2453f0SMatthew G. Knepley /*@C 219ab2453f0SMatthew G. Knepley PetscLimiterRegisterAll - Registers all of the PetscLimiter components in the PetscFV package. 220ab2453f0SMatthew G. Knepley 221ab2453f0SMatthew G. Knepley Not Collective 222ab2453f0SMatthew G. Knepley 223ab2453f0SMatthew G. Knepley Input parameter: 224ab2453f0SMatthew G. Knepley . path - The dynamic library path 225ab2453f0SMatthew G. Knepley 226ab2453f0SMatthew G. Knepley Level: advanced 227ab2453f0SMatthew G. Knepley 228ab2453f0SMatthew G. Knepley .keywords: PetscLimiter, register, all 229ab2453f0SMatthew G. Knepley .seealso: PetscLimiterRegister(), PetscLimiterRegisterDestroy() 230ab2453f0SMatthew G. Knepley @*/ 231dd63322aSSatish Balay PetscErrorCode PetscLimiterRegisterAll(void) 232ab2453f0SMatthew G. Knepley { 233ab2453f0SMatthew G. Knepley PetscErrorCode ierr; 234ab2453f0SMatthew G. Knepley 235ab2453f0SMatthew G. Knepley PetscFunctionBegin; 2360f51fdf8SToby Isaac if (PetscLimiterRegisterAllCalled) PetscFunctionReturn(0); 237ab2453f0SMatthew G. Knepley PetscLimiterRegisterAllCalled = PETSC_TRUE; 238ab2453f0SMatthew G. Knepley 239ab2453f0SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERSIN, PetscLimiterCreate_Sin);CHKERRQ(ierr); 2409347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERZERO, PetscLimiterCreate_Zero);CHKERRQ(ierr); 2419347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERNONE, PetscLimiterCreate_None);CHKERRQ(ierr); 2429347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERMINMOD, PetscLimiterCreate_Minmod);CHKERRQ(ierr); 2439347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERVANLEER, PetscLimiterCreate_VanLeer);CHKERRQ(ierr); 2449347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERVANALBADA, PetscLimiterCreate_VanAlbada);CHKERRQ(ierr); 2459347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERSUPERBEE, PetscLimiterCreate_Superbee);CHKERRQ(ierr); 2469347ee04SMatthew G. Knepley ierr = PetscLimiterRegister(PETSCLIMITERMC, PetscLimiterCreate_MC);CHKERRQ(ierr); 247ab2453f0SMatthew G. Knepley PetscFunctionReturn(0); 248ab2453f0SMatthew G. Knepley } 249ab2453f0SMatthew G. Knepley 250f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreate_Upwind(PetscFV); 2510545663fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreate_LeastSquares(PetscFV); 252f62f30faSMatthew G. Knepley 253f62f30faSMatthew G. Knepley /*@C 2540545663fSMatthew G. Knepley PetscFVRegisterAll - Registers all of the PetscFV components in the PetscFV package. 255f62f30faSMatthew G. Knepley 256f62f30faSMatthew G. Knepley Not Collective 257f62f30faSMatthew G. Knepley 258f62f30faSMatthew G. Knepley Input parameter: 259f62f30faSMatthew G. Knepley . path - The dynamic library path 260f62f30faSMatthew G. Knepley 261f62f30faSMatthew G. Knepley Level: advanced 262f62f30faSMatthew G. Knepley 263f62f30faSMatthew G. Knepley .keywords: PetscFV, register, all 264f62f30faSMatthew G. Knepley .seealso: PetscFVRegister(), PetscFVRegisterDestroy() 265f62f30faSMatthew G. Knepley @*/ 266dd63322aSSatish Balay PetscErrorCode PetscFVRegisterAll(void) 267f62f30faSMatthew G. Knepley { 268f62f30faSMatthew G. Knepley PetscErrorCode ierr; 269f62f30faSMatthew G. Knepley 270f62f30faSMatthew G. Knepley PetscFunctionBegin; 2710f51fdf8SToby Isaac if (PetscFVRegisterAllCalled) PetscFunctionReturn(0); 272f62f30faSMatthew G. Knepley PetscFVRegisterAllCalled = PETSC_TRUE; 273f62f30faSMatthew G. Knepley 274f62f30faSMatthew G. Knepley ierr = PetscFVRegister(PETSCFVUPWIND, PetscFVCreate_Upwind);CHKERRQ(ierr); 2750545663fSMatthew G. Knepley ierr = PetscFVRegister(PETSCFVLEASTSQUARES, PetscFVCreate_LeastSquares);CHKERRQ(ierr); 276f62f30faSMatthew G. Knepley PetscFunctionReturn(0); 277f62f30faSMatthew G. Knepley } 2782764a2aaSMatthew G. Knepley #include <petscds.h> /*I "petscds.h" I*/ 279022a7a5cSMatthew G. Knepley 2802764a2aaSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDSCreate_Basic(PetscDS); 281022a7a5cSMatthew G. Knepley 282022a7a5cSMatthew G. Knepley /*@C 2832764a2aaSMatthew G. Knepley PetscDSRegisterAll - Registers all of the PetscDS components in the PetscDS package. 284022a7a5cSMatthew G. Knepley 285022a7a5cSMatthew G. Knepley Not Collective 286022a7a5cSMatthew G. Knepley 287022a7a5cSMatthew G. Knepley Input parameter: 288022a7a5cSMatthew G. Knepley . path - The dynamic library path 289022a7a5cSMatthew G. Knepley 290022a7a5cSMatthew G. Knepley Level: advanced 291022a7a5cSMatthew G. Knepley 2922764a2aaSMatthew G. Knepley .keywords: PetscDS, register, all 2932764a2aaSMatthew G. Knepley .seealso: PetscDSRegister(), PetscDSRegisterDestroy() 294022a7a5cSMatthew G. Knepley @*/ 295dd63322aSSatish Balay PetscErrorCode PetscDSRegisterAll(void) 296022a7a5cSMatthew G. Knepley { 297022a7a5cSMatthew G. Knepley PetscErrorCode ierr; 298022a7a5cSMatthew G. Knepley 299022a7a5cSMatthew G. Knepley PetscFunctionBegin; 3000f51fdf8SToby Isaac if (PetscDSRegisterAllCalled) PetscFunctionReturn(0); 3012764a2aaSMatthew G. Knepley PetscDSRegisterAllCalled = PETSC_TRUE; 302022a7a5cSMatthew G. Knepley 3032764a2aaSMatthew G. Knepley ierr = PetscDSRegister(PETSCDSBASIC, PetscDSCreate_Basic);CHKERRQ(ierr); 304022a7a5cSMatthew G. Knepley PetscFunctionReturn(0); 305022a7a5cSMatthew G. Knepley } 306