summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/extended_rewrite.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-09-05 09:14:14 -0500
committerGitHub <noreply@github.com>2018-09-05 09:14:14 -0500
commitcc653cb01f824313d22ffc569ba46bc14b447364 (patch)
treee32bba095f973d6969625f530ba5322874957e90 /src/theory/quantifiers/extended_rewrite.h
parentf7dd482aa1cec323273d98fde724dc072471a5f7 (diff)
Extended rewriter for string equalities (#2427)
Diffstat (limited to 'src/theory/quantifiers/extended_rewrite.h')
-rw-r--r--src/theory/quantifiers/extended_rewrite.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/theory/quantifiers/extended_rewrite.h b/src/theory/quantifiers/extended_rewrite.h
index 29f3b7bb3..da77bda51 100644
--- a/src/theory/quantifiers/extended_rewrite.h
+++ b/src/theory/quantifiers/extended_rewrite.h
@@ -231,8 +231,18 @@ class ExtendedRewriter
//--------------------------------------end generic utilities
//--------------------------------------theory-specific top-level calls
- /** extended rewrite arith */
+ /** extended rewrite arith
+ *
+ * If this method returns a non-null node ret', then ret is equivalent to
+ * ret'.
+ */
Node extendedRewriteArith(Node ret);
+ /** extended rewrite strings
+ *
+ * If this method returns a non-null node ret', then ret is equivalent to
+ * ret'.
+ */
+ Node extendedRewriteStrings(Node ret);
//--------------------------------------end theory-specific top-level calls
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback