[[NetworkX]]にグラフのFlow Hierarchy [flow_hierarchy — NetworkX 2.7.1 documentation](https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.hierarchy.flow_hierarchy.html#:~:text=Flow%20hierarchy%20is%20defined%20as,a%20directed%20graph%20%5B1%5D.&text=Attribute%20to%20use%20for%20node,the%20weight%20defaults%20to%201.&text=The%20algorithm%20described%20in%20%5B1,exponentiation%20of%20the%20adjacency%20matrix.) > 1]に記載されているアルゴリズムは、隣接行列の指数化によってフロー階層を計算する。この関数は,強連結成分を求める別のアプローチを実装している.エッジがサイクルに含まれるのは,それが強連結成分に含まれる場合のみであり,それはTarjanのアルゴリズムを用いて$O(m)$時間内に見つけることができる. - [[2010__Complexity__Detecting Evolving Patterns of Self-Organizing Networks by Flow Hierarchy Measurement]] の論文で提案されている指標。