Menu
News
- 2025, March : PhD Research Proposal on Mixed-Integer optimisation by combining Reinforcement Learning and Artificial Evolution
This is an old revision of the document!
First of all, to make the development of Android app easier, you have
to install the Eclipse framework. In this environment, you will have to
install the Android SDK to get all the tools.
This two first steps are explained here :
- In French
- In English
Then, you have to download the ECJ library
here
You can find the official ECJ manual
here
When the two first steps are done, we will create a new Android project with eclipse.
- File -> new -> Android application project
- Give a name at your project and let the default configurations.
- In your workspace, your new project should be as shown below :
- Add in the libs folder the ecj.jar file.
- Right click on the project name -> build path -> configure build path...
- Libraries tab -> add external JARs... and select "ecj.jar" in the "libs" folder
- Go on the Order and Export tab -> select "ecj.jar"
- Right click on src -> new -> package
- Name it "assets"
- Right click on this new package -> new -> File
- Name the new file "config_ecj.params" for exemple
Now, to get the all data in "config_ecj.params", we have to create an InputStream.
Add these lines in your code :
InputStream configStream = null;
try {
Context mContext = this;
configStream = mContext.getAssets().open("config_ecj.params");
} catch (IOException e) {
e.printStackTrace();
}
If your configuration file is named "config_ecj.params", located in
the assets package and "this" correspond to the current context of your
application, this code shouldn't cause any problem.
It only remains to transfer the InputStream "configStream" at the ParameterDatabase who's in charge of initializing ECJ.
Here is how to initialize the ParameterDatabase :
ParameterDatabase paramDB = null;
try {
paramDB = new ParameterDatabase(configStream);
}
catch (IOException e) {
e.printStackTrace();
}
EvolutionState evaluatedState = Evolve.initialize(paramDB, 0);
evaluatedState.startFresh();
int result = EvolutionState.R_NOTDONE;
while( result == EvolutionState.R_NOTDONE )
result = evaluatedState.evolve();
If you want to be convinced that your configurations are in the InputStream, you can add this code who's in charge of printing the data in the InputStream on logCat console :
String out = "";
try{
InputStreamReader configStreamReader = new InputStreamReader(configStream);
BufferedReader br = new BufferedReader(configStreamReader);
String ligne = "";
while ( (ligne=br.readLine()) != null) {
out += ligne + "\n";
}
br.close();
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("Out => " + out);
However, ECJ may need a real File to run, and not an InputStream. For example, to initialize a population.
In this part we'll see how to write a file.
As in the previous example you'll need a package named "assets".
Create a file in your workspace named "config_ecj_in.in" (for an initialization file, by example).
After, you'll need the context of you application :
Context mContext = this;Then, you have to load your file on your smartphone :
File file = mContext.getFileStreamPath("config_ecj_in.in");Finaly, you can write into your file thanks to a FileWrite and a BufferedWriter :
FileWriter fileWriter = null;As you can understand, this code write the text "Hello World" into the file "config_ecj_in.in".
try {
fileWriter = new FileWriter(file);
} catch (IOException e1) {
e1.printStackTrace();
}
BufferedWriter output = new BufferedWriter(fileWriter);
try {
output.write("Hello World ! ");
}
output.flush();
catch (Exception e) {
Toast.makeText(mContext, "Settings not saved", Toast.LENGTH_SHORT).show();
}
finally {
try {
output.close();
fileWriter.close();
} catch (IOException e) {
Toast.makeText(mContext, "Settings not saved", Toast.LENGTH_SHORT).show();
}
}
But, as we said before, ECJ may need a file. Or more precisely, the path of this file.
For a population initialization, you give the path of the initialization file to the configuration file.
This path is the following one:
/data/data/name_of_your_current_project/files/config_ecj_in.in.
pop.file = /data/data/name_of_your_current_project/files/config_ecj_in.inNow, if you load "mainConfigFile.params" as show in this example you will also initialize you popullation with "config_ecj_in.in".
Any questions or suggestions ? Contact us !