MASON-INTEREST-L Archives

June 2008

MASON-INTEREST-L@LISTSERV.GMU.EDU

Options: Use Monospaced Font
Show Text Part by Default
Condense Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Sender:
MASON Multiagent Simulation Toolkit <[log in to unmask]>
Date:
Thu, 26 Jun 2008 23:02:34 -0400
MIME-version:
1.0 (Apple Message framework v753.1)
Reply-To:
MASON Multiagent Simulation Toolkit <[log in to unmask]>
Content-type:
text/plain; charset=US-ASCII; delsp=yes; format=flowed
Subject:
From:
Sean Luke <[log in to unmask]>
In-Reply-To:
Content-transfer-encoding:
7bit
Comments:
To: MASON Multiagent Simulation Toolkit <[log in to unmask]>
Parts/Attachments:
text/plain (23 lines)
I forgot to add this:

You're going to need to perform the split outside of a step() method,  
because there may be several things on the stack ready to go, and  
stacks won't serialize or clone of course.  Instead, the split will  
have to happen in the outer loop which pulses the schedule itself.   
This may put a bit of a kink in your style in terms of building your  
model -- and you'll have to handle the split-test code manually.

Assuming you could reset your simulation state, another possible  
approach would be to create subschedules.  The idea would be this.   
An agent, during its step() method, decides the simulation needs to  
be split for a while.  The agent copies away the current simulation  
state, or whatever is necessary, storing the copy as a local  
variable.  Then it creates a MASON schedule (we'd have to make sure  
everything works nicely there but it should), loads it with agents,  
and runs it.  Then it destroys the schedule , copies back from the  
local variable, creates another MASON schedule, loads it with agents,  
and runs *it*, and so on.  When done branching, we copy back from the  
local variable and return from the step() method maybe.

Sean

ATOM RSS1 RSS2