28 #ifndef INCLUDE_MAX_FLOW_PGR_COSTFLOWGRAPH_HPP_
29 #define INCLUDE_MAX_FLOW_PGR_COSTFLOWGRAPH_HPP_
32 #include <boost/config.hpp>
33 #include <boost/graph/adjacency_list.hpp>
38 typedef boost::adjacency_list_traits<boost::vecS, boost::vecS, boost::directedS>
40 typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::directedS,
42 boost::property < boost::edge_capacity_t, double,
43 boost::property < boost::edge_residual_capacity_t, double,
44 boost::property < boost::edge_reverse_t,
45 Traits::edge_descriptor,
46 boost::property < boost::edge_weight_t, double>
50 typedef boost::property_map < CostFlowGraph, boost::edge_capacity_t >::type
61 #endif // INCLUDE_MAX_FLOW_PGR_COSTFLOWGRAPH_HPP_