id summary reporter owner description type status milestone component version severity resolution keywords cc 3016 kolmogorov_max_flow() example does not compile kigurai@… Jeremiah Willcock "The current documentation (version 1.39.0) for kolmogorov_max_flow gives an example where the function is called as: flow = kolmogorov_max_flow(g, s, t); But there is no function that accepts that kind of parameters, and when I tried to compile it spat out a load of compile errors. I solved it by chaning/adding the following: // We need a ""IndexMap"" for the graph property_map::type index_map = get(vertex_index, g); flow = kolmogorov_max_flow(g, capacity, residual_capacity, rev, index_map, s, t);" Bugs closed Boost 1.40.0 graph Boost 1.38.0 Problem worksforme