How can I convert my Repast J model to run in Repast Simphony?
A quick summary of the process of converting to Repast J to Repast S: • Create a new Repast Simphony project or add the Repast nature to your existing project(see tutorial). • Strip out all of the Repast J-specific visualization code from your agents (ie extends DefaultDrawableNode). • Pick out the relative information such as scheduling and model parameters from the Repast J main class (ie SimpleModelImpl) and put this in the Repast S ContextBuilder or agent class constructors (where ever you see fit). • Create a scenario/score model. • Create displays, loggers, etc via the Repast S runtime interface. Several of the demos (sugarscape and regression) included with Repast S are direct ports from the Repast J models, so comparing these will provide some additional help on porting models.