Lines Matching refs:dmcoords
13 DM dmcoords; in DMView_Network_CSV() local
25 PetscCall(DMGetCoordinateDM(dm, &dmcoords)); in DMView_Network_CSV()
27 PetscCall(DMGetCoordinateDim(dmcoords, &i)); in DMView_Network_CSV()
34 PetscCall(PetscObjectGetComm((PetscObject)dmcoords, &comm)); in DMView_Network_CSV()
44 PetscCall(DMNetworkGetNumSubNetworks(dmcoords, NULL, &nsubnets)); in DMView_Network_CSV()
47 PetscCall(DMNetworkGetSubnetwork(dmcoords, subnet, &nvertices, &nedges, &vertices, &edges)); in DMView_Network_CSV()
54 PetscCall(DMNetworkGetLocalVecOffset(dmcoords, vertex, ALL_COMPONENTS, vertexOffsets)); in DMView_Network_CSV()
57 PetscCall(DMNetworkGetGlobalVertexIndex(dmcoords, vertex, &gidx)); in DMView_Network_CSV()
62 PetscCall(DMNetworkGetNumComponents(dmcoords, vertex, &ncomp)); in DMView_Network_CSV()
66 PetscCall(DMNetworkGetComponent(dmcoords, vertex, 0, NULL, (void **)&color_ptr, NULL)); in DMView_Network_CSV()
75 PetscCall(DMNetworkGetConnectedVertices(dmcoords, edge, &edgeVertices)); in DMView_Network_CSV()
76 PetscCall(DMNetworkGetGlobalVertexIndex(dmcoords, edgeVertices[0], &globalEdgeVertices[0])); in DMView_Network_CSV()
77 PetscCall(DMNetworkGetGlobalVertexIndex(dmcoords, edgeVertices[1], &globalEdgeVertices[1])); in DMView_Network_CSV()
78 PetscCall(DMNetworkGetGlobalEdgeIndex(dmcoords, edge, &edge)); in DMView_Network_CSV()