|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
K-connected graph structures and connectivity algorithms. More...
Go to the source code of this file.
Classes | |
| class | Aleph::Edge_Connectivity< GT, Max_Flow > |
| Functor wrapper for edge_connectivity(). More... | |
| class | Aleph::Compute_Min_Cut< GT, Max_Flow, SA > |
| Functor wrapper for compute_min_cut(). More... | |
Namespaces | |
| namespace | Aleph |
| Main namespace for Aleph-w library functions. | |
Functions | |
| template<class GT , template< class > class Max_Flow = Random_Preflow_Maximum_Flow, class SA = Dft_Show_Arc<GT>> | |
| long | Aleph::edge_connectivity (GT &g) |
| Compute edge connectivity (arc connectivity) of an undirected graph. | |
| template<class GT , template< class > class Max_Flow = Heap_Preflow_Maximum_Flow, class SA = Dft_Show_Arc<GT>> | |
| long | Aleph::compute_min_cut (GT &g, DynSetTree< typename GT::Node * > &l, DynSetTree< typename GT::Node * > &r, DynDlist< typename GT::Arc * > &cut) |
| Compute a minimum edge cut of an undirected graph. | |
| template<class GT , template< class > class Max_Flow = Random_Preflow_Maximum_Flow, class SA = Dft_Show_Arc<GT>> | |
| long | Aleph::vertex_connectivity (GT &g) |
| Compute vertex connectivity of an undirected graph. | |
K-connected graph structures and connectivity algorithms.
Definition in file tpl_kgraph.H.