Have you tried wrapping recursive calls with lazy-seq? (defn brute-force "..." ([...] ...) ([check-pred possibilities] (lazy-seq (apply brute-force 4 check-pred possibilities)))) Here's a token-types rewrite (def token-types (let [-chars #(map char (range (int %1) (-> %2 int inc)))] {:numbers (-chars \0 \9) :letters {:upper (-chars \A \Z) :lower (-chars \a \z)}
:punctuation (seq ".,?!-") :arithmetic (seq "+-*/%="
)
:fancy (seq "@#$^&()~")}))
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@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+u...@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+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
If there was a Clojure -> LLVM -> CUDA pipeline... Sorry just thinking about possibilities