Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 1.33 KB

README.md

File metadata and controls

31 lines (16 loc) · 1.33 KB

#JennWord

This code holds Miguel and Dan's entry to the World in a Word 64-Bit Design challenge.

The challenge website provides a Java framework and requires that applicants implement a new domain by extending and implementing the classes

Domain.java
Individual.java

These implementatioins can be found in the jenn package.

An ant buildfile has been supplied to aid with building and executing the code. To do this, call ant run from the JennWord directory. Note that the code provided for this entry relies on C++ code for visualisation (Jenn3d) and Grammatical Evolution. This code is provided in the GEMapJenn sub-folder of this repository.

###Important The C++ source code of the combined Jenn3d+GE mapper must be compiled first before running the ant target.

To do so, run:

make 

or

make -f makefile.mac (if in a Mac environment) 

from GEMapJenn directory.

Installations of libpng and freeglut3 libraries are required for the build to succeed. In a Mac environment, a recent installation of XCode is required.

This software has not been tested in a Windows environment.