Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lmarti/pynsgaiii
Browse files Browse the repository at this point in the history
* 'master' of https://github.com/lmarti/pynsgaiii:
  adding support for python 2 division
  correcting typo
  • Loading branch information
lmarti committed Jul 18, 2016
2 parents 46395c7 + 5803f65 commit 81fc5ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This code is highly experimental. Contributions and bug fixes are welcome.

## Installation

So far, the only form of installation is to checkout the project from GitHub,
So far, the only form of installation is to clone the project from GitHub,

```bash
git clone https://github.com/lmarti/nsgaiii.git
Expand Down
1 change: 1 addition & 0 deletions nsgaiii/selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#
# by Luis Marti (IC/UFF) http://lmarti.com

from __future__ import division # making it work with Python 2.x
import copy,random
import numpy as np
from deap import tools
Expand Down

0 comments on commit 81fc5ec

Please sign in to comment.