|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Thread
jas.engine.MultiRun
public abstract class MultiRun
MultiRun is a template abstract class useful to guide the
modeller to build an automatic simulation launcher,
able to change interactively parameters on the basis
of the last run.
The best way to understand hot it works is to see the
MultiRun example in the JAS/examples directory.
The key methods of multi run are startModel() and
nextModel(). The first one must create the simulation
model(s), set its(their) parameters a vector containing them.
The jas engine will attach the returning list of model
and execute the simulation. When the SIMULATION_END signal
is sent to Sim.engine the multi run will execute the nextModel()
method. Here user can observe the result of the last run and
decide which parameters to use at next run.
If method returns true another simulation run will be executed and
the startModel() method will be called again, otherwise
the progam will exit.
Title: JAS
Description: Java Agent-based Simulation library
Copyright: Copyright (C) 2002 Michele Sonnessa
Company:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.lang.Thread |
---|
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler |
Field Summary |
---|
Fields inherited from class java.lang.Thread |
---|
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY |
Constructor Summary | |
---|---|
MultiRun(java.lang.String title,
int maxRuns)
Create a new multi run session. |
Method Summary | |
---|---|
void |
go()
The go method starts the multi-run simulation. |
abstract boolean |
nextModel()
When a SIMULATION_END signal is sent to JAS by one of the running models, simulation is stopped and this method is called. |
void |
raisedEvent(int actionType)
Implementing the ISimEngineListener. |
void |
run()
MultiRun is an independent thread. |
abstract ISimModel[] |
startModel()
This method is called each time a simulation is started. |
Methods inherited from class java.lang.Thread |
---|
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public MultiRun(java.lang.String title, int maxRuns)
title
- is the title of the multi run control panel (see MultiRunFrame API).maxRuns
- is the length of the progress bar. It is not so important. It has only
a simbolic meaning.Method Detail |
---|
public void go()
public abstract boolean nextModel()
public void raisedEvent(int actionType)
raisedEvent
in interface ISimEngineListener
actionType
- a valid system eventID.public void run()
run
in interface java.lang.Runnable
run
in class java.lang.Thread
public abstract ISimModel[] startModel()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |