02 January 2007 10:09:52 AM 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 Jan 2 2007 at 10:08:59. Read the header of "nodes3.txt". Spatial dimension DIM_NUM = 2 Number of nodes NODE_NUM = 9 Read the data in "nodes3.txt". Portion of coordinate data from file: Row: 1 2 Col 1 1 0 2 2 1 3 2 0 4 0 1 5 1 2 Read the header of "triangles3.txt". Triangle order TRIANGLE_ORDER = 3 Number of triangles TRIANGLE_NUM = 7 Read the data in "triangles3.txt". Portion of data read from file: Row: 1 2 3 Col 1 1 8 9 2 4 9 8 3 3 2 1 4 8 1 2 5 2 7 8 Created the triangle neigbhbor file "triangles3.tneighbor.txt" TRIANGULATION_TRIANGLE_NEIGHBORS.: Normal end of execution. 02 January 2007 10:09:52 AM