Lines Matching refs:topology
127 DMForestTopology topology; in DMForestTemplate() local
142 PetscCall(DMForestGetTopology(dm, &topology)); in DMForestTemplate()
143 PetscCall(DMForestSetTopology(*tedm, topology)); in DMForestTemplate()
212 PetscCall(PetscFree(forest->topology)); in DMDestroy_Forest()
232 PetscErrorCode DMForestSetTopology(DM dm, DMForestTopology topology) in DMForestSetTopology() argument
239 PetscCall(PetscFree(forest->topology)); in DMForestSetTopology()
240 PetscCall(PetscStrallocpy((const char *)topology, (char **)&forest->topology)); in DMForestSetTopology()
259 PetscErrorCode DMForestGetTopology(DM dm, DMForestTopology *topology) in DMForestGetTopology() argument
265 PetscAssertPointer(topology, 2); in DMForestGetTopology()
266 *topology = forest->topology; in DMForestGetTopology()
1690 forest->topology = NULL; in DMCreate_Forest()