MelDashti / CI2024_lab1

First Lab - Set Cover
0 stars 0 forks source link

Comment #2

Open mericuluca opened 2 days ago

mericuluca commented 2 days ago

Nice solution, it is very good suitable for this problem. The tabu search buffer can be really computationally expensive. To improve the performance for the instances with many iterations, limiting the tabu size can be beneficial because it consumes time to search in large list. Also, limiting the tabu size will not decrease the performance a lot because it probably retry the recent solutions. Overall, it is a nice solution.