SA Bugzilla – Bug 247
Use Simulated Annealing with GA
Last modified: 2002-06-09 16:47:18 UTC
An optimization algorithm which can complement GA is simulated annealing. When I did a GA project at college, I found that cominging it with annealing improved the results a lot. Some overviews of annealing can be found at: - http://www.cs.sandia.gov/opt/survey/sa.html - http://www.npac.syr.edu/REU/reu94/ramoldov/proposal/section3_2.html A parallel annealing library can be found at: - http://www.uni-paderborn.de/fachbereich/AG/monien/SOFTWARE/PARSA/ A non-parallel library can be found at: - http://www.taygeta.com/annealing/simanneal.html
Subject: Re: [SAdev] New: Use Simulated Annealing with GA Matt, if you're interested in the GA code, you should take a look at how it's working currently. Rather than using annealing (which admitedly might well improve the performance -- I haven't tried it yet), it tries to do something aking to swarming -- take a look at the myMutation function in craig-evolve.cxx http://www.mkp.com/books_catalog/catalog.asp?ISBN=1-55860-595-9 among others It's pretty naive the way it's implemented now, but it works really really well, so why fuck with it is my motto. C
Subject: Re: [SAdev] New: Use Simulated Annealing with GA Matt, if you're interested in the GA code, you should take a look at how it's working currently. Rather than using annealing (which admitedly might well improve the performance -- I haven't tried it yet), it tries to do something aking to swarming -- take a look at the myMutation function in craig-evolve.cxx http://www.mkp.com/books_catalog/catalog.asp?ISBN=1-55860-595-9 among others It's pretty naive the way it's implemented now, but it works really really well, so why fuck with it is my motto. C _______________________________________________ Spamassassin-devel mailing list Spamassassin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
Closing this for cleanup purposes; improvements to the GA are in the pipeline.