summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2018-02-02 15:34:44 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-02-02 15:34:44 -0600
commit73a92766063e76e6c6f2507f126fb8f84ed3e432 (patch)
tree22b3fc7b54ab32af44f5670d4c1852a9ec4c537f /src/theory/theory_engine.cpp
parent64192c63a0011e4737eec2d27cf4deabf74d6c0a (diff)
Option to check solutions produced by SyGuS solver (#1553)
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 435dadce7..edbd768d7 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -902,6 +902,11 @@ TheoryModel* TheoryEngine::getModel() {
return d_curr_model;
}
+void TheoryEngine::getSynthSolutions(std::map<Node, Node>& sol_map)
+{
+ d_quantEngine->getSynthSolutions(sol_map);
+}
+
bool TheoryEngine::presolve() {
// Reset the interrupt flag
d_interrupted = false;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback