Revision 3aec225c5305ccda37b2640b091e8280dc321b5a authored by Romain Reuillon on 06 November 2015, 23:03:44 UTC, committed by Romain Reuillon on 06 November 2015, 23:03:44 UTC
1 parent 80c4c63
Raw File
README.md
MGO
===

MGO is a scala library based on the cake pattern for multi-objective evolutionary / genetic algorithms:
* enforcing immutability,
* exposes a modular and extensible architecture,
* implements state of the art algorithms,
* take advantage of multi-core architectures.

MGO implements NGSAII, SMSEMOEA, CMAES and other diversity based evolutionary algorithms.

Licence
-------

MGO is licenced under the GNU Affero GPLv3 software licence. 

Example
-------

Define a problem, for instance ZDT4:

```scala

MGO is being refactored

```

Define the optimisation algorithm, for instance NSGAII:

```scala

MGO is being refactored

```

Run the optimisation:

```scala

MGO is being refactored

```

For more examples, have a look at the main/scala/fr/iscpif/mgo/test directory in the repository.
  
SBT dependency
----------------

    libraryDependencies += "fr.iscpif" %% "mgo" % "version"

back to top