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

https://github.com/soroushj/graph-coloring-genetic-algorithm

Graph Coloring + Genetic Algorithm
https://github.com/soroushj/graph-coloring-genetic-algorithm

genetic-algorithm graph-algorithms graph-coloring

Last synced: 12 months ago
JSON representation

Graph Coloring + Genetic Algorithm

Awesome Lists containing this project

README

          

# Graph Coloring + Genetic Algorithm


Graph Coloring

Solve the [graph coloring](https://en.wikipedia.org/wiki/Graph_coloring) problem using a [genetic algorithm](https://en.wikipedia.org/wiki/Genetic_algorithm). [(Hindi and Yampolskiy, 2012)](http://ceur-ws.org/Vol-841/submission_10.pdf)

## Build & Run

Build and run the project using the following command:

```bash
gradle run --args " "
```

For example:

```bash
gradle run --args "samples/david.col 11"
```

Also, you can build the project using the following command:

```bash
gradle build
```