diff options
author | dhuth <derickhuth@gmail.com> | 2015-04-13 12:09:42 -0600 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2015-04-13 12:09:42 -0600 |
commit | f0909ea6373f7f01271b1a6707e8022188d885fe (patch) | |
tree | 889589f71e4f23c42539a4ff0d85ac0588141e3d /graph.hh | |
parent | b530622a9b2261b1e8a9c5202285d3928c97b893 (diff) | |
download | chill-f0909ea6373f7f01271b1a6707e8022188d885fe.tar.gz chill-f0909ea6373f7f01271b1a6707e8022188d885fe.tar.bz2 chill-f0909ea6373f7f01271b1a6707e8022188d885fe.zip |
--
Diffstat (limited to 'graph.hh')
-rw-r--r-- | graph.hh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ template<typename VertexType, typename EdgeType> std::ostream& operator<<(std::ostream &os, const Graph<VertexType, EdgeType> &g) { for (int i = 0; i < g.vertex.size(); i++) for (typename Graph<VertexType,EdgeType>::EdgeList::const_iterator j = g.vertex[i].second.begin(); j != g.vertex[i].second.end(); j++) { - os << i+1 << "->" << j->first+1 << ":"; + os << "s" << i << "->" << "s" << j->first << ":"; for (typename std::vector<EdgeType>::const_iterator k = j->second.begin(); k != j->second.end(); k++) os << " " << *k; os << std::endl; |