Revision 21e9738835cb05b74aa154a00e0a27f9e3b1729d authored by Romain Reuillon on 02 January 2016, 19:07:42 UTC, committed by Romain Reuillon on 02 January 2016, 19:07:42 UTC
1 parent 9e9ad67
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