From 051b710484f5b599d47fb7d7f0eff4386a81b9cc Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 6 Aug 2010 16:24:06 +0000 Subject: [PATCH] Use different map --- Contractor/SearchEngine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contractor/SearchEngine.h b/Contractor/SearchEngine.h index 2342d20b0..fb489a331 100644 --- a/Contractor/SearchEngine.h +++ b/Contractor/SearchEngine.h @@ -32,7 +32,7 @@ struct _HeapData { _HeapData( NodeID p ) : parent(p) { } }; -typedef BinaryHeap< NodeID, int, int, _HeapData, MapStorage< NodeID, unsigned > > _Heap; +typedef BinaryHeap< NodeID, int, int, _HeapData, SparseStorage< NodeID, unsigned > > _Heap; template class SearchEngine {