Tagged Questions
The simulated-annealing tag has no wiki summary.
20
votes
4answers
311 views
Reproducing images with primitive shapes. (Graphics optimization problem)
Based on this original idea, that many of you have probably seen before:
http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/
I wanted to try taking a different approach:
...
9
votes
4answers
2k views
Artificial Inteligence library in python
I was wondering if there are any python AI libraries similar to aima-python but for a more recent version of python... and how they are in comparison to aima-python.
I was particularly interested in ...
3
votes
3answers
839 views
SciPy global minimum curve fit
I'm using scipy.optimize.curve_fit, but I suspect it is converging to a local minimum and not the global minimum.
I tried using simulated annealing in the following way:
def fit(params):
return ...
3
votes
2answers
79 views
Allocating resources according to rules — is simulated annealing appropriate?
I would like to design an application that can allocate resources according to rules. I believe simulated annealing would work, but I am not too familiar with it and I was wondering if there were ...
3
votes
4answers
490 views
Simulated Annealing Applications
Do you know any real applications for Simulated Annealing?
Simulated Annealing is a heuristic algorithm used for problems like the traveling salesman or the knapsack problem.
And yes, this is ...
3
votes
2answers
697 views
GCC performance
I am doing parallel programming with MPI on Beowulf cluster. We wrote parallel algorithm for simulated annealing. It works fine. We expect 15 time faster execution than with serial code. But we did ...
3
votes
4answers
684 views
How to design acceptance probability function for simulated annealing with multiple distinct costs?
I am using simulated annealing to solve an NP-complete resource scheduling problem. For each candidate ordering of the tasks I compute several different costs (or energy values). Some examples are ...
2
votes
1answer
119 views
simulated annealing - sensor positioning in sensor networks
Hi
I have a litte problem with understanding problem of localization sensors in wireless sensor networks. Based on that article
...
2
votes
2answers
1k views
Writing Simulated Annealing algorithm for 0-1 knapsack in C#
I'm in the process of learning about simulated annealing algorithms and have a few questions on how I would modify an example algorithm to solve a 0-1 knapsack problem.
I found this great code on CP:
...
1
vote
1answer
57 views
Genetic algorithms vs Simulated annealing for timetables
I am developing a timetabling application. What are the relative advantages of genetic algorithms vs simulated annealing?
I have these points specific to my situation:
At a single time, we are ...
1
vote
1answer
101 views
What does this exception mean?
I am working on implementing a simulated annealing program and part of this involves calculating scores from a .txt file that my java program reads.
1) an input string is read from the user. The ...
1
vote
1answer
71 views
How to debug a monte carlo simulation faster?
I'm writing a simulated annealing program, and having some trouble debugging it. Any advice would be welcome.
First of all, the output is not deterministic, so I've taken to running it a hundred ...
1
vote
1answer
380 views
N queens problem using Simulated Annealing
I am trying to come up with the algorithm for my n queens using Simulated Annealing. There is the general algorithm online, but when i look at it, I couldn't understand how it work. My nodes only have ...
1
vote
2answers
150 views
Simulated Annealing and Yahtzee!
I've picked up Programming Challenges and found a Yahtzee! problem which I will simplify:
There are 13 scoring categories
There are 13 rolls by a player (comprising a play)
Each roll must fit in a ...
1
vote
3answers
210 views
Could anyone help me compare these two algorithms?
I found that the two data-mining algorithm simulated annealing with bean search and Genetic Algorithm,I know that SA can be thought as GA where the population size is only one,but I don't know the ...
1
vote
1answer
449 views
Deterministic Annealing Code
I would like to find an open source example of a code for deterministic annealing. It can be in almost any language: C, C++, MatLab/Octave, Fortran. I have already found a MatLab code for simulated ...
1
vote
2answers
120 views
problem with evolutionary algorithms degrading into simulated annealing: mutation too small?
i have a problem understanding evolutionary algorithms. i tried using this technique several times, but i always ran into the same problem: degeneration into simulated annealing.
lets say my initial ...
1
vote
2answers
1k views
looking for simulated annealing implementation in VB
Is anyone aware of a reasonably well documented example of simulated annealing in Visual Basic that I can examine and adapt?
0
votes
1answer
26 views
Auto Belt Width Algorithm
I would really appreciate some comments about this practical problem.
Quick description.
I have a variable number of links that can be used to make up a given belt width. The question is, how many ...
0
votes
2answers
149 views
Needed : Well documented implementation of “Simulated Annealing”
I'm working on Optimization of Reversible logic circuit design and I'm using the technique of "Simulated annealing". I'm trying to code it in C and proves to be a bit difficult. If someone has code of ...
0
votes
1answer
101 views
Understanding simulated annealing- conceptually
i have just been introduced to simulated annealing and would like to understand it better before delving into the code again as I feel like I dont quite get it despite reading the code from the ...
0
votes
0answers
105 views
optimality and completeness of algorithms [closed]
So are the following algorithms:
Simulated Annealing
Genetic Algorithm
Recursive Best First Search
SMA*
(1) Optimal?
(2) Complete?
0
votes
2answers
120 views
What is this step for in the Simulated Annealing algorithm?
Both Wikipedia and this site describe a similar step in the Simulated Annealing algorithm, which I've picked out here:
Wikipedia:
if P(e, enew, temp(k/kmax)) > random() then // Should we move ...
0
votes
2answers
280 views
Trouble with copying dictionaries and using deepcopy on an SQLAlchemy ORM object
I'm doing a Simulated Annealing algorithm to optimise a given allocation of students and projects.
This is language-agnostic pseudocode from Wikipedia:
s ← s0; e ← E(s) ...
0
votes
2answers
74 views
Java: Value updates when it shouldn't
Basically I'm trying to create an implementation of simulated annealing for the multidimensional knapsack problem. I'm having a problem getting the system to decide whether or not to accept a state ...
0
votes
2answers
553 views
simulated annealing for placement and routing
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?