Simulated annealing for optimization

7 views (last 30 days)
Kernel7364
Kernel7364 on 22 May 2019
Commented: Walter Roberson on 23 May 2019
Hello everyone,
i have a question to simulated annealing. I want to use it to solve a quadratic asignment problem (QAP) because it is very large and it takes to long to solve it with an exact algorithm. Is it possible to solve a QAP with simulated annealing ?
And how can I solve it with constraints like or . I can just give the algorithm a start value and a lower bound / upper bound.
Can please someone help me ?
Best regards !

Answers (1)

Walter Roberson
Walter Roberson on 22 May 2019
Generally speaking, simulated annealing can be used to solve QAP, but it would likely be much much slower than a routine designed for solving QAP.
simulannealbnd supports bounds constraints, but no other kinds of constraints, and it does not support anything like event functions that might provide constraints. You would therefore need to code the constraints as a penalty, which is always risky because the routines do not know to avoid penalty areas.
Simulated Annealing is a slow process. You would probably be better off with patternsearch()
  4 Comments
Kernel7364
Kernel7364 on 23 May 2019
Thank you so much for your quick response again.
Your advices are really helpful for me. I will try different heuristic algorithm to find a good solution. After that I will compare the results and the times what they needed to find a solution.
Since I read in so many papers that Simmulated annealing is the best to find an approximate solution to my problem, I focused my study on that algorithm but I will definately try out the other ones too.
But I have one more question to the function simmulannealbnd.
how is it possible to set constraints like in that algorithm ?
In the link you gave me are just constraints for the upper bound and lower bound but since I have a QAP I also have constraints that for example .
That basicly means that every train has to be assigned to exactly one platform. And furthermore I have to give that algorithm the arrival and departure time that Matlab knows when a platform is available again after one train left the trainstation.
How is it possible to set this constraints. I could not find it in the link you gave me.
Sorry if some of my questions are silly, I am just a beginner with Matlab.
Thanks for your help !
Walter Roberson
Walter Roberson on 23 May 2019
I already told you that it is not possible to set constraints with simmulannealbnd . All you can do is add a penalty when the constraint is violated. However when you use penalties, you have to plan them carefully. For example if you return 1000000 when the constraint is violated, then SA would be happy to try to search for a location that returned only 999999.99999 instead of understanding that the area is to be denied.

Sign in to comment.

Categories

Find more on Optimization Toolbox in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!