Switched from Ant to Maven.

Usage: 

- Install Maven 3.x
- Enter directory with pom.xml
- Type mvn compile
- Enjoy!
This commit is contained in:
2012-05-28 21:23:12 +00:00
parent 5171371a8e
commit b1553f3088
46 changed files with 592 additions and 131 deletions

17
resources/html/GO.html Normal file
View File

@@ -0,0 +1,17 @@
<html>
<head>
<title>EvA2 Genetic Optimization</title>
</head>
<body>
<h1 align="center">The EvA2 Genetic Optimization Module</h1>
<br>
The Genetic Optimization module allows the application of a variety of
nature-inspired heuristics within one framework. You can combine several
datatypes as representations with specific evolutionary operators and
widely independently choose an optimization strategy. Some strategies,
however, only work with certain datatypes. Most remarkably, DE and PSO
require a real-valued representations for the moment, whereas GA, for example,
is typically run with a binary datatype but also works on real valued individuals
by just accessing the analoguous evolutionary operators.
</body>
</html>