summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-10-28 17:14:04 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-10-28 17:14:04 -0500
commitb1dea08db5a965d8d9d6f38bd05c280a8a126352 (patch)
tree5bd385da8faf2043da66ae1ff2230ca759c36a49 /src/theory/quantifiers_engine.h
parent360ad23aa7f04d7059aff6314066e47e975fe5be (diff)
Add get instantiations utilities to API.
Diffstat (limited to 'src/theory/quantifiers_engine.h')
-rw-r--r--src/theory/quantifiers_engine.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/quantifiers_engine.h b/src/theory/quantifiers_engine.h
index 232d1d889..ff6a8a36c 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -374,9 +374,14 @@ public:
void printInstantiations( std::ostream& out );
/** print solution for synthesis conjectures */
void printSynthSolution( std::ostream& out );
+ /** get list of quantified formulas that were instantiated */
+ void getInstantiatedQuantifiedFormulas( std::vector< Node >& qs );
/** get instantiations */
void getInstantiations( Node q, std::vector< Node >& insts );
void getInstantiations( std::map< Node, std::vector< Node > >& insts );
+ /** get instantiation term vectors */
+ void getInstantiationTermVectors( Node q, std::vector< std::vector< Node > >& tvecs );
+ void getInstantiationTermVectors( std::map< Node, std::vector< std::vector< Node > > >& insts );
/** get instantiated conjunction */
Node getInstantiatedConjunction( Node q );
/** get unsat core lemmas */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback