Home
last modified time | relevance | path

Searched refs:numIter (Results 1 – 4 of 4) sorted by relevance

/petsc/src/dm/impls/plex/
H A Dplexmetric.c12 PetscInt verbosity = -1, numIter = 3; in DMPlexMetricSetFromOptions() local
33 …erations", "Number of ParMmg adaptation iterations", "DMAdaptMetric", numIter, &numIter, NULL, 0)); in DMPlexMetricSetFromOptions()
34 PetscCall(DMPlexMetricSetNumIterations(dm, numIter)); in DMPlexMetricSetFromOptions()
807 PetscErrorCode DMPlexMetricSetNumIterations(DM dm, PetscInt numIter) in DMPlexMetricSetNumIterations() argument
813 plex->metricCtx->numIter = numIter; in DMPlexMetricSetNumIterations()
833 PetscErrorCode DMPlexMetricGetNumIterations(DM dm, PetscInt *numIter) in DMPlexMetricGetNumIterations() argument
839 *numIter = plex->metricCtx->numIter; in DMPlexMetricGetNumIterations()
/petsc/src/dm/impls/plex/adaptors/parmmg/
H A Dparmmgadapt.c35 PetscInt dim, off, coff, maxConeSize, bdSize, i, j, k, Neq, verbosity, numIter; in DMAdaptMetric_ParMmg_Plex() local
345 PetscCall(DMPlexMetricGetNumIterations(dm, &numIter)); in DMAdaptMetric_ParMmg_Plex()
357 PetscCallMMG_NONSTANDARD(PMMG_Set_iparameter, parmesh, PMMG_IPARAM_niter, numIter); in DMAdaptMetric_ParMmg_Plex()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DDMPlex.pyx2684 def metricSetNumIterations(self, numIter: int) -> None:
2691 numIter
2700 cdef PetscInt ival = asInt(numIter)
2714 cdef PetscInt numIter = 0
2715 CHKERR(DMPlexMetricGetNumIterations(self.dm, &numIter))
2716 return toInt(numIter)
/petsc/include/petsc/private/
H A Ddmpleximpl.h108 PetscInt numIter; /* Number of ParMmg mesh adaptation iterations */ member