Returns, as a sequence of sets, the components of a graph that are
self-recursive.
(defn self-recursive-sets "Returns, as a sequence of sets, the components of a graph that are self-recursive." [g] (filter (partial recursive-component? g) (scc g)))
Comments top
No comments for self-recursive-sets. Log in to add a comment.