summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorMartin <martin.brain@diffblue.com>2017-09-14 04:51:50 +0100
committerAina Niemetz <aina.niemetz@gmail.com>2017-09-13 20:51:50 -0700
commit4a014a12d7f72c4f73dfbee8c9f62868e920bc15 (patch)
treed6bcf71456c10122cb0e90bebebba095f0f75900 /src/theory/theory_engine.cpp
parentdaf1d6bf1176834fa697dd57c6fe28142e715585 (diff)
Floating point symfpu support (#1093)
Changes needed for the bit-blasting floating-point solver which are outside of it's area and / or applicable independently.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 59a52a048..892b331ea 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -2208,7 +2208,7 @@ void TheoryEngine::handleUserAttribute(const char* attr, Theory* t) {
d_attr_handle[ str ].push_back( t );
}
-void TheoryEngine::checkTheoryAssertionsWithModel() {
+void TheoryEngine::checkTheoryAssertionsWithModel(bool hardFailure) {
for(TheoryId theoryId = THEORY_FIRST; theoryId < THEORY_LAST; ++theoryId) {
Theory* theory = d_theoryTable[theoryId];
if(theory && d_logicInfo.isTheoryEnabled(theoryId)) {
@@ -2223,7 +2223,9 @@ void TheoryEngine::checkTheoryAssertionsWithModel() {
ss << theoryId << " has an asserted fact that the model doesn't satisfy." << endl
<< "The fact: " << assertion << endl
<< "Model value: " << val << endl;
- InternalError(ss.str());
+ if(hardFailure) {
+ InternalError(ss.str());
+ }
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback