Simulated annealing (SA) is a generic probabilistic metaheuristic for the global optimization problem of locating a good approximation to the global optimum of a given function in a large search space.

learn more… | top users | synonyms

1
vote
1answer
65 views

Neighbor selection in simulated annealing algorithm

When picking a neighbor should the algorithms temperature be considered? So for example if the temperature is high when picking a neighbor should be permutation be made? Or does the temperature only ...
0
votes
0answers
108 views

What is a good approach to implement temperature in simulated annealing? [closed]

Can you please suggest good approaches to implement temperature in basic simulated annealing? I have searched a lot on SO itself but most of the questions dealt with very specific problems like TSP or ...
0
votes
1answer
88 views

How to improve the efficiency of this code to sort numbers using simulated annealing concept? [closed]

I am trying to understand the concept of simulated annealing ,therefore I tried to implement it to sort numbers .I am not sure whether this is conceptually correct implementation of the simulated ...
-2
votes
1answer
57 views

Energy in simulated annealing algorithm? [closed]

Am I correct in saying the energy in the simulated annealing algorithm is equal to the change in cost? So I can calculate it with the follow: energy = cost(prevSolution) - cost(currentSolution);
0
votes
0answers
36 views

Implementation of any Circuit Placement Algorithm to compare with our novel PSO placement alogrithm

I have designed and implemented a novel algorithm based on Particle Swarm Optimization, to places circuit gates (for example c17 or c432 circuit) on a 2D grid to minimize the total interconnect length ...
1
vote
1answer
147 views

Simulated annealing cost function for TSP

How does the cost function work for the TSP? Say I have a tour which has a distance of 100, and I change the tour slightly, making 4 changes to the original and it now has a distance of 50. Would the ...
1
vote
1answer
196 views

Simulated Annealing in C#

I am using simulated annealing to solve a cryptanalysis problem and I've hit a brick wall. I cannot for the life of me get my probability function to operate correctly, it either takes a worse ...
1
vote
2answers
68 views

Energy in simulated annealing

What does the energy variable represent in a simulated annealing algorithm? I'm guessing it's similar to the fitness variable in a GA?
0
votes
0answers
217 views

Simulated Annealing N Queens Probability Forumula

I am having some trouble with a simulated annealing algorithm to solve the n queens problem. Basically, I have it look for a better more, which works fine, but then I run a formula to check and see if ...
0
votes
1answer
137 views

How to take a probabilistic step?

I am designing a recursive search function that, under certain conditions, will recurse normally, and under other conditions, must recurse with probability e^(E/Temperature). All the code is done ...
6
votes
1answer
130 views

How safe/mature is the simulated annealing algorithm given in Numerical Recipes?

The authors of "Numerical Recipes" give in Ch. 10 an implementation of the simulated annealing algorithm that combines the "classical" simulated annealing with the Nelder-Mead downhill simplex method. ...
0
votes
0answers
98 views

Looking for example of simulate anealing in regards to schedulling [closed]

I am searching about task scheduling problems solved by simulate anealing algorithm.I got just one example http://msdn.microsoft.com/en-us/magazine/hh708758.aspx Please suggest me some other ...
1
vote
1answer
108 views

Monte Carlo (Possibly Simulated Annealing?) Method For N Mutually Repelling Points on a Unit Sphere C++

I need to create an algorithm in C++ to simulate mutually repelling points on a sphere using a Monte Carlo method. So far what I have is this: #include <stdio.h> #include <string.h> ...
1
vote
0answers
314 views

Solving Ackley Function using Simulated Annealing for finding global minimum in C# [closed]

I've created a Simulated Annealing algorithm for finding the global minimum of Ackley function, the fallowing code: public static void Main(string[] args) { ...
1
vote
2answers
142 views

Algorithm Options for Gene DNA Sequence Optimization? (related to TSP, dynamic programming)

The below question is applied specifically for a biotech application but may illustrate general principles for similar problems in other fields. It is an NP-hard problem that can be related to the ...
2
votes
1answer
178 views

Adding simulated annealing to a simple hill climber

I've created a hill climbing algorithm which randomly generates a solution then copies that solution and mutates it a little to see if it ends up with a better solution. If it does it keeps the new ...
0
votes
1answer
318 views

Simulated Annealing - Possible to Improve Performance?

I have applied the simulated annealing algorithm (in Java) to a personal project that I am working on, but was wondering if the SA algorithm would perform slightly better on the same dataset if ...
0
votes
1answer
324 views

Random Mutation Hill Climber & Simulated Annealing - Which is Fastest? [closed]

I have used a random mutation hill climbing algorithm as part of a project that I am working on, but was wondering whether it would be better to use simulated annealing to minimise the chance of ...
1
vote
1answer
102 views

Does any body knows or has a greedy satisfiability(GSAT) and simulated annealing satisfabiilty(SA-SAT) java algorithm?

I am looking for a GSAT and SA-SAT algorithm implemented in java. Does any body know about one? Thank you.
1
vote
1answer
546 views

Implementing Simulated Annealing

I think I understand the basic concept of simulated annealing. It's basically adding random solutions to cover a better area of the search space at the beginning then slowly reducing the randomness as ...
2
votes
3answers
441 views

Solving sudoku with heuristics: a good idea?

I was trying to solve a partially initialized sudoku puzzle (the kind that appears in newspapers) with the 'Drools Planner' package. While it can generate a (random) puzzle from scratch in 3 seconds, ...
1
vote
1answer
648 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 ...
0
votes
1answer
80 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
616 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 ...
1
vote
1answer
439 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
286 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 ...
5
votes
3answers
2k 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 ...
1
vote
1answer
131 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 ...
3
votes
2answers
153 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 ...
2
votes
1answer
836 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
305 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 ...
0
votes
0answers
338 views

kreisselmeier steinhauser function with simulated annealing

How can I implement Kreisselmeier Steinhauser (KS) function with Simulated Annealing optimization? My code for SA with KS func is as follows: while (Gen < GenMax ) while iter > 0 ...
2
votes
1answer
203 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 ...
1
vote
3answers
295 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 ...
20
votes
4answers
542 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: ...
2
votes
2answers
2k 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: ...
0
votes
2answers
194 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 ...
3
votes
5answers
1k views

Simulated Annealing Applications [closed]

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 ...
0
votes
2answers
401 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) ...
1
vote
1answer
747 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 ...
0
votes
2answers
89 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 ...
1
vote
2answers
163 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 ...
4
votes
2answers
945 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 ...
13
votes
4answers
5k 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 ...
4
votes
4answers
1k 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 ...
0
votes
2answers
805 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?
2
votes
2answers
2k 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?