Skip to content
Snippets Groups Projects
Commit 4b29d8f4 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by Tobias Leibner
Browse files

[entity] move operator<< to correct scope

parent a365134f
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,20 @@
#include <python/dune/xt/grid/grids.bindings.hh>
namespace Dune {
template <int cd, int dim, class GridImp, template <int, int, class> class EntityImp>
std::ostream& operator<<(std::ostream& out, const Entity<cd, dim, GridImp, EntityImp>& entity)
{
out << "Entity<" << cd << ", " << dim << ", " << XT::Grid::bindings::grid_name<GridImp>::value() << ">(";
out << "{0: [" << entity.geometry().corner(0) << "]";
for (int ii = 1; ii < entity.geometry().corners(); ++ii)
out << ", " << ii << ": [" << entity.geometry().corner(ii) << "]";
out << "})";
return out;
}
namespace XT {
namespace Grid {
......@@ -46,18 +60,6 @@ void print_entity(const EntityType& entity,
} // ... print_entity(...)
template <int cd, int dim, class GridImp, template <int, int, class> class EntityImp>
std::ostream& operator<<(std::ostream& out, const Entity<cd, dim, GridImp, EntityImp>& entity)
{
out << "Entity<" << cd << ", " << dim << ", " << bindings::grid_name<GridImp>::value() << ">(";
for (size_t ii = 0; ii << entity.geometry().corners() - 1; ++ii)
out << Common::to_string(ii) << ": {" << entity.geometry().corner(ii) << "}, ";
out << Common::to_string(entity.geometry().corners() - 1) << ": {"
<< entity.geometry().corner(entity.geometry().corners() - 1) << "})";
return out;
}
template <int codim, int worlddim, class GridImp, template <int, int, class> class EntityImp>
double diameter(const Dune::Entity<codim, worlddim, GridImp, EntityImp>& entity)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment