You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Permutation Flow Shop Scheduling Problem by Heuristic and Metaheuristic Algorithm
optimization.cpp: main code
plot.py: main code for drawing the Gantt chart
paper.pdf: report for the project
flowshop-test-10-students.txt: given data for the problem
test.txt: best results for each of the case in flowshop-test-10-students.txt
Project introduction
Solved the problem by Hill Climbing, Simulated Annealing (SA), NEH heuristic algorithm and Ant Clony Optimization (ACO); calculated the time cost of scheduling by Dynamic Programming.
Modified the model to achieve better performance of SA.
Improved the result of ACO based on the information of NEH heuristic algorithm.