views:

230

answers:

1

i am in need of a well documented source code of simulated annealing for placement and routing (in c++ or java). can anyone help me?

+3  A: 

This question covers an implementation in C#:
http://stackoverflow.com/questions/127474/looking-for-simulated-annealing-implementation-in-vb/127755#127755

This course covers simulated annealing for placement and routing:

http://www.ecs.umass.edu/ece/tessier/courses/697ff/

And is the particular topic of this homework:

http://www.ecs.umass.edu/ece/tessier/courses/697ff/pset2/hw2.pdf

If you can't go through the process of writing it yourself, you might get in contact with the department/professor that runs the course:

http://www.ecs.umass.edu/ece/tessier/rcg/

Chances are good they have something close to what you need.

Adam Davis