$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] boost graph in_edges
From: Peter Neher (pneher_at_[hidden])
Date: 2011-04-20 07:40:43
hi,
i'm using the boost graph library and i'm trying to find the incident 
edges of one vertex of the following graph:
|    typedef boost::adjacency_list<
         boost::vecS,                //  The container used for egdes
         boost::vecS,                //  The container used for vertices
         boost::bidirectionalS,      //  bidirectional edges
         Vertex,                     //  The type that describes a Vertex.
         Edge                        //  The type that describes an Edge
 > Graph;|
if i try to find the incident edges now, the message "Interpolation 
failed" is printed. any suggestions?
here the code to find the incident edges:
|Graph::in_edge_iterator edgeIt, edgeEnd;
    tie(edgeIt, edgeEnd) = in_edges(vID, m_Graph);|
thanks in advance,
peter