[MOAB-dev] r5244 - in MOAB/trunk: examples/itaps itaps/imesh
jvporter at wisc.edu
jvporter at wisc.edu
Thu Dec 8 13:23:51 CST 2011
Author: jvporter
Date: 2011-12-08 13:23:50 -0600 (Thu, 08 Dec 2011)
New Revision: 5244
Modified:
MOAB/trunk/examples/itaps/TagIterateC.c
MOAB/trunk/examples/itaps/TagIterateF.F
MOAB/trunk/itaps/imesh/ScdMeshF77.F
MOAB/trunk/itaps/imesh/iMeshP_MOAB.cpp
Log:
More updates for iMesh spec change (I wish tests worked on this machine...)
Modified: MOAB/trunk/examples/itaps/TagIterateC.c
===================================================================
--- MOAB/trunk/examples/itaps/TagIterateC.c 2011-12-08 19:03:19 UTC (rev 5243)
+++ MOAB/trunk/examples/itaps/TagIterateC.c 2011-12-08 19:23:50 UTC (rev 5244)
@@ -40,7 +40,7 @@
CHKERR(err, "Failed to get number of regions.");
/* get an iterator to all regions in the model */
- iMesh_initEntArrIter( mesh, root_set, iBase_REGION, iMesh_ALL_TOPOLOGIES, num_regions, &iter, &err );
+ iMesh_initEntArrIter( mesh, root_set, iBase_REGION, iMesh_ALL_TOPOLOGIES, num_regions, 0, &iter, &err );
CHKERR(err, "Failed to create iterator over regions.");
/* create a tag to put on the regions */
Modified: MOAB/trunk/examples/itaps/TagIterateF.F
===================================================================
--- MOAB/trunk/examples/itaps/TagIterateF.F 2011-12-08 19:03:19 UTC (rev 5243)
+++ MOAB/trunk/examples/itaps/TagIterateF.F 2011-12-08 19:23:50 UTC (rev 5244)
@@ -37,7 +37,7 @@
c get an iterator over regions
call iMesh_initEntArrIter(%VAL(mesh), %VAL(root_set),
1 %VAL(iBase_REGION), %VAL(iMesh_ALL_TOPOLOGIES),%VAL(num_regions),
- 1 iter, ierr)
+ 1 %VAL(0), iter, ierr)
c create a tag to put on the regions
call iMesh_createTagWithOptions(%VAL(mesh), "dumtag",
Modified: MOAB/trunk/itaps/imesh/ScdMeshF77.F
===================================================================
--- MOAB/trunk/itaps/imesh/ScdMeshF77.F 2011-12-08 19:03:19 UTC (rev 5243)
+++ MOAB/trunk/itaps/imesh/ScdMeshF77.F 2011-12-08 19:23:50 UTC (rev 5244)
@@ -81,7 +81,7 @@
call iMesh_initEntArrIter(%VAL(mesh), %VAL(root_set),
1 %VAL(iBase_FACE), %VAL(iMesh_QUADRILATERAL),%VAL(num_quads),
- 1 iter, ier)
+ 1 %VAL(0), iter, ier)
call iMesh_createTagWithOptions(%VAL(mesh), "XM1",
1 "moab:TAG_STORAGE_TYPE=DENSE; moab:TAG_DEFAULT_VALUE=0.0",
Modified: MOAB/trunk/itaps/imesh/iMeshP_MOAB.cpp
===================================================================
--- MOAB/trunk/itaps/imesh/iMeshP_MOAB.cpp 2011-12-08 19:03:19 UTC (rev 5243)
+++ MOAB/trunk/itaps/imesh/iMeshP_MOAB.cpp 2011-12-08 19:23:50 UTC (rev 5244)
@@ -1180,6 +1180,7 @@
requested_entity_type,
requested_entity_topology,
requested_array_size,
+ 0, // TODO: update this function for "resilient" arg
More information about the moab-dev
mailing list