Created
January 22, 2017 15:23
-
-
Save deque-blog/74d44be820de76de6df9b4189607f5b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn replace-var | |
[env x] | |
(if (string? x) (get env x x) x)) | |
(defn partial-eval | |
[env e] | |
(walk/postwalk | |
(comp optimize-mul optimize-add #(replace-var env %)) | |
e)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment