summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.h
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2012-05-15 22:02:47 +0000
committerLiana Hadarean <lianahady@gmail.com>2012-05-15 22:02:47 +0000
commit03930f2a6fdfb85ecc81594ec65f41d7c1284577 (patch)
tree21e28a976bd9df30da8e2d312598d7d353079d3c /src/theory/bv/theory_bv.h
parente6d3934c41e510d7bbe69ffdcb91f2c9db789ff2 (diff)
fixed QF_BV performance problem due to using CDList instead of CDQueue
Diffstat (limited to 'src/theory/bv/theory_bv.h')
-rw-r--r--src/theory/bv/theory_bv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.h b/src/theory/bv/theory_bv.h
index 6ef9d18dd..9ab5f8e1c 100644
--- a/src/theory/bv/theory_bv.h
+++ b/src/theory/bv/theory_bv.h
@@ -56,7 +56,7 @@ private:
/** Bitblaster */
Bitblaster* d_bitblaster;
- context::CDList<TNode> d_bitblastQueue;
+ context::CDQueue<TNode> d_bitblastQueue;
/** Context dependent set of atoms we already propagated */
context::CDHashSet<TNode, TNodeHashFunction> d_alreadyPropagatedSet;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback