Home
last modified time | relevance | path

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

/petsc/src/ksp/pc/impls/bddc/
H A Dbddcgraph.c733 PetscInt *queue_global, *nodecount, **nodeneighs, *subset_sizes; in PCBDDCGraphSetUp() local
768 PetscCall(ISLocalToGlobalMappingGetNodeInfo(graph->l2gmap, NULL, &nodecount, &nodeneighs)); in PCBDDCGraphSetUp()
773 graph->nodes[i].count = nodecount[i]; in PCBDDCGraphSetUp()
775 PetscCall(PetscMalloc1(nodecount[i], &graph->nodes[i].neighbours_set)); in PCBDDCGraphSetUp()
776 PetscCall(PetscArraycpy(graph->nodes[i].neighbours_set, nodeneighs[i], nodecount[i])); in PCBDDCGraphSetUp()
785 PetscCall(PetscCalloc1(nodecount[i], &graph->nodes[i].neighbours_set)); in PCBDDCGraphSetUp()
788 PetscCall(ISLocalToGlobalMappingRestoreNodeInfo(graph->l2gmap, NULL, &nodecount, &nodeneighs)); in PCBDDCGraphSetUp()