Searched refs:bad_graph (Results 1 – 5 of 5) sorted by relevance
19 struct BOOST_SYMBOL_VISIBLE bad_graph : public std::invalid_argument struct21 bad_graph(const std::string& what_arg) : std::invalid_argument(what_arg) {} in bad_graph() function24 struct BOOST_SYMBOL_VISIBLE not_a_dag : public bad_graph26 not_a_dag() : bad_graph("The graph must be a DAG.") {} in not_a_dag()29 struct BOOST_SYMBOL_VISIBLE negative_edge : public bad_graph32 : bad_graph("The graph may not contain an edge with negative weight.") in negative_edge()37 struct BOOST_SYMBOL_VISIBLE negative_cycle : public bad_graph39 negative_cycle() : bad_graph("The graph may not contain negative cycles.") in negative_cycle()44 struct BOOST_SYMBOL_VISIBLE not_connected : public bad_graph46 not_connected() : bad_graph("The graph must be connected.") {} in not_connected()[all …]
239 throw boost::bad_graph( in stoer_wagner_min_cut()
243 throw boost::bad_graph( in maximum_adjacency_search()
283 catch (const bad_graph& e) in main()326 catch (const bad_graph& e) in main()
90 boost::bad_graph); in BOOST_AUTO_TEST_CASE()