Branch data Line data Source code
1 : : #include "edge.hpp" 2 : : 3 : : namespace AMR { 4 : : 5 : : // Implementation of the friend function, extending osstream and not an edge_t 6 : : // member 7 : 0 : std::ostream& operator<<(std::ostream& os, const AMR::edge_t& e) 8 : : { 9 : 0 : os << e.get_data()[0] << "-" << e.get_data()[1]; 10 : 0 : return os; 11 : : } 12 : : 13 : : } // AMR::