Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gurghet/vns

Implementazione di “Variable neighborhood search approaches for scheduling jobs on parallel machines with sequence-dependent setup times, precedence constraints, and ready times”
https://github.com/gurghet/vns

Last synced: 9 days ago
JSON representation

Implementazione di “Variable neighborhood search approaches for scheduling jobs on parallel machines with sequence-dependent setup times, precedence constraints, and ready times”

Awesome Lists containing this project

README

        

vns
===

Implementazione di “Variable neighborhood search approaches for scheduling jobs on parallel machines with sequence-dependent setup times, precedence constraints, and ready times”

Find an initial solution s ;
while maximum runtime not reached do
k ←1;
While k≤kmax do
Shaking:selectarandomsolution x∈Nk(s);
Apply some local search with x as initial
solution, local optimum x′
Move or not:
if solution x′ is better than s then
s ← x′; k ← 1;
else
k ← kmodkmax+1;
End
End