Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lspector committed Jun 21, 2021
1 parent 0ef4860 commit 6fa7bae
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 93 deletions.
90 changes: 9 additions & 81 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,82 +1,10 @@

bin/pucks/agents/bondevolver.clj

bin/pucks/agents/chest.clj

bin/pucks/agents/darter.clj

bin/pucks/agents/donor.clj

bin/pucks/agents/gate.clj

bin/pucks/agents/mapdonor.clj

bin/pucks/agents/opener.clj

bin/pucks/agents/shooter.clj

bin/pucks/agents/spawner.clj

bin/pucks/agents/swarmevolver.clj

bin/pucks/agents/torpedo.clj

bin/pucks/core.clj

bin/pucks/draw.clj

bin/pucks/neighbors.clj

bin/pucks/physics.clj

bin/pucks/reap.clj

bin/pucks/worlds/ai/world2.clj

bin/pucks/worlds/ai/world3.clj

bin/pucks/worlds/ai/world4.clj

bin/pucks/worlds/ai/world5.clj

bin/pucks/worlds/ai/world6.clj

bin/pucks/worlds/ai/world7.clj

bin/pucks/worlds/ai/world8.clj

bin/pucks/worlds/dev/world10.clj

bin/pucks/worlds/dev/world11.clj

bin/pucks/worlds/dev/world12.clj

bin/pucks/worlds/dev/world13.clj

bin/pucks/worlds/dev/world14.clj

bin/pucks/worlds/dev/world15.clj

bin/pucks/worlds/dev/world16.clj

bin/pucks/worlds/dev/world17.clj

bin/pucks/worlds/dev/world18.clj

bin/pucks/worlds/dev/world19.clj

bin/pucks/worlds/dev/world20.clj

bin/pucks/worlds/dev/world6.clj

bin/pucks/worlds/dev/world7.clj

bin/pucks/worlds/dev/world8.clj

bin/pucks/worlds/dev/world9.clj

target/base+system+user+dev/classes/META-INF/maven/pucks/pucks/pom.properties

target/base+system+user+dev/classes/META-INF/maven/pucks/pucks/pom.properties

target/
bin/
*.iml
*.jar
*.class
/.lein-*
/.nrepl-port
.idea/
*.dependencies
*~
1 change: 0 additions & 1 deletion bin/.gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "https://github.com/lspector/pucks"}
:dependencies [[org.clojure/clojure "1.7.0"]
[quil "2.4.0"]
:dependencies [[org.clojure/clojure "1.10.1"]
[quil "4.0.0-SNAPSHOT"]
[clojush "2.8.0"]]
:main pucks.core
:target-path "target/%s"
Expand Down
14 changes: 7 additions & 7 deletions src/pucks/worlds/dev/world23.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:use [pucks core globals]
[pucks.agents stone vent nursery zapper pusher linear shooter startstop zigzag]))

(defn horizontal-wall [[x-min x-max] y]
(defn horizontal-wall [[x-min x-max] y]
(for [x (range x-min x-max 20)]
(merge (stone) {:position [x y]})))

Expand All @@ -16,15 +16,15 @@
(assoc (vent) :position [500 100] :solid false)
(assoc (vent) :position [100 500] :solid false)
(assoc (vent) :position [266 466] :solid false)
(assoc (vent) :position [466 266] :solid false)]
(assoc (vent) :position [466 266] :solid false)])

(defn settings []
{:screen-size 600
:scale 1.0
{:screen-size 600
:scale 1.0
:single-thread-mode false
:nursery-threshold 1000
:neighborhood-size 150
:cost-of-collision 0.01
:nursery-threshold 1000
:neighborhood-size 150
:cost-of-collision 0.01
})

;(run-pucks (agents) (settings))
Original file line number Diff line number Diff line change
@@ -1 +1 @@
([:dependencies ([cider/cider-nrepl "0.8.1"] [org.clojure/clojure "1.7.0"] [quil/quil "2.4.0"] [clojush/clojush "2.8.0"] [org.clojure/tools.nrepl "0.2.10" :exclusions ([org.clojure/clojure])] [clojure-complete/clojure-complete "0.2.3" :exclusions ([org.clojure/clojure])])])
([:dependencies ([cider/cider-nrepl "0.9.1"] [org.clojure/clojure "1.7.0"] [quil/quil "2.4.0"] [clojush/clojush "2.8.0"] [org.clojure/tools.nrepl "0.2.6" :exclusions ([org.clojure/clojure]) :scope "test"] [clojure-complete/clojure-complete "0.2.3" :exclusions ([org.clojure/clojure]) :scope "test"])])
2 changes: 1 addition & 1 deletion target/stale/extract-native.dependencies
Original file line number Diff line number Diff line change
@@ -1 +1 @@
([:dependencies ([org.clojure/clojure "1.6.0"] [quil/quil "2.2.2"] [org.clojure/tools.nrepl "0.2.3" :exclusions ([org.clojure/clojure])] [clojure-complete/clojure-complete "0.2.3" :exclusions ([org.clojure/clojure])])])
([:dependencies ([org.clojure/clojure "1.7.0"] [quil/quil "2.4.0"] [clojush/clojush "2.8.0"] [org.clojure/tools.nrepl "0.2.3" :exclusions ([org.clojure/clojure])] [clojure-complete/clojure-complete "0.2.3" :exclusions ([org.clojure/clojure])])])

0 comments on commit 6fa7bae

Please sign in to comment.