-
Hugo Roussel authored
* Converted to Maven project Removed unused projects AMAK and AMOEBA3 Renamed amak_fx to AMAKFX Converted AMOEBAonAMAK and AMAKFX to Maven project Created parent project AMOEBA-parent, with AMAKFX and AMOEBAonAMAK as modules Update READMEs
Hugo Roussel authored* Converted to Maven project Removed unused projects AMAK and AMOEBA3 Renamed amak_fx to AMAKFX Converted AMOEBAonAMAK and AMAKFX to Maven project Created parent project AMOEBA-parent, with AMAKFX and AMOEBAonAMAK as modules Update READMEs
README.md 606 B
AMOEBA on AMAK
An AMOEBA3 port on AMAK.
Quick start
// Create a world and a studied system for your amoeba
World world = new World();
StudiedSystem studiedSystem = new F_XY_System(50.0);
AMOEBA amoeba = new AMOEBA(world, studiedSystem);
// Create a backup system for the amoeba
IBackupSystem backupSystem = new BackupSystem(amoeba);
// Load a configuration matching the studied system
File file = new File("resources\\twoDimensionsLauncher.xml");
backupSystem.loadXML(file);
// The amoeba is ready to be used
You can find a more complete exemple at experiment.Main.java
.