Searched refs:noSurf (Results 1 – 5 of 5) sorted by relevance
| /petsc/src/dm/impls/plex/ |
| H A D | plexmetric.c | 11 …PetscBool noInsert = PETSC_FALSE, noSwap = PETSC_FALSE, noMove = PETSC_FALSE, noSurf = PETSC_FALSE; in DMPlexMetricSetFromOptions() local 31 …dm_plex_metric_no_surf", "Turn off surface modification", "DMAdaptMetric", noSurf, &noSurf, NULL)); in DMPlexMetricSetFromOptions() 32 PetscCall(DMPlexMetricSetNoSurf(dm, noSurf)); in DMPlexMetricSetFromOptions() 355 PetscErrorCode DMPlexMetricSetNoSurf(DM dm, PetscBool noSurf) in DMPlexMetricSetNoSurf() argument 361 plex->metricCtx->noSurf = noSurf; in DMPlexMetricSetNoSurf() 381 PetscErrorCode DMPlexMetricNoSurf(DM dm, PetscBool *noSurf) in DMPlexMetricNoSurf() argument 387 *noSurf = plex->metricCtx->noSurf; in DMPlexMetricNoSurf()
|
| /petsc/src/dm/impls/plex/adaptors/mmg/ |
| H A D | mmgadapt.c | 32 PetscBool flg = PETSC_FALSE, noInsert, noSwap, noMove, noSurf, isotropic, uniform; in DMAdaptMetric_Mmg_Plex() local 158 PetscCall(DMPlexMetricNoSurf(dm, &noSurf)); in DMAdaptMetric_Mmg_Plex() 165 … PetscCallMMG_NONSTANDARD(MMG2D_Set_iparameter, mmg_mesh, mmg_metric, MMG2D_IPARAM_nosurf, noSurf); in DMAdaptMetric_Mmg_Plex() 182 … PetscCallMMG_NONSTANDARD(MMG3D_Set_iparameter, mmg_mesh, mmg_metric, MMG3D_IPARAM_nosurf, noSurf); in DMAdaptMetric_Mmg_Plex()
|
| /petsc/src/dm/impls/plex/adaptors/parmmg/ |
| H A D | parmmgadapt.c | 42 PetscBool flg = PETSC_FALSE, noInsert, noSwap, noMove, noSurf, isotropic, uniform; in DMAdaptMetric_ParMmg_Plex() local 343 PetscCall(DMPlexMetricNoSurf(dm, &noSurf)); in DMAdaptMetric_ParMmg_Plex() 354 PetscCallMMG_NONSTANDARD(PMMG_Set_iparameter, parmesh, PMMG_IPARAM_nosurf, noSurf); in DMAdaptMetric_ParMmg_Plex()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | DMPlex.pyx | 2609 def metricSetNoSurf(self, noSurf: bool) -> None: 2616 noSurf 2626 cdef PetscBool bval = asBool(noSurf) 2641 cdef PetscBool noSurf = PETSC_FALSE 2642 CHKERR(DMPlexMetricNoSurf(self.dm, &noSurf)) 2643 return toBool(noSurf)
|
| /petsc/include/petsc/private/ |
| H A D | dmpleximpl.h | 101 PetscBool noSurf; /* Should surface modification be turned off? */ member
|