First I looked in graph/test.
Most times int is used there, only once std::size_t:
property< edge_index_t, int >
Next I looked into graph/example, same picture there.
Ok, I read that example and test might contain stuff that
would not go into BGL code.
So I looked into graph/include/boost/graph:
pi@raspberrypi5:~/graph/include/boost/graph $ grep edge_index_t *.hpp |
grep size_t
directed_graph.hpp: typedef std::size_t edge_index_type;
undirected_graph.hpp: typedef std::size_t edge_index_type;
pi@raspberrypi5:~/graph/include/boost/graph $ grep edge_index_t *.hpp |
grep unsigned
directed_graph.hpp: typedef property< edge_index_t, unsigned,
edge_property_type >
undirected_graph.hpp: typedef property< edge_index_t, unsigned,
edge_property_type >
pi@raspberrypi5:~/graph/include/boost/graph $ grep edge_index_t *.hpp |
grep int
graphviz.hpp: property