summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
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.h
parent64192c63a0011e4737eec2d27cf4deabf74d6c0a (diff)
Option to check solutions produced by SyGuS solver (#1553)
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 22e269409..7bc95b097 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -715,6 +715,17 @@ public:
*/
theory::TheoryModel* getModel();
+ /** get synth solutions
+ *
+ * This function adds entries to sol_map that map functions-to-synthesize with
+ * their solutions, for all active conjectures. This should be called
+ * immediately after the solver answers unsat for sygus input.
+ *
+ * For details on what is added to sol_map, see
+ * CegConjecture::getSynthSolutions.
+ */
+ void getSynthSolutions(std::map<Node, Node>& sol_map);
+
/**
* Get the model builder
*/
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback