| 367 | */ |
| 368 | template <class Graph> |
| 369 | static inline bool |
| 370 | ambiguous(const typename boost::graph_traits<Graph>::vertex_descriptor& u, |
| 371 | Direction dir, const Graph& g, unsigned trim, unsigned fpTrim) |
| 372 | { |
| 373 | return successor(u, dir, g, trim, fpTrim).second == ER_AMBI_OUT; |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * Return true if the given vertex has more than one possible |
no test coverage detected