From 14699e97c9570380be96ed7f3c450156b9c9ef00 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Wed, 3 Feb 2016 14:01:31 +0100 Subject: [PATCH] [MeL/MS] Removed output of warnings. --- MeshLib/MeshSearch/MeshElementGrid.h | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/MeshLib/MeshSearch/MeshElementGrid.h b/MeshLib/MeshSearch/MeshElementGrid.h index 3cc0f96f5e2..9b260b719f9 100644 --- a/MeshLib/MeshSearch/MeshElementGrid.h +++ b/MeshLib/MeshSearch/MeshElementGrid.h @@ -56,24 +56,6 @@ public: auto const min_coords(getGridCellCoordinates(min)); auto const max_coords(getGridCellCoordinates(max)); - if (!min_coords.first) { - WARN( - "MeshElementGrid::getElementsInVolume: Min point (%f,%f,%f) " - "outside of MeshElementGrid [%f,%f) x [%f,%f) x [%f,%f).", - min[0], min[1], min[2], _aabb.getMinPoint()[0], - _aabb.getMaxPoint()[0], _aabb.getMinPoint()[1], - _aabb.getMaxPoint()[1], _aabb.getMinPoint()[2], - _aabb.getMaxPoint()[2]); - } - if (!max_coords.first) { - WARN( - "MeshElementGrid::getElementsInVolume: Max point (%f,%f,%f) " - "outside of MeshElementGrid [%f,%f) x [%f,%f) x [%f,%f).", - max[0], max[1], max[2], _aabb.getMinPoint()[0], - _aabb.getMaxPoint()[0], _aabb.getMinPoint()[1], - _aabb.getMaxPoint()[1], _aabb.getMinPoint()[2], - _aabb.getMaxPoint()[2]); - } std::vector<MeshLib::Element const*> elements_vec; const std::size_t n_plane(_n_steps[0]*_n_steps[1]); @@ -90,6 +72,7 @@ public: return elements_vec; } + private: void sortElementsInGridCells(MeshLib::Mesh const& sfc_mesh); bool sortElementInGridCells(MeshLib::Element const& element); -- GitLab