Reputation: 6102
I'm researching about Bin Packing
Problem. I currently have implemented this problem in Genetic Programming way. But when I research Simulated Annealing Algorithm for this problem, I don't understand it very well.
Is there any good link or code / psuedocode for this problem.
Upvotes: 1
Views: 2835
Reputation: 25038
First let us define the problem
Pack a set of
N = {1, 2, …, n}
items, each with size
t_i, i =1, 2,…, n,
into identical bins, each with capacity C
Minimize the number of bins without violating the capacity constraints
So main Outline of Annealing Algorithm will consist on:
Now it is important to do a Neighborhood Search for Bin Packing Problem:
- then evaluate only the change in the objective function value
That should give you a start.
Upvotes: 6