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
[Single machine scheduling problem with sequence-dependent setup times, total weighted tardiness](include/localsearchsolver/examples/scheduling_with_sdst_twt.hpp)
87
+
[Single machine scheduling problem with sequence-dependent setup times, total weighted tardiness](examples/sequencing/scheduling_with_sdst_twt_main.cpp)
88
88
89
-
[Permutation flow shop scheduling problem, total completion time](include/localsearchsolver/examples/permutation_flowshop_scheduling_tct.hpp)
89
+
[Permutation flow shop scheduling problem, total completion time](examples/sequencing/permutation_flowshop_scheduling_tct_main.cpp)
90
90
91
-
[Permutation flow shop scheduling problem, total tardiness](include/localsearchsolver/examples/permutation_flowshop_scheduling_tt.hpp)
91
+
[Permutation flow shop scheduling problem, total tardiness](examples/sequencing/permutation_flowshop_scheduling_tt_main.cpp)
92
92
93
93
#### Single sub-sequence
94
94
95
-
[Single machine order acceptance and scheduling problem with time windows and sequence-dependent setup times, total weighted tardiness](include/localsearchsolver/examples/order_acceptance_and_scheduling.hpp)
95
+
[Single machine order acceptance and scheduling problem with time windows and sequence-dependent setup times, total weighted tardiness](examples/sequencing/order_acceptance_and_scheduling_main.cpp)
* This one is not considered as a sequencing problem since the dedicated acceleration strategy makes it possible to explore the neighborhoods more efficiently
160
160
* Algorithm:
161
161
* Local search neighborhood: move a block of `k` consecutive jobs, `k = 1..4`
162
162
* Perturbation: swap two blocks (double-bridge)
163
163
164
-
[Maximum-weight independent set problem](https://github.com/fontanf/stablesolver/blob/master/stablesolver/stable/algorithms/local_search.cpp) and [maximum-weight clique problem](https://github.com/fontanf/stablesolver/blob/master/stablesolver/clique/algorithms/local_search.cpp) from [fontanf/stablesolver](https://github.com/fontanf/stablesolver)
164
+
[Maximum-weight independent set problem](https://github.com/fontanf/stablesolver/blob/master/src/stable/algorithms/local_search.cpp) and [maximum-weight clique problem](https://github.com/fontanf/stablesolver/blob/master/src/clique/algorithms/local_search.cpp) from [fontanf/stablesolver](https://github.com/fontanf/stablesolver)
165
165
* Algorithm:
166
166
* Local search neighborhoods:
167
167
* Move vertex `v` in/out of the solution (and remove conflicting vertices)
0 commit comments