An open API service indexing awesome lists of open source software.

https://github.com/soarez/nqueens-java

NQueens GA implementation in Java
https://github.com/soarez/nqueens-java

Last synced: about 1 month ago
JSON representation

NQueens GA implementation in Java

Awesome Lists containing this project

README

          

# NQueens GA implementation

Using [Cycle Crossover](http://en.wikipedia.org/wiki/Crossover_(genetic_algorithm))

Usage:

```
javac NQueens.java && java NQueens 8 20
```

Where 8 is the board size and 20 is the number of generations to run.