Home
last modified time | relevance | path

Searched refs:maxRefinement (Results 1 – 2 of 2) sorted by relevance

/petsc/src/dm/impls/forest/
H A Dforest.c838 PetscErrorCode DMForestSetMaximumRefinement(DM dm, PetscInt maxRefinement) in DMForestSetMaximumRefinement() argument
845 forest->maxRefinement = maxRefinement; in DMForestSetMaximumRefinement()
866 PetscErrorCode DMForestGetMaximumRefinement(DM dm, PetscInt *maxRefinement) in DMForestGetMaximumRefinement() argument
872 PetscAssertPointer(maxRefinement, 2); in DMForestGetMaximumRefinement()
873 *maxRefinement = forest->maxRefinement; in DMForestGetMaximumRefinement()
1470 …t adjDim, adjCodim, overlap, minRefinement, initRefinement, maxRefinement, grade; in DMSetFromOptions_Forest() local
1553 PetscCall(DMForestGetMaximumRefinement(dm, &maxRefinement)); in DMSetFromOptions_Forest()
1554 …of refinement in the forest", "DMForestSetMaximumRefinement", maxRefinement, &maxRefinement, &flg,… in DMSetFromOptions_Forest()
1555 if (flg) PetscCall(DMForestSetMaximumRefinement(dm, maxRefinement)); in DMSetFromOptions_Forest()
1697 forest->maxRefinement = PETSC_DEFAULT; in DMCreate_Forest()
/petsc/include/petsc/private/
H A Ddmforestimpl.h29 PetscInt maxRefinement; member