Changeset 311fc5
- Timestamp:
- 03/21/12 08:22:44 (15 months ago)
- Branches:
- master, python3
- Children:
- 8f9183
- Parents:
- a5bcb6
- git-author:
- Tiago de Paula Peixoto <tiago@…> (12/31/11 14:04:23)
- git-committer:
- Tiago de Paula Peixoto <tiago@…> (03/21/12 08:22:44)
- Location:
- src
- Files:
-
- 2 edited
-
boost-workaround/boost/graph/graphml.hpp (modified) (3 diffs)
-
graph/layout/graph_arf.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/boost-workaround/boost/graph/graphml.hpp
r0945c5 r311fc5 372 372 continue; 373 373 } 374 374 375 375 if (i->first == "_graphml_edge_id") 376 376 { … … 473 473 out << "e" << edge_count; 474 474 edge_count++; 475 475 476 476 out << "\" source=\""; 477 477 if (has_vertex_ids) … … 479 479 source(*e, g))); 480 480 else 481 out << "n" << get(vertex_index, source(*e, g)); 481 out << "n" << get(vertex_index, source(*e, g)); 482 482 out << "\" target=\""; 483 483 if (has_vertex_ids) -
src/graph/layout/graph_arf.cc
r011d7b r311fc5 52 52 python::def("arf_layout", &arf_layout); 53 53 } 54 55
Note: See TracChangeset
for help on using the changeset viewer.


