14 January 2007 03:27:29 PM TRIANGULATION_MASK C++ version: Read a node file of NODE_NUM points in 2 dimensions. Read an associated triangulation file of TRIANGLE_NUM triangles using 3 or 6 nodes. For each triangle, call a user masking routine to see if the triangle should be MASKED (not shown). Write new node and triangulation files corresponding to the unmasked data only. Compiled on Jan 14 2007 at 15:27:25. Read the header of "small_nodes.txt". Spatial dimension DIM_NUM = 2 Number of nodes NODE_NUM = 25 Read the data in "small_nodes.txt". First 5 nodes: Row: 1 2 Col 1 0 0 2 1 0 3 2 0 4 3 0 5 4 0 Read the header of "small_triangles.txt". Triangle order TRIANGLE_ORDER = 3 Number of triangles TRIANGLE_NUM = 32 Read the data in "small_triangles.txt". First 5 triangles:: Row: 1 2 3 Col 1 1 2 6 2 7 6 2 3 2 3 7 4 8 7 3 5 3 4 8 DEBUG: INPUT_NODE_MASK created! The masked triangle data was written to "small_triangles.mask.txt". The masked node data was written to "small_nodes.mask.txt". Number of input triangles = 32 Number of output triangles = 20 Number of deleted triangles = 12 Number of input nodes = 25 Number of output nodes = 17 Number of deleted nodes = 8 First 5 output triangles: Row: 1 2 3 Col 1 5 4 1 2 1 2 5 3 6 5 2 4 2 3 6 5 7 6 3 First 5 output nodes: Row: 1 2 Col 1 2 0 2 3 0 3 4 0 4 1 1 5 2 1 TRIANGULATION_MASK: Normal end of execution. 14 January 2007 03:27:29 PM