Home
last modified time | relevance | path

Searched refs:bad_parallel_edge (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/graph/doc/
Dread_graphml.rst73 struct bad_parallel_edge : public graph_exception {
77 bad_parallel_edge(const std::string&, const std::string&);
78 virtual ~bad_parallel_edge() throw();
107 The ``bad_parallel_edge`` exception is thrown when an attempt to add a
Dread_graphviz.rst79 struct bad_parallel_edge : public graph_exception {
83 bad_parallel_edge(const std::string&, const std::string&);
84 virtual ~bad_parallel_edge() throw();
113 The ``bad_parallel_edge`` exception is thrown when an attempt to add a
/third_party/boost/boost/graph/
Dgraphviz.hpp658 struct BOOST_SYMBOL_VISIBLE bad_parallel_edge : public graph_exception struct
663 bad_parallel_edge(const std::string& i, const std::string& j) in bad_parallel_edge() argument
668 virtual ~bad_parallel_edge() throw() {} in ~bad_parallel_edge() argument
809 boost::throw_exception(bad_parallel_edge(source, target)); in do_add_edge()
/third_party/boost/libs/graph/src/
Dgraphml.cpp245 BOOST_THROW_EXCEPTION(bad_parallel_edge(u, v)); in handle_edge()
/third_party/boost/libs/graph/test/
Dgraphviz_test.cpp296 catch (boost::bad_parallel_edge&)