pub unsafe extern "C" fn SCIPdigraphTopoSortComponents(
digraph: *mut SCIP_DIGRAPH,
) -> SCIP_RETCODEExpand description
Performes an (almost) topological sort on the undirected components of the given directed graph. The undirected components should be computed before using SCIPdigraphComputeUndirectedComponents().
@note In general a topological sort is not unique. Note, that there might be directed cycles, that are randomly broken, which is the reason for having only almost topologically sorted arrays.