27 #ifndef INCLUDE_MAX_FLOW_PGR_FLOWGRAPH_HPP_
28 #define INCLUDE_MAX_FLOW_PGR_FLOWGRAPH_HPP_
31 #include <boost/config.hpp>
32 #include <boost/graph/adjacency_list.hpp>
37 typedef boost::adjacency_list_traits<boost::vecS, boost::vecS, boost::directedS>
39 typedef boost::adjacency_list<boost::listS, boost::vecS, boost::directedS,
41 boost::property<boost::vertex_index_t, int64_t,
42 boost::property<boost::vertex_color_t, boost::default_color_type,
43 boost::property<boost::vertex_distance_t, int64_t,
44 boost::property<boost::vertex_predecessor_t, Traits::edge_descriptor>
47 boost::property<boost::edge_capacity_t, int64_t,
48 boost::property<boost::edge_residual_capacity_t, int64_t,
49 boost::property<boost::edge_reverse_t, Traits::edge_descriptor> > > >
54 #endif // INCLUDE_MAX_FLOW_PGR_FLOWGRAPH_HPP_