summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/dynamic_rewrite.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/dynamic_rewrite.h
parent817fe6d90c25dbdfe62c658add02efd51e2e29eb (diff)
Improve accuracy of stats for sygus sampler (#1755)
Diffstat (limited to 'src/theory/quantifiers/dynamic_rewrite.h')
-rw-r--r--src/theory/quantifiers/dynamic_rewrite.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/theory/quantifiers/dynamic_rewrite.h b/src/theory/quantifiers/dynamic_rewrite.h
index 388173829..56f591470 100644
--- a/src/theory/quantifiers/dynamic_rewrite.h
+++ b/src/theory/quantifiers/dynamic_rewrite.h
@@ -57,12 +57,8 @@ class DynamicRewriter
public:
DynamicRewriter(const std::string& name, QuantifiersEngine* qe);
~DynamicRewriter() {}
- /** inform this class that the equality a = b holds.
- *
- * This function returns true if this class did not already know that
- * a = b based on the previous equalities it has seen.
- */
- bool addRewrite(Node a, Node b);
+ /** inform this class that the equality a = b holds. */
+ void addRewrite(Node a, Node b);
/**
* Check whether this class knows that the equality a = b holds.
*/
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback