From b4aaa40ca834958130a8ee5a922ac45c6de84ce1 Mon Sep 17 00:00:00 2001 From: Liana Hadarean Date: Thu, 28 May 2015 15:03:10 +0100 Subject: added options for controlling resource step-count for various solving stages --- src/theory/bv/bitblaster_template.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/theory/bv/bitblaster_template.h') diff --git a/src/theory/bv/bitblaster_template.h b/src/theory/bv/bitblaster_template.h index d4d7bc04c..4d953b03c 100644 --- a/src/theory/bv/bitblaster_template.h +++ b/src/theory/bv/bitblaster_template.h @@ -135,8 +135,8 @@ class TLazyBitblaster : public TBitblaster { {} bool notify(prop::SatLiteral lit); void notify(prop::SatClause& clause); - void spendResource(); - void safePoint(); + void spendResource(uint64_t ammount); + void safePoint(uint64_t ammount); }; TheoryBV *d_bv; @@ -240,10 +240,10 @@ public: MinisatEmptyNotify() {} bool notify(prop::SatLiteral lit) { return true; } void notify(prop::SatClause& clause) { } - void spendResource() { - NodeManager::currentResourceManager()->spendResource(); + void spendResource(uint64_t ammount) { + NodeManager::currentResourceManager()->spendResource(ammount); } - void safePoint() {} + void safePoint(uint64_t ammount) {} }; -- cgit v1.2.3