Remove explicitly listed empty files and switch to output/empty.out
Viwering PetscSection displays dof as dim in the ASCII files, fix to dof
update ex1.c and ex2.c; add tests
Add test for DMNetworkGetNumEdges, DMNetworkGetNumVertices. Needs to be improved in the future, but good enough for now.
-Add DMNetworkGetNumEdges and DMNetworkGetNumVertices, missing access functions for properties of DMNetwork.-Add DMCreateCoordinates_Network, a missing DM function that now allows for DMNetwork to h
-Add DMNetworkGetNumEdges and DMNetworkGetNumVertices, missing access functions for properties of DMNetwork.-Add DMCreateCoordinates_Network, a missing DM function that now allows for DMNetwork to handle coordinates in the same way as other DM objects.-Add support for automatic migration of coordinate DM and coordinates on call to DMNetworkDistribute.-Add simple test code for DMCreateCoordinates_Network and automatic migration to src/dm/impls/network/tests/ex2.c
show more ...
Changed DMClone_Network to only clone the topological part of the network. Adjusted DMDestroy_Network to compensate. Before this DMClone was broken, and essentially just giving you a shared pointer.
Changed DMClone_Network to only clone the topological part of the network. Adjusted DMDestroy_Network to compensate. Before this DMClone was broken, and essentially just giving you a shared pointer. You could use the clone to mess with the values of the components of the original for example. This is a step in getting DMClone to behave similarly for DMNetwork as other DMs.Added DMNetworkFinalizeComponents() to setup the internal data structures for the components and dofs on a network. Necessary to work with cloned networksAdded basic example to test cloning of a network