Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomtom828/simulated-annealing
Tutorial on Simulated Annealing. Trying to better understand its implementation in code.
https://github.com/tomtom828/simulated-annealing
java maven simulated-annealing
Last synced: 1 day ago
JSON representation
Tutorial on Simulated Annealing. Trying to better understand its implementation in code.
- Host: GitHub
- URL: https://github.com/tomtom828/simulated-annealing
- Owner: tomtom828
- Created: 2017-12-10T00:25:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-10T02:39:28.000Z (almost 7 years ago)
- Last Synced: 2024-01-22T13:10:48.400Z (10 months ago)
- Topics: java, maven, simulated-annealing
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simulated Annealing
Tutorial on Simulated Annealing; trying to better understand its implementation in code.### Cloning Down the Repo
Using [Maven](https://maven.apache.org/), run `mvn compile` to compile class files.
Use `java -cp target/classes sa.SimulatedAnnealing` to run the compiled files.
This can also be packaged into a JAR file using `mvn package`.
Once packaged, use `java -jar target/annealing-script-1.0.jar` to run the file.
### Tutorial
http://www.theprojectspot.com/tutorial-post/simulated-annealing-algorithm-for-beginners/6