-
This is more of a question than an issue but I wasn't sure where to put it. Is ther e currently a framework for using the shortest path search algorithms in `LightGraphs` with custom visitors? I see `…
-
I [wrote a unit-test](https://github.com/nightblade9/escape-to-earth/blob/master/EscapeToEarth.UnitTests/Generators/MapGeneratorTests.cs) for my map generation code. At a high-level, my map generation…
-
Please run the attached model. I have indicated the resistance of each edge on the display. I notice that agent is not always choosing a path based on the weights. If you dont see it the first time, r…
-
@MrDupin I reran the search notebook. EightPuzzle doesn't seem to work. I presume this is because of PR #733 .
The PR had quite a few errors which didn't get caught by pytest because tests for EightP…
-
Hi! I run cmake and make, but got an error below. It seems like executable `fudge_gui` did not compile successfully.
Something with
` error: use of deleted function ‘std::unique_ptr::unique_ptr(co…
kxhit updated
6 years ago
-
If I `import search` and then
```
puzzle = search.NQueensProblem(8)
print(search.breadth_first_search(puzzle))
```
I get:
```
TypeError: unhashable type: 'list'
```
In order to work with the …
-
I'm using no walls for my pathfinding, instead I have to use high cost for very unlikely positions.
I use a cost value of 5-200 for those.
Targeting the pathfinding to those will make the DLL loop …
-
Tried to compile both witch catkin_make and catkin build, rosjava refuses to compile. This is the error:
```
Warning: Cannot symlink from /home/manolofc/workspace/iliad_ws/devel/.private/coordinat…
-
The search notebook currently has a lot of visualizations of graphs and such that are very important to get the concepts across. However, the visualization code itself is not important and the student…
-
I've added an A* behaviour script that uses the map grid from issue #14 to plot the shortest possible route between two game objects.
I've also added a simple temporary AI agent that takes the path…