Re: Java Agent Based Modeling Systems and Clojure

2015-01-28 Thread Mars0i
Fred, This is an old thread, but did you end up using Repast, Mason, or another Java library with Clojure? I've been doing agent-based modeling in NetLogo and pure Clojure separately, but would be interested in exploring a more integrated approach. I have written a proof-of-concept NetLogo

Re: Java Agent Based Modeling Systems and Clojure

2011-02-23 Thread bOR_
I've been programming agent-based models in clojure for the last 2 years, and I've found that having a vector full of refs works fine. If two individuals interact (in my case, form a relationship), I use dosync and alter in a parallel environment to ensure that noone is starting more relationsh

Re: Java Agent Based Modeling Systems and Clojure

2011-02-18 Thread Stuart Sierra
I don't know much about Agent-Based Modeling, but is it possible you could use Clojure's built-in features, like Agents and Refs, for your application? The old "ants" demo in Clojure is a simple agent-based simulation. -Stuart Sierra clojure.com -- You received this message because you are su

Re: Java Agent Based Modeling Systems and Clojure

2011-02-17 Thread ky...@brandeis.edu
Hi Fred, I've just finished prototyping clj-breve (http://spiderland.org/) everything works but the integration isn't as elegant as I would like, hence why I haven't released it yet. The current paradigm for using clj-breve is to develop models in Clojure then export to breve. More details when I

Java Agent Based Modeling Systems and Clojure

2011-02-16 Thread Fred Concklin
Hi, I've been surveying some agent based modeling systems for use in a project I am doing in clojure. I've narrowed down the list to those below. I am wondering if anybody here has experience with these or has any thoughts about choosing one over the other for use with clojure. I will probably wr