]> git.unchartedbackwaters.co.uk Git - francis/stp.git/commitdiff
Fix BitBlaster to consistently use the hash_set macro defined in AST/UsefulDefs.h.
authorkhooyp <khooyp@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 11 Jan 2012 16:55:28 +0000 (16:55 +0000)
committerkhooyp <khooyp@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 11 Jan 2012 16:55:28 +0000 (16:55 +0000)
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1497 e59a4935-1847-0410-ae03-e826735625c1

src/simplifier/constantBitP/multiplication/ImplicationGraph.h

index fb96174231ea9617c9f1815c399c112187022e05..6d363a3e970d7e3503a5d8370b2e0b3e54af0b97 100644 (file)
@@ -8,6 +8,7 @@
 #ifndef IMPLICATIONGRAPH_H_
 #define IMPLICATIONGRAPH_H_
 
+#include "../../../AST/UsefulDefs.h"
 #include "../ConstantBitP_TransferFunctions.h"
 #include "../ConstantBitP_Utility.h"
 #include "Edge.h"
@@ -25,7 +26,7 @@ extern const bool debug_multiply;
 // Relationship between bits. One bit may imply another bit.
 class ImplicationGraph
 {
-       typedef __gnu_cxx ::hash_set<Edge, EdgeHasher, eqEdge> Edges;
+       typedef hash_set<Edge, EdgeHasher, eqEdge> Edges;
        Edges edges;
 
        struct Target