----- Original Message -----
From: Jeremy Siek
Actually, the answer is "yes, if you do a little work". The adjacency_list is customizable, you can specify what kind of container it will use to
store
the out-edge lists for each vertex. If you choose a container type that sorts its elements (perhaps std::set or some sorted vector) then you will have what you need. The customization of adjacency_list is through the container_gen traits class. There's a little in the online docs and the book about this. If you get stuck let me know.
Cheers, Jeremy
Thanks Jeremy (and to Craig Hicks). I guess I skimmed the documentation too lightly. I'll go and buy the book. Thanks again, Louis.