summaryrefslogtreecommitdiff
path: root/src/expr/pickler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/pickler.h')
-rw-r--r--src/expr/pickler.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/expr/pickler.h b/src/expr/pickler.h
index a6427ad47..dee4f06e6 100644
--- a/src/expr/pickler.h
+++ b/src/expr/pickler.h
@@ -67,7 +67,7 @@ class CVC4_PUBLIC Pickler {
protected:
virtual uint64_t variableToMap(uint64_t x) const
- throw(AssertionException, PicklingException) {
+ throw(PicklingException) {
return x;
}
virtual uint64_t variableFromMap(uint64_t x) const {
@@ -87,7 +87,7 @@ public:
*
* @return the pickle, which should be dispose()'d when you're done with it
*/
- void toPickle(Expr e, Pickle& p) throw(AssertionException, PicklingException);
+ void toPickle(Expr e, Pickle& p) throw(PicklingException);
/**
* Constructs a node from a Pickle.
@@ -116,7 +116,7 @@ public:
protected:
virtual uint64_t variableToMap(uint64_t x) const
- throw(AssertionException, PicklingException) {
+ throw(PicklingException) {
VarMap::const_iterator i = d_toMap.find(x);
if(i != d_toMap.end()) {
return i->second;
@@ -125,11 +125,7 @@ protected:
}
}
- virtual uint64_t variableFromMap(uint64_t x) const {
- VarMap::const_iterator i = d_fromMap.find(x);
- Assert(i != d_fromMap.end());
- return i->second;
- }
+ virtual uint64_t variableFromMap(uint64_t x) const;
};/* class MapPickler */
}/* CVC4::expr::pickle namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback