HI, All,
 
I could not get a instance of reversed graph by calling make_reverse_graph(g).
 
That is, I have following type:

 typedef adjacency_list<
    listS,
    listS,
    bidirectionalS,   
   property<vertex_index_t, std::size_t>, no_property> G;

typedef reverse_graph<G, G&> ReverseG; //Maybe something wrong here.

After I call make_revserse_graph(G) as following, I could not get a instance of modified graph by accessing some fields of ReverseG.

ReverseG tmp=boost::make_reverse_graph(g);  //I try to get the reservsed graph here.

The only field is tmp.m_g, which is G& type and the original graph, but is not the reversed graph.

Thanks.

Jiangfan