(defn post-ordered-nodes "Return a sequence of indexes of a post-ordered walk of the graph." [g] (fnext (reduce #(post-ordered-visit g %2 %1) [#{} []] (:nodes g))))
Comments top
No comments for post-ordered-nodes. Log in to add a comment.