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
- Host: GitHub
- URL: https://github.com/soroushj/graph-coloring-genetic-algorithm
- Owner: soroushj
- License: mit
- Created: 2018-09-03T21:39:17.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-15T05:47:57.000Z (over 7 years ago)
- Last Synced: 2025-04-08T11:51:34.788Z (over 1 year ago)
- Topics: genetic-algorithm, graph-algorithms, graph-coloring
- Language: Java
- Size: 298 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Graph Coloring + Genetic Algorithm
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
```