summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index 1a56fa141..23f7ea6b5 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -288,8 +288,8 @@ unsigned PropEngine::getAssertionLevel() const {
bool PropEngine::isRunning() const {
return d_inCheckSat;
}
-
-void PropEngine::interrupt() throw(ModalException) {
+void PropEngine::interrupt()
+{
if(! d_inCheckSat) {
return;
}
@@ -299,8 +299,9 @@ void PropEngine::interrupt() throw(ModalException) {
Debug("prop") << "interrupt()" << endl;
}
-void PropEngine::spendResource(unsigned ammount) throw (UnsafeInterruptException) {
- d_resourceManager->spendResource(ammount);
+void PropEngine::spendResource(unsigned amount)
+{
+ d_resourceManager->spendResource(amount);
}
bool PropEngine::properExplanation(TNode node, TNode expl) const {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback