06 May 2020 09:00:56 PM TRIANGULATION_TRIANGLE_NEIGHBORS. C++ version: Read a node dataset of NODE_NUM points in 2 dimensions. Read an associated triangulation dataset of TRIANGLE_NUM triangles using 3 or 6 nodes. For each triangle, determine the indices of the triangles opposite vertices 1, 2 and 3. Write this triangle neighbor data to files. Compiled on May 6 2020 at 20:57:11. Read the header of "box3_nodes.txt". Spatial dimension DIM_NUM = 2 Number of nodes NODE_NUM = 20 Read the data in "box3_nodes.txt". Portion of coordinate data from file: Row: 1 2 Col 1 0 0 2 1 0 3 2 0 4 3 0 5 4 0 Read the header of "box3_elements.txt". Triangle order TRIANGLE_ORDER = 3 Number of triangles TRIANGLE_NUM = 24 Read the data in "box3_elements.txt". Portion of data read from file: Row: 1 2 3 Col 1 6 1 2 2 7 6 2 3 7 11 6 4 12 11 7 5 16 11 12 MESH_BASE_ZERO: The element indexing appears to be 1-based! This will be converted to 0-based. Created the triangle neighbor file "box3_neighbors.txt" TRIANGULATION_TRIANGLE_NEIGHBORS.: Normal end of execution. 06 May 2020 09:00:56 PM