summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus_sampler.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-04-10 16:44:02 -0500
committerGitHub <noreply@github.com>2018-04-10 16:44:02 -0500
commitf1d4d477d7cbfb6c8ba79232986a4135c5647e4a (patch)
tree9ec138c6b901172e809fd5fb89e67e4a92ad2239 /src/theory/quantifiers/sygus_sampler.h
parent817fe6d90c25dbdfe62c658add02efd51e2e29eb (diff)
Improve accuracy of stats for sygus sampler (#1755)
Diffstat (limited to 'src/theory/quantifiers/sygus_sampler.h')
-rw-r--r--src/theory/quantifiers/sygus_sampler.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/theory/quantifiers/sygus_sampler.h b/src/theory/quantifiers/sygus_sampler.h
index fa0d670d2..18b8f5511 100644
--- a/src/theory/quantifiers/sygus_sampler.h
+++ b/src/theory/quantifiers/sygus_sampler.h
@@ -431,6 +431,13 @@ class SygusSamplerExt : public SygusSampler
*/
Node registerTerm(Node n, bool forceKeep = false) override;
+ /** register relevant pair
+ *
+ * This should be called after registerTerm( n ) returns eq_n.
+ * This registers ( n, eq_n ) as a relevant pair with this class.
+ */
+ void registerRelevantPair(Node n, Node eq_n);
+
private:
/** dynamic rewriter class */
std::unique_ptr<DynamicRewriter> d_drewrite;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback