48 #ifndef OGDF_BC_TREE_H
49 #define OGDF_BC_TREE_H
329 void initNotConnected (
node vG);
347 virtual node parent (
node vB)
const;
367 BCTree (
Graph& G,
bool callInitConnected =
false) : m_G(G), m_eStack(G.numberOfEdges()) {
368 if (!callInitConnected)
381 BCTree (
Graph& G,
node vG,
bool callInitConnected =
false) : m_G(G), m_eStack(G.numberOfEdges()) {
382 if (!callInitConnected)
384 else initNotConnected(vG);