Skip to content
Snippets Groups Projects
Commit 8e1bc32f authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed comparison between signed and unsigned

parent a0784e28
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ public:
void initSuperentities( InitializerType& meshInitializer )
{
TNL_ASSERT_GT( dynamicStorageNetwork.size(), 0,
TNL_ASSERT_GT( dynamicStorageNetwork.size(), (size_t) 0,
"No superentity indices were collected. This is a bug in the mesh initializer." );
TNL_ASSERT_EQ( (size_t) getMaxSuperentityIndex(), dynamicStorageNetwork.size() - 1,
"Superentities for some entities are missing. "
......
......@@ -83,13 +83,13 @@ TEST( MeshTest, RegularMeshOfQuadrilateralsTest )
std::vector< IndexType > interiorCells = {4, 7};
// Test boundary cells
EXPECT_EQ( mesh.template getBoundaryEntitiesCount< 2 >(), boundaryCells.size() );
EXPECT_EQ( mesh.template getBoundaryEntitiesCount< 2 >(), (int) boundaryCells.size() );
for( size_t i = 0; i < boundaryCells.size(); i++ ) {
EXPECT_TRUE( mesh.template isBoundaryEntity< 2 >( boundaryCells[ i ] ) );
EXPECT_EQ( mesh.template getBoundaryEntityIndex< 2 >( i ), boundaryCells[ i ] );
}
// Test interior cells
EXPECT_EQ( mesh.template getInteriorEntitiesCount< 2 >(), interiorCells.size() );
EXPECT_EQ( mesh.template getInteriorEntitiesCount< 2 >(), (int) interiorCells.size() );
for( size_t i = 0; i < interiorCells.size(); i++ ) {
EXPECT_FALSE( mesh.template isBoundaryEntity< 2 >( interiorCells[ i ] ) );
EXPECT_EQ( mesh.template getInteriorEntityIndex< 2 >( i ), interiorCells[ i ] );
......@@ -99,13 +99,13 @@ TEST( MeshTest, RegularMeshOfQuadrilateralsTest )
std::vector< IndexType > interiorFaces = {1, 2, 5, 6, 9, 10, 11, 13, 14, 16, 17, 18, 20, 21, 23, 24, 27};
// Test boundary faces
EXPECT_EQ( mesh.template getBoundaryEntitiesCount< 1 >(), boundaryFaces.size() );
EXPECT_EQ( mesh.template getBoundaryEntitiesCount< 1 >(), (int) boundaryFaces.size() );
for( size_t i = 0; i < boundaryFaces.size(); i++ ) {
EXPECT_TRUE( mesh.template isBoundaryEntity< 1 >( boundaryFaces[ i ] ) );
EXPECT_EQ( mesh.template getBoundaryEntityIndex< 1 >( i ), boundaryFaces[ i ] );
}
// Test interior faces
EXPECT_EQ( mesh.template getInteriorEntitiesCount< 1 >(), interiorFaces.size() );
EXPECT_EQ( mesh.template getInteriorEntitiesCount< 1 >(), (int) interiorFaces.size() );
for( size_t i = 0; i < interiorFaces.size(); i++ ) {
EXPECT_FALSE( mesh.template isBoundaryEntity< 1 >( interiorFaces[ i ] ) );
EXPECT_EQ( mesh.template getInteriorEntityIndex< 1 >( i ), interiorFaces[ i ] );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment