vote up 0 vote down star

Lets say I wanted to create some software that models a society. People exist, meet, have children, learn, share experiences etc. Which programming language should I use?

I would assume that a dynamic language that enables me to swap out methods and/or implement types at run-time would reduce the amount of plumbing that i'd otherwise have to create in a statically typed language. Am I correct?

flag

69% accept rate

3 Answers

vote up 1 vote down

In my earlier question I mentioned Repast, Swarm, and MASS as agent-based modeling frameworks. They are useful tools to model societies of agents.

link|flag
Finally a response that gives me something else to look into. TY! :D – Quibblesome Dec 29 '08 at 15:04
The Repast framework (at least version 3 what I was using) has some nice demos on modeling societies like heat bugs, or rabbit populations. – rics Dec 30 '08 at 11:47
vote up 1 vote down

Sounds like ruby. Dynamic, Swap out methods. Here are some of the feature ( from Wikipedia )

  • Object-oriented, "everything is an object"

  • Five levels of variable scope: global, class, instance, local, and block

  • Exception handling

  • Iterators and closures (based on passing blocks of code)

  • Native, Perl-like regular expressions at the language level

  • Operator overloading

  • Automatic garbage collecting

  • Highly portable Cooperative

  • multi-threading on all platforms using green threads

  • DLL/Shared library dynamic loading on most platforms

  • Introspection, reflection and metaprogramming

  • Large standard library

  • Supports dependency injection

  • Supports object runtime alteration

  • Continuations and generators

link|flag
vote up 1 vote down

try designing the interaction model first, then choosing a language. Paper prototypes for feasibility might be instructive as well. If you haven't done the design, it is wildly premature to select the implemenation platform and language.

link|flag
Isn't the design somewhat dependant on the tools one is using? Or do you mean the requirements? – Quibblesome Nov 5 '08 at 16:55
@[Quarrelsome]: the logical design absolutely should not depend on the tools, it should determine the tools to use! The requirements and design will determine the language features that are important. – Steven A. Lowe Nov 5 '08 at 17:00
Oh so you mean the requirements conceptual/high-level design. I apologise, I thought you were referencing the software design. – Quibblesome Nov 5 '08 at 17:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.