https://github.com/lspector/Clojush
Raw File
Tip revision: d7363982f65644aba4ca4d6d4fa2c13c13695f0f authored by Lee Spector on 30 July 2013, 01:02:43 UTC
Version bump.
Tip revision: d736398
project.clj
(defproject lspector/clojush "1.3.21"
            :description "The Push programming language and the PushGP genetic
                          programming system implemented in Clojure.
                          See http://hampshire.edu/lspector/push.html"
            :dependencies [[org.clojure/clojure "1.5.1"]
                           [org.clojars.etosch/cosmos "1.0.0"]
                           [org.clojure/math.numeric-tower "0.0.1"]
                           [local-file "0.1.0"]
                           [clojure-csv "2.0.0-alpha2"]
                           [org.clojure/data.json "0.1.3"]]
            :dev-dependencies [[lein-ccw "1.2.0"]]
            ;; the following, or a variant, may be helpful on big machines
            ;:jvm-opts ["-Xmx58g" "-Xms58g" "-XX:+UseParallelGC"]
            :main clojush.core)
back to top