Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
107 views

Lisp - modify A* to check for best cost, receive list of goal nodes

I am trying to modify an existing Hill-climb function, which takes two node names (such as A and E), and has an optional parameter which is used recursively (a queue). I'm trying to define a function ...
3
votes
1answer
248 views

Lisp - Hill Climbing

Ok I have a Lisp implementation of BFS that I am trying to convert to do a hill climbing search. Here is what my BFS code looks like: ; The list of lists is the queue that we pass BFS. the first ...
3
votes
4answers
2k views

Hill climbing and single-pair shortest path algorithms

I have a bit of a strange question. Can anyone tell me where to find information about, or give me a little bit of an introduction to using shortest path algorithms that use a hill climbing approach? ...
2
votes
1answer
226 views

Local optimums in Electric Fences

I'm writing a solution for the Usaco problem "Electric Fences". In the problem you have to find the optimal location for a point among a large amount of linesegments, so the sum of point-linesegment ...
0
votes
1answer
174 views

Understanding Stochastic Hill Climber

I've been trying to understand the stochastic hill climber for a while, but not having any luck with it. I've looked through a book on heuristics and got a pseudo code. I don't understand what the ...
0
votes
2answers
2k views

Simple hill climbing algorithm? [UPDATED]

I'm trying to use the Simple hill climbing algorithm to solve the travelling salesman problem. I want to create a Java program to do this. I know it's not the best one to use but I mainly want it to ...