Skip to content
Snippets Groups Projects
Commit ea2bde72 authored by Hugo Roussel's avatar Hugo Roussel
Browse files

Updated README

parent 905dc610
No related tags found
2 merge requests!3Merge masters,!2Merge dev into develop
# AMOEBA on AMAK
An AMOEBA3 port on AMAK.
## Quick start
```Java
// 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`.
\ No newline at end of file
# AMAKFX and AMOEBAonAMAK
Tested with openjdk 11.
Tested with OpenJDK 11, should work with Java 8.
## Build Jar with dependencies
Check [the documentation directory](documentation) for more detailed and in depth instruction and explanation.
Check AMAKFX's [README](AMAKFX/README.md) for more detail on how to use it.
# Quick start :
## Maven build Jar with dependencies
`mvn clean compile assembly:single`
Note that the resulting jars are not platform independant.
Note that the resulting jars are not platform independent.
## Use with Eclipse
Clone this repo and import it as a Maven project.
......@@ -16,5 +21,13 @@ AMOEBA-parent
| AMAKFX
| AMOEBAonAMAK
```
For more detail on [AMOEBAonAMAK](AMOEBAonAMAK/README.md) or [AMAKFX](AMAKFX/README.md), check their respective README.
Check AMAKFX's [README](AMAKFX/README.md) for more detail on how to use it.
Check [the documentation directory](documentation) for more detailed and in depth instruction and explanation on AMOEBA.
### Amoeba Quick start
```Java
StudiedSystem studiedSystem = new F_XY_System(50.0);
AMOEBA amoeba = new AMOEBA("resources/twoDimensionsLauncher.xml", studiedSystem);
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment