Home
last modified time | relevance | path

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

/petsc/src/ksp/pc/impls/patch/
H A Dpcpatch.c923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
980 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->intFacetCounts)); in PCPatchCreateCellPatches()
981 PetscCall(PetscObjectSetName((PetscObject)patch->intFacetCounts, "Patch Interior Facet Layout")); in PCPatchCreateCellPatches()
982 intFacetCounts = patch->intFacetCounts; in PCPatchCreateCellPatches()
983 PetscCall(PetscSectionSetChart(intFacetCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1033 PetscCall(PetscSectionAddDof(intFacetCounts, v, 1)); in PCPatchCreateCellPatches()
1053 PetscCall(PetscSectionSetUp(intFacetCounts)); in PCPatchCreateCellPatches()
1055 PetscCall(PetscSectionGetStorageSize(intFacetCounts, &numIntFacets)); in PCPatchCreateCellPatches()
1070 PetscCall(PetscSectionGetDof(intFacetCounts, v, &ifdof)); in PCPatchCreateCellPatches()
1071 PetscCall(PetscSectionGetOffset(intFacetCounts, v, &ifoff)); in PCPatchCreateCellPatches()
[all …]
/petsc/include/petsc/private/
H A Dpcpatchimpl.h28 PetscSection intFacetCounts; member