|
Sierra Toolkit Version of the Day
|
00001 /*------------------------------------------------------------------------*/ 00002 /* Copyright 2010 Sandia Corporation. */ 00003 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */ 00004 /* license for use of this work by or on behalf of the U.S. Government. */ 00005 /* Export of this program may require a license from the */ 00006 /* United States Government. */ 00007 /*------------------------------------------------------------------------*/ 00008 00009 00010 #include <stk_mesh/base/Types.hpp> 00011 #include <stk_mesh/base/BulkData.hpp> 00012 00013 //---------------------------------------------------------------------- 00014 //---------------------------------------------------------------------- 00015 00016 namespace stk { 00017 namespace unit_test { 00018 00019 using mesh::EntityId; 00020 using mesh::Part; 00021 using mesh::PartVector; 00022 using mesh::BulkData; 00023 00024 class UnitTestBucket { 00025 public: 00026 static void testBucket ( ParallelMachine ); 00027 static void testTopologyHelpers ( ParallelMachine ); 00028 static void test_get_involved_parts ( ParallelMachine ); 00029 static void testBucket2 ( ParallelMachine ); 00030 static void test_EntityComm( ParallelMachine ); 00031 00041 static void generate_boxes( BulkData & mesh , 00042 const bool generate_aura , 00043 const int root_box[][2] , 00044 int local_box[][2] ); 00045 }; 00046 00047 } 00048 } 00049