Presentation is loading. Please wait.

Presentation is loading. Please wait.

External A* Stefan Edelkamp, Shahid Jabbar (ich) University of Dortmund, Germany and Stefan Schrödl (DaimlerChrysler, CA)

Similar presentations


Presentation on theme: "External A* Stefan Edelkamp, Shahid Jabbar (ich) University of Dortmund, Germany and Stefan Schrödl (DaimlerChrysler, CA)"— Presentation transcript:

1 External A* Stefan Edelkamp, Shahid Jabbar (ich) University of Dortmund, Germany and Stefan Schrödl (DaimlerChrysler, CA)

2 Shahid Jabbar (Dortmund)External A*2 A* Algorithm  A.k.a Goal-directed dijkstra  A heuristic estimate is used to guide the search. E.g. Straight line distance from the current node to the goal in case of a graph with a geometric layout.  Reweighting: w’(u,v) = w(u,v) – h(u) + h(v)

3 Shahid Jabbar (Dortmund)External A*3 Problems ( It’s a big big world for a small small memory )  A* needs to store all the states during exploration.  A* generates large amount of duplicates that can be removed using an internal hash table – only if it can fit in the main memory.  A* do not exhibit any locality of expansion. For large state spaces, standard virtual memory management can result in excessive page faults.

4 Shahid Jabbar (Dortmund)External A*4 A bit of History  Munagala and Ranade: Generated states flushed to the disk for every BFS level. No hash table. Duplicates are removed by sorting the nodes according to the indices and doing an scan and compaction phase. Before expanding a layer t, the nodes in the layer t-1 and t-2 are subtracted from t. O(|V| + sort(|V| + |E|)) I/Os.

5 Shahid Jabbar (Dortmund)External A*5 A bit of History (contd…)  Further improved by Mehlhorn & Meyer to O(√(|V| ∙ scan(|V| + |E|)) + sort(|V| + |E|)) I/Os.  Korf presented External BFS for implicit graphs with the name Delayed duplicate detection for frontier search. Keep a level in the main memory until it exceeds a certain bound. If it does, sort it and flush to the disk. When a level is finished, merge the presorted buffers to get a sorted file and remove the duplicates

6 Shahid Jabbar (Dortmund)External A*6 Restriction on the domain  Implicit state space – generated on the fly –> no adjacency list  Unweighted  Undirected  Consistent Heuristic

7 Shahid Jabbar (Dortmund)External A*7 Take a closer look  Implicit, unweighted, undirected graphs  Consistent heurisitc estimates. => ∆h ={-1,0,1} g 0 1 2 3 4 5 0123456 h Ah ha! It’s a Bucket of states

8 Shahid Jabbar (Dortmund)External A*8 Bucket  A Bucket is a set of states, residing on the disk, having the same (g, h) value, Where, g = number of transitions needed to transform the initial state to the states of the bucket, and h = Estimated distance of the bucket’s state to the goal  No state is inserted again in a bucket that is expanded  If Active (being read or written), represented internally by a small buffer. File on disk Buffer in internal memory Insert stateFlush when full

9 Shahid Jabbar (Dortmund)External A*9  Buckets represent temporal locality – cache efficient order of expansion.  If we store the states in the same bucket together we can exploit the spatial locality.  Munagala and Ranade’s BFS and Korf’s delayed duplicate detection for implicit graphs. External A*

10 Shahid Jabbar (Dortmund)External A*10 External A* - pseudocode Procedure External A* Bucket(0, h(I))  {I} f min  h(I) while (f min ≠ ∞) g  min{i | Bucket(i, f min − i) ≠  } while (g min ≤ f min ) h  f min − g Bucket(g, h)  remove duplicates from Bucket(g, h) Bucket(g, h)  Bucket(g, h) \ (Bucket(g − 1, h) U Bucket(g − 2, h)) // Subtraction A(f min ),A(f min + 1),A(f min + 2)  N(Bucket(g, h)) // Generate Neighbours Bucket(g + 1, h + 1)  A(f min + 2) Bucket(g + 1, h)  A(f min + 1) U Bucket(g + 1, h) Bucket(g + 1, h − 1)  A(f min ) U Bucket(g + 1, h − 1) g  g + 1 f min  min{i + j > f min | Bucket(i, j) ≠  } U {∞}

11 Shahid Jabbar (Dortmund)External A*11 Complexity Analysis  Internal A* => Each edge is looked at most once.  Duplicates Removal: Sorting the green bucket having one state for every edge from the 3 black buckets. Scanning and compaction.  O(sort(|E|))  Subtraction: Removing states of orange buckets (duplicates free) from the green one.  O(scan(|V|) + scan(|E|))

12 Shahid Jabbar (Dortmund)External A*12 I/O Performance of External A* Theorem: The complexity of External A* in an implicit unweighted and undirected graph with a consistent estimate is bounded by O(sort(|E|) + scan(|V|)) I/Os.

13 Shahid Jabbar (Dortmund)External A*13 15-Puzzle 123 4567 891011 12131415 132 4567 8 1011 1213149

14 Shahid Jabbar (Dortmund)External A*14 Experimental Results – Test Instances S. No.InstanceInit. Estim ate Opt. Sol. Length 10 2 1 3 5 4 6 7 8 9 10 11 12 13 14 15416 20 1 2 3 5 4 7 6 8 9 10 11 12 13 14 15424 30 2 1 3 5 4 7 6 8 9 13 11 12 10 14 151030 4 (12)14 1 9 6 4 8 12 5 7 2 3 0 10 11 13 153545 5 (16)1 3 2 5 10 9 15 6 8 14 13 11 12 4 7 02442 6 (14)7 6 8 1 11 5 14 10 3 4 9 13 15 2 0 124159 7 (60)11 14 13 1 2 3 12 4 15 7 9 5 10 6 8 04866 8 (88)15 2 12 11 14 13 9 5 1 3 8 7 0 10 6 44365

15 Shahid Jabbar (Dortmund)External A*15 Test Run – Generated states

16 Shahid Jabbar (Dortmund)External A*16 Test Run - Duplicates

17 Shahid Jabbar (Dortmund)External A*17 Exp. Results – Generated nodes S.No.IDA*External A*% gain Space (GB) 4546,344493,9909.580.003 517,984,0515,180,71071.20.039 61,369,596,778297,583,23678.32.2 73,337,690,3312,269,240,0003216.91 86,009,130,7482,956, 384,33050.822

18 Shahid Jabbar (Dortmund)External A*18 Cache-Efficient Behaviour: CPU Internal Buffers File on disk

19 Shahid Jabbar (Dortmund)External A*19 Conclusion  A* for secondary storage with an I/O complexity of O(sort(|E|) + scan(|V|)).  Given that Delayed Duplication Detection has to be performed, the bound is I/O optimal.  File-based priority queue.  Hash table replaced by Delayed Duplicate Detection.  Successfully implemented to solve Korf’s Largest instance in secondary memory.  In case of non-uniformly weighted graphs with small integer weights in {1, …, C}. O(sort(|E|) + C ∙ scan(|V|))


Download ppt "External A* Stefan Edelkamp, Shahid Jabbar (ich) University of Dortmund, Germany and Stefan Schrödl (DaimlerChrysler, CA)"

Similar presentations


Ads by Google