|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Educational examples for k-connected graphs and connectivity analysis. More...
Go to the source code of this file.
Functions | |
| int | main () |
Educational examples for k-connected graphs and connectivity analysis.
A graph is k-connected if it remains connected after removing any k-1 vertices Measures robustness: Higher k = more fault-tolerant network
Minimum number of edges to remove to disconnect graph Computed using maximum flow algorithms
Network reliability, fault tolerance, redundancy analysis Critical for designing robust communication/transportation networks
g++ -std=c++20 -I.. -o tpl_kgraph_example tpl_kgraph_example.cc ./tpl_kgraph_example
Definition in file tpl_kgraph_example.cc.
| int main | ( | ) |
Definition at line 39 of file tpl_kgraph_example.cc.
References Aleph::List_Graph< _Graph_Node, _Graph_Arc >::insert_arc(), Aleph::List_Graph< _Graph_Node, _Graph_Arc >::insert_node(), and Aleph::maps().