(defn recursive-component? "Is the component (recieved from scc) self recursive?" [g ns] (or (> (count ns) 1) (let [n (first ns)] (some #(= % n) (get-neighbors g n)))))
Comments top
No comments for recursive-component?. Log in to add a comment.