[MOAB-dev] r3625 - MOAB/trunk/test/parallel

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Mon Mar 15 16:44:31 CDT 2010


Author: kraftche
Date: 2010-03-15 16:44:30 -0500 (Mon, 15 Mar 2010)
New Revision: 3625

Modified:
   MOAB/trunk/test/parallel/mhdf_parallel.c
Log:
fix minor bug in test

Modified: MOAB/trunk/test/parallel/mhdf_parallel.c
===================================================================
--- MOAB/trunk/test/parallel/mhdf_parallel.c	2010-03-15 20:53:46 UTC (rev 3624)
+++ MOAB/trunk/test/parallel/mhdf_parallel.c	2010-03-15 21:44:30 UTC (rev 3625)
@@ -159,7 +159,7 @@
   
     /* write hex connectivity */
   for (i = 0; i < 8; ++i)
-    list[i] = 4*RANK + i + 1;
+    list[i] = 4*RANK + i + first_node;
   handle = mhdf_openConnectivity( file, elem_handle, &dim, &count, &first_elem, &status );
   CHECK(status);
   assert( count == total_num_hexes );



More information about the moab-dev mailing list