Skip to content

Latest commit

 

History

History
 
 

main

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

You can run this C2EO here, in a few simple steps:

First, clone this repo to your local machine and go to the main directory (you will need Git installed):

$ git clone https://github.com/polystat/c2eo.git
$ cd c2eo/collection/eo-sources/main

Then, compile the code (you will need Maven 3.3+ and Java SDK 8+ installed):

$ mvn clean compile

Intermediary *.xml files will be generated in the target directory (it will be created). Also, there will be *.java and *.class files. Feel free to analyze them: EO is parsed into XML, then translated to Java, and then compiled by Java SDK to Java bytecode. Finally, just run the bytecode program through JRE:

$ ./run.sh 5
... many lines of code result
run.cmd 5
... many lines of code result

Should work. If it doesn't, submit an issue, we will fix it.