Needed to compute max flow in a project and found the official document of BGL to be rather obscure, hence record some materials which I think can help to understand this library a little better:tcp
This is the official book of boost. The explanation is clear and elaborate. Very good introduction, but the version of boost seems a little bit old and it does not cover flow computing:wordpress
https://theboostcpplibraries.com/boost.graph-vertices-and-edgesui
This IBM tutorial can serve as a supplement of the above official introduction:this
https://www.ibm.com/developerworks/aix/library/au-aix-boost-graph/spa
Other than the examples in boost documents, I found this piece of codes especially helpful for building a flow network:code
https://www.boost.org/doc/libs/1_69_0/boost/graph/read_dimacs.hppip
This seems to be just the compilation of all examples in boost documents, a little helpful anyway:ci
https://www.technical-recipes.com/2015/getting-started-with-the-boost-graph-library/get
The following should be an in-depth explanation of the libary, however, I haven't read any:it
https://markqiu.files.wordpress.com/2009/12/boost-graph-library.pdf
Of course, the boost document should serve as another in-depth explanation :-)