<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">Hi there. I have a question whether I can get the DAG values in DMPlex in a different order.</div><div dir="ltr"><br></div><div dir="ltr">I am working on a code that uses the same node ordering to form the elements found in the mesh file. Example:</div><div dir="ltr"><br></div><div dir="ltr">If I use the file "doublet-tet.msh" that is inside the DMPlex mesh files folder, this file tells us that the elements are formed as follows:</div><div dir="ltr"><br></div><div dir="ltr">1 - 2 4 3 1</div><div dir="ltr">2 - 2 3 4 5</div><div dir="ltr">Element 1 by nodes 2, 4, 3, 1</div><div dir="ltr">Element 2 by nodes 2, 3, 4, 5</div><div dir="ltr"><br></div><div dir="ltr">So what I'm doing to get this through DMPlex is getting the transitive closure with DMPlexGetTransitiveClosure and getting the points from level 0, which is the node level, but the ordering is different. Example:</div><div dir="ltr"><br></div><div dir="ltr">With DMPlexGetTransitiveClosure I obtain that the elements are formed as follows:</div><div dir="ltr"><br></div><div dir="ltr">0 - 5 3 4 2</div><div dir="ltr">1 - 4 3 5 6</div><div dir="ltr">Element 1 by nodes 5, 3, 4, 2</div><div dir="ltr">Element 2 by nodes 4, 3, 5, 6</div><div dir="ltr"><br></div><div dir="ltr">But comparing this ordering with the previous one in the coordinate matrix I can see that the order is not equivalent.</div><div dir="ltr"><br></div><div dir="ltr">I would like to know if there is a way to modify the ordering of the graph to obtain the same ordering that is in the mesh file for the nodes that make up the elements or even if there is some way to configure it for a specific desired order.</div></div></div></div>