[MOAB-dev] r3955 - MOAB/trunk/src/io

tautges at mcs.anl.gov tautges at mcs.anl.gov
Tue May 25 13:16:15 CDT 2010


Author: tautges
Date: 2010-05-25 13:16:15 -0500 (Tue, 25 May 2010)
New Revision: 3955

Modified:
   MOAB/trunk/src/io/ReadCCMIO.cpp
Log:
Turn off warning about not finding proper connectivity for polyhedra.


Modified: MOAB/trunk/src/io/ReadCCMIO.cpp
===================================================================
--- MOAB/trunk/src/io/ReadCCMIO.cpp	2010-05-25 18:14:22 UTC (rev 3954)
+++ MOAB/trunk/src/io/ReadCCMIO.cpp	2010-05-25 18:16:15 UTC (rev 3955)
@@ -885,7 +885,7 @@
     std::cerr << "Warning: types disagree (cell_topo_type = " << CN::EntityTypeName(input_type)
               << ", faces indicate type " << CN::EntityTypeName(this_type) << std::endl;
 
-  if (MBMAXTYPE != input_type && this_type == MBMAXTYPE)
+  if (MBMAXTYPE != input_type && this_type == MBMAXTYPE && input_type != MBPOLYHEDRON)
     std::cerr << "Warning: couldn't find proper connectivity for specified topo_type = " 
               << CN::EntityTypeName(input_type) << std::endl;
 








































More information about the moab-dev mailing list