Thanks, Doug,
 
The reverse_graph class template in the BGL is a reversed *view* of the
existing graph.
 
So I have to build the "real" reversed graph by myself, or change the "original" graph to build up the reversed graph. The reason is that I want to use such reversed instance to get the dominator tree.
 
Jiangfan