(defn add-cells "Given a collection of cells, add them to the dataflow." [df cells] (dosync (let [new-cells (union (set cells) (:cells @df))] (ref-set df (build-dataflow* new-cells)) (initialize df))))
Comments top
No comments for add-cells. Log in to add a comment.