Searched refs:noInsert (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 25 …c_no_insert", "Turn off node insertion and deletion", "DMAdaptMetric", noInsert, &noInsert, NULL)); in DMPlexMetricSetFromOptions() 26 PetscCall(DMPlexMetricSetNoInsertion(dm, noInsert)); in DMPlexMetricSetFromOptions() 205 PetscErrorCode DMPlexMetricSetNoInsertion(DM dm, PetscBool noInsert) in DMPlexMetricSetNoInsertion() argument 211 plex->metricCtx->noInsert = noInsert; in DMPlexMetricSetNoInsertion() 231 PetscErrorCode DMPlexMetricNoInsertion(DM dm, PetscBool *noInsert) in DMPlexMetricNoInsertion() argument 237 *noInsert = plex->metricCtx->noInsert; in DMPlexMetricNoInsertion()
|
| /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 155 PetscCall(DMPlexMetricNoInsertion(dm, &noInsert)); in DMAdaptMetric_Mmg_Plex() 162 …scCallMMG_NONSTANDARD(MMG2D_Set_iparameter, mmg_mesh, mmg_metric, MMG2D_IPARAM_noinsert, noInsert); in DMAdaptMetric_Mmg_Plex() 179 …scCallMMG_NONSTANDARD(MMG3D_Set_iparameter, mmg_mesh, mmg_metric, MMG3D_IPARAM_noinsert, noInsert); 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 340 PetscCall(DMPlexMetricNoInsertion(dm, &noInsert)); in DMAdaptMetric_ParMmg_Plex() 351 PetscCallMMG_NONSTANDARD(PMMG_Set_iparameter, parmesh, PMMG_IPARAM_noinsert, noInsert); in DMAdaptMetric_ParMmg_Plex()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | DMPlex.pyx | 2501 def metricSetNoInsertion(self, noInsert: bool) -> None: 2508 noInsert 2518 cdef PetscBool bval = asBool(noInsert) 2533 cdef PetscBool noInsert = PETSC_FALSE 2534 CHKERR(DMPlexMetricNoInsertion(self.dm, &noInsert)) 2535 return toBool(noInsert)
|
| /petsc/include/petsc/private/ |
| H A D | dmpleximpl.h | 98 PetscBool noInsert; /* Should node insertion/deletion be turned off? */ member
|