summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-11 14:36:50 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-11 14:36:50 -0500
commit0b2f9943d55152e0958369083649dd71340864c9 (patch)
treecd040f1dd12816c6af37548597bd674cafb45271 /src/smt
parent8ebd49cb903ba19f9330820d02af08e226c9b791 (diff)
More preparation for CASC proofs. Minor fix for sort inference (rewrite new assertions). Bug fix for ambqi : simplify correctly for multi-sorted case. Bug fix for fmc : only do exh-simplification for uninterpreted sorts, ensure reps are enumerated for quantification over Real.
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp16
-rw-r--r--src/smt/smt_engine.h2
2 files changed, 14 insertions, 4 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 5d6a913b0..0604988d3 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -86,6 +86,7 @@
#include "theory/quantifiers/options.h"
#include "theory/datatypes/options.h"
#include "theory/strings/theory_strings_preprocess.h"
+#include "printer/options.h"
using namespace std;
using namespace CVC4;
@@ -2898,8 +2899,9 @@ void SmtEnginePrivate::processAssertions() {
Trace("quantifiers-rewrite-debug") << "Pre-skolemize " << prev << "..." << std::endl;
vector< TypeNode > fvTypes;
vector< TNode > fvs;
- d_assertionsToPreprocess[i] = Rewriter::rewrite( quantifiers::QuantifiersRewriter::preSkolemizeQuantifiers( prev, true, fvTypes, fvs ) );
+ d_assertionsToPreprocess[i] = quantifiers::QuantifiersRewriter::preSkolemizeQuantifiers( prev, true, fvTypes, fvs );
if( prev!=d_assertionsToPreprocess[i] ){
+ d_assertionsToPreprocess[i] = Rewriter::rewrite( d_assertionsToPreprocess[i] );
Trace("quantifiers-rewrite") << "*** Pre-skolemize " << prev << endl;
Trace("quantifiers-rewrite") << " ...got " << d_assertionsToPreprocess[i] << endl;
}
@@ -3792,8 +3794,16 @@ Proof* SmtEngine::getProof() throw(ModalException) {
#endif /* CVC4_PROOF */
}
-void SmtEngine::printInstantiations() {
- //TODO
+void SmtEngine::printInstantiations( std::ostream& out ) {
+ //if( options::instFormatMode()==INST_FORMAT_MODE_SZS ){
+ out << "% SZS CNF output start CNFRefutation for " << d_filename.c_str() << std::endl;
+ //}
+ if( d_theoryEngine ){
+ d_theoryEngine->printInstantiations( out );
+ }
+ //if( options::instFormatMode()==INST_FORMAT_MODE_SZS ){
+ out << "% SZS CNF output end CNFRefutation for " << d_filename.c_str() << std::endl;
+ //}
}
vector<Expr> SmtEngine::getAssertions() throw(ModalException) {
diff --git a/src/smt/smt_engine.h b/src/smt/smt_engine.h
index 88ba55b45..4b981f614 100644
--- a/src/smt/smt_engine.h
+++ b/src/smt/smt_engine.h
@@ -500,7 +500,7 @@ public:
/**
* Print all instantiations made by the quantifiers module.
*/
- void printInstantiations();
+ void printInstantiations( std::ostream& out );
/**
* Get the current set of assertions. Only permitted if the
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback