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:42] – hannes | public:t-622-arti-09-1:lab_3_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
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 | + | |
+ | * [[ http:// | ||
+ | * [[http:// | ||
+ | * [[http:// | ||
+ | |||
+ | == Examining Heuristics for the A* Pathfinding Search == | ||
+ | |||
+ | | ||
- Test launching it with:< | - Test launching it with:< | ||
java -Xmx128m -classpath ./ | java -Xmx128m -classpath ./ | ||
Line 19: | Line 26: | ||
</ | </ | ||
- | - Now test running the A* search on different maps, using different heuristics. You can choose maps from the " | + | - Now test running the A* search on different maps, using different heuristics. You can choose maps from the " |
+ | * 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? | - 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.1233585749.txt.gz · Last modified: 2024/04/29 13:32 (external edit)