public:t-622-arti-09-1:lab_3_materials
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:t-622-arti-09-1:lab_3_materials [2009/02/02 14:41] – hannes | public:t-622-arti-09-1:lab_3_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
=== Lab 3 materials: Comparing Agent Programs + A* Search === | === Lab 3 materials: Comparing Agent Programs + A* Search === | ||
+ | |||
In lab 3 we will continue with [[public: | In lab 3 we will continue with [[public: | ||
- | ===== Examining the A* Search | + | == Examples and Tutorials |
- | * Download and decompress the Java Pathfinder | + | *There are many resources available for studying A* in the domain of pathfinding. Here are a few that you can take a quick look at now and then come back to them later when you want to implement something yourself. |
- | | + | * [[ http:// |
+ | * [[http:// | ||
+ | * [[http:// | ||
+ | |||
+ | == Examining Heuristics for the A* Pathfinding Search == | ||
+ | |||
+ | - Download and decompress the {{: | ||
+ | | ||
java -Xmx128m -classpath ./ | java -Xmx128m -classpath ./ | ||
* You may have to resize the application window before you see the environment. | * You may have to resize the application window before you see the environment. | ||
Line 18: | Line 26: | ||
</ | </ | ||
- | | + | |
- | * Imagine that you are developing a computer game with characters that need to traverse a variety of terrain. Which A* heuristic would you pick? What is your argument for picking that heuristic? Are there any trade offs? | + | * Available Heuristics ([[http:// |
+ | * Manhattan heuristics< | ||
+ | h(n) = D * (abs(n.x-goal.x) + abs(n.y-goal.y))</ | ||
+ | * Euclidean heuristics< | ||
+ | h(n) = D * sqrt((n.x-goal.x)^2 + (n.y-goal.y)^2)</ | ||
+ | * Diagonal heuristics< | ||
+ | h_diagonal(n) = min(abs(n.x-goal.x), | ||
+ | h_straight(n) = (abs(n.x-goal.x) + abs(n.y-goal.y)) | ||
+ | h(n) = D2 * h_diagonal(n) + D * (h_straight(n) - 2*h_diagonal(n))) | ||
+ | </ | ||
+ | * Diagonal heuristics, with Tie-Breaker: | ||
+ | * Diagonal heuristics, with Tie-Breaker, | ||
+ | - Imagine that you are developing a computer game with characters that need to traverse a variety of terrain. Which A* heuristic would you pick? What is your argument for picking that heuristic? Are there any trade offs? | ||
/var/www/cadia.ru.is/wiki/data/attic/public/t-622-arti-09-1/lab_3_materials.1233585719.txt.gz · Last modified: 2024/04/29 13:32 (external edit)