How come the order of the reducing operations in the resulting diagrams 
below is different?

Basically I want to call the first reducing operation after the first 1 and 
then the second operation when it accepts.

This is with [org.clojars.semperos/automat "0.2.0-alpha3"]

(ns p.core
  (:require [automat.core :as a])
  (:require [automat.viz :refer (save)]))

(def foo [1 (a/$ :start) (a/* 1) (a/$ :end)])
(def bar [1 (a/$ :i1)    (a/* 1) (a/$ :i2) ])

(save (a/compile foo) "foo.png")
(save (a/compile bar) "bar.png")


-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to