A* is a a graph shortest-path algorithm that uses a heuristic function to speed up the search

learn more… | top users | synonyms (1)

0
votes
0answers
40 views

A-star implementation, can't set parents right (Java)

I'm working on an A-star Algorithm, and everything seems to be working allright, until I try to reconstruct the path, and it turns that the parents of different nodes are not set correctly, and I ...
0
votes
1answer
35 views

A-star, H value nullpointer (Java)

I'm working on an A* pathfinding algorithm, and for some reason at a certain point I get a null pointer exception and I have no idea why. The problem occurs at class Astar line 79, which is a simple ...
1
vote
2answers
64 views

A* vs trees in longest path

Let T be a tree in which each node represents a state. The root represents the initial state. An edge going from a parent to a child specifies an action that can be performed on the parent in order to ...
2
votes
4answers
106 views

Why does A* not find the optimal path?

I implemented the A*-pathfinding in a simple Winforms application. Where one can also define obstacles on the grid so the agent can navigate around them. The Problem is my agent can't foresee paths. ...
0
votes
0answers
29 views

Is What AndEngine AStarPathFinder Does Actually A*? [closed]

I have two questions regarding the A* implementation in AndEngine. Question 1: Based on my understanding of the A* algorithm, there are two instances where the parent node of a given node is changed. ...
2
votes
1answer
80 views

What is a good benchmark for A* (AStar)?

I wrote myself an A*, it works quite well and now comes the time to evaluate its performance (potentially against other solutions to see how it performs). For both having visual feedback and fun I ...
2
votes
2answers
76 views

Heuristic for using A* to find the path with the highest gain

Suppose that I want to change the logic in A*, trying to find the most useful path (i.e., the one with the highest gain) instead of finding the shortest path (i.e., the one with the lowest cost). In ...
2
votes
1answer
76 views

A* star openlist is not working as expected

I was once asking about a datastructure for A*. I solved this issue now. But there is another problem. My A* is slow and not working as I expect it. That means I implemented the source code in Java ...
-4
votes
0answers
42 views

How is a* algorithm optimal [closed]

I am completely new to artificial intelligence and in context to this diagram I have a doubt that here A needed to compute all the possible paths. Then how come is it useful? And in Rich and knight ...
0
votes
0answers
74 views

A Star Search Algorithm Almost Working

I'm working on an implementation of the A* Search Algorithm in Java, and it's not quite working correctly. Here is my algorithm code: public List<Tile> calculatePath(Tile start, Tile goal) ...
-2
votes
1answer
73 views

A* heuristic calculation with Euclidean Distance [closed]

I am implementing A* algorithm in Java for finding the shortest path between two points(the airports in different cities). I am using undirected and weighted graph for this purpose in which each edge ...
0
votes
1answer
36 views

Search Algorithm and Dynamically Behaving Obstacles

I am concerned with an environment containing just doors, keys and walls. Doors can be passed through if a key has been 'picked up' (i.e. the node containing a key has been visited). The problem is ...
3
votes
1answer
58 views

OSM and A* Algorithm

I'm trying to write a program which is calculation the shortest path (A* algorithm) from A to B using OSM data as input. The program should work in Android Java. I use the data from OSM and ...
4
votes
1answer
54 views

A* can't find path in AI game

I want to ask an assignment question. I know some people hesitate to give answers for this kind of questions, but believe me, I have spent a lot of time on this assignment and have tried everything I ...
0
votes
1answer
22 views

Breaking A* admissibility caused exponential speed-up?

I've been working on a generalized version of the sliding tile puzzle where the tiles do not have numbers. Instead, each location either has a tile or a hole and is represented with a boolean as true ...
0
votes
0answers
57 views

Extending Jump Point Search to return nearest feasible point to target incase no path is available

I am working on a path finding algorithm for a battle game. The game has concepts of buildings(target) enclosed by walls(obstacles). Soldiers are deployed outside the walls. So in case walls have a ...
-2
votes
0answers
54 views

A* algorithm implemented in CUDA - can't find path, possible race conditions - any ideas on how to fix it/improve it? [closed]

So, I have to implement a A* pathfinding in CUDA. I've implemented a CPU version, ran some tests, worked like a charm. But when I tried to port it to CUDA, it didn't work as intended. Sometimes, it ...
1
vote
0answers
38 views

Andengine - how to get remaining path on PathModifier.Path

Is it possible to get remaining path in Andengine on PathModifier.Path during the move ? Could you please show an example ?
1
vote
1answer
84 views

AI: Graph search and A* implementation

i have a problem. First of all sorry for my bad english but i am Italian :D This is my project for AI course at University of Florence. I have to solve a classic game: Sliding Puzzle with 8 and 15 ...
36
votes
6answers
744 views

A* Admissible Heuristic for die rolling on grid

I need some help finding a good heuristic for the following problem: You are given an R-by-C grid and a six-sided die. Let start and end be two distinct cells on this grid. Find a path from ...
0
votes
0answers
37 views

A-star logic has its own mind

So I got help earlier for this program crashing, however the cost function has a mind of its own. Its supposed to go through areas that have cost 1, and avoid cost 5 areas as much as possible. It ...
0
votes
1answer
15 views

Astar boundary checking

So I have my Astar program running and it runs 4 outta 6 times, however it gives two different array out of bound errors at times. I think its an issue of boundary checking, however I think I have my ...
1
vote
3answers
61 views

Code logic error on recursive algorithm

I have a struct for an A* algorithm, which is defined by: typedef struct matriz{ int g,h,f; bool isBarrier, isStart, isEnd; }matrix; I have made an Matrix out of this structure, and made ...
-1
votes
1answer
288 views

Courier delivery with A* algorithm

I have to make a program which can calculate the shortest path to finish all deliveries. The map is represent as x, y coordinate and the path is calculated using Manhattan distance(so go along x and ...
1
vote
1answer
163 views

A* Algorithm Java

I have spent entire weekend playing around with this. I am trying to store the nodes in PriorityQueue data structure. My astar function doesnt seem to be doing what it should. Anyone mind having a ...
0
votes
1answer
271 views

Calculating Manhattan Distance in Python in an 8-Puzzle game

I am trying to code a simple A* solver in Python for a simple 8-Puzzle game. I have represented the goal of my game in this way: goal = [[1, 2, 3], [8, 0, 4], [7, 6, 5]] My problem ...
0
votes
1answer
131 views

A* star algorithm help c++

There is a problem with my open and closed list. If I alter B and move it around it does not work, but in some places in the map if I change where B is then it will work again. If anyone can assist me ...
0
votes
1answer
61 views

Setting up an A* search

I am writing a small section of a program in which i have to write up a pathfinding algorithm. The function takes in what will be known as 'routes' that each define a start and end point in 2D space. ...
0
votes
2answers
128 views

Is A-star guaranteed to give the shortest path in a 2D grid

I am working with A-star algorithm, whereing I have a 2D grid and some obstacles. Now, I have only vertical and horizontal obstacles only, but they could vary densely. Now, the A-star works well ...
1
vote
1answer
70 views

boost::graph astar algorithm without exceptions

I'm reading boost::graph documentation for future usage. I'm particularly interested in A* algorithm. Having a look to boost::graph::astar_search usage example, it seems the way to stop the algorithm ...
0
votes
2answers
76 views

Boost Graph Library A* for consistent heuristic

I've read that, when applying A* to a problem, if your heuristic is consistent then you can further optimize the A* search. The Boost Graph Library offers two versions of the A* algorithm: ...
-2
votes
1answer
60 views

Speed of simplifying A*

I've been trying to optimize my own implementation of the A* search algorithm for a while, and ended up with changing the actual algorithmic part a bit. I've been wondering if this approach would be ...
0
votes
1answer
97 views

How to compute the running time of A-star algorithm

I am working with A* algorithm. I have a 2D grid, with some obstacles, and given the starting and final position, I find the shortest path between them. Here's my pseudocode while(queueNotEmpty){ ...
3
votes
1answer
453 views

A Star Search Algorithm

Here I have a query regarding the A Star Search Algorithm. I'm building what is known as the 8 piece puzzle. This is a game with 9 places (1 is empty) and you have to arrange the tiles in a correct ...
0
votes
0answers
73 views

Performance difference RBFS - A*

I've implemented the RBFS as defined in AIMA and wanted to compare it to an implementation of A*. When I try it out on an instance from the TSPlib (ulyssis16 - 16 cities), both come up with a correct ...
13
votes
5answers
499 views

Is A* really better than Dijkstra in real world path finding?

I'm developing a path finding program. It is said theoretically that A* is better than Dijkstra. In fact, the latter is a special case of the former. However, when test in real world, I begin to doubt ...
0
votes
1answer
52 views

Why does this pathfinding function crash?

I have an A* search algorithm which crashes the program because of a memory error, and I don't know why. These are the relevant bits of code: def __init__(self, graph): self.graph = graph def ...
0
votes
2answers
148 views

Heuristic For A* Algorithm

I have a problem to solve with A* but i'm having difficults to design a good heuristic. My problem are: Determine the best route to accomplish by a garbage collection truck in a city that moves on a ...
0
votes
0answers
32 views

A-star algorithm and Minesweeper [duplicate]

I am trying to implement minesweeper solver in lisp. I HAVE to use A* algorithm. And i don't need to open all unopened fields...I need to find positions of all mined fields. And of course it has to ...
0
votes
1answer
51 views

Integer being reset within each loop of recursive A* algorithim

I've been stuck on this tricky bug for the past few hours, I was wondering if anyone here could help me. Basically I'm implementing A* through recursion, and I want each node (called a tile in the ...
2
votes
2answers
231 views

A* algorithm and games

I am trying to implement minesweeper solver in lisp. I know this is not rare problem but i didn't find any article that can help me with that. At start i have a minefield as input with numbers on ...
-1
votes
1answer
94 views

Pathfinding algorithm

I'm doing a project where the objective is to find the less turn-cost way to send X ants from point A to point B with the restriction that only one ant at a time can stand on "in-between platforms" - ...
6
votes
1answer
184 views

Implementing A* algorithm

So I am implementing A* algorithm in C. Here's the procedure. I am using Priority Queue [using array] for all the open nodes. Since I'll have duplicate distances, that is more than one node with same ...
0
votes
1answer
132 views

A-Star algorithm details

I started A* algorithm but i don't realize how it works in details . for example , I have a graph and it's : A -> B = 9 (not 90 as originally asked by mistake) A -> C = 20 C -> D = 40 now i want ...
2
votes
2answers
100 views

A* Search - least number of hops?

I'm trying to create an A* pathfinding algorithm, however I'm having a little trouble getting off the ground with it. A little background: I am by no means versed in pathfinding algorithms, however I ...
0
votes
2answers
160 views

A star path finding in corridor

I am implementing A* for path finding of a mobile robot inside the corridor. As of now the path is produced inside the corridor but it slides over to the right following all the edges of the ...
3
votes
1answer
118 views

A* Algorithm: closed list contains too many elements / too large

I'm currently implementing the A* algorithm in JavaScript. However, I've ran into a problem: My closedList seems way too large. Here is a screenshot of the output: What could cause this problem? Is ...
0
votes
0answers
420 views

Manhattan distance algorithm for any goal state 8-puzzle [closed]

So, I have to solve the 8 puzzle problem, I choosed A* algorithm with manhattan distance as a heuristic. This is the function that computes the manhattan distance: private static int md(int[][] ...
1
vote
3answers
141 views

Path finding A to B at different floors

I have this problem on what algorithm or approach will I consider to solve a particular problem of finding a path from point A to point B wherein both points aren't on the same plane (are on different ...
-1
votes
1answer
115 views

A* infinite loop

I'm trying to implement an A* algorithm for a pathfinding problem. It works, like 9 out of 10 times, but at some points I get a (possibly) infinite loop, and the program doesn't find the optimal ...

1 2 3 4 5 7