Expand description
Coalition detection on the support graph.
A coalition is a strongly-connected component of the support graph: a set of arguments where every pair mutually supports each other, directly or transitively. Singleton SCCs (arguments with no mutual support) are also returned as coalitions of size 1.
Uses petgraph’s Tarjan SCC implementation, which is O(V + E).
Structs§
- Coalition
- A detected coalition with its member arguments.
Functions§
- detect_
coalitions - Detect all coalitions in a bipolar framework.