summaryrefslogtreecommitdiff
path: root/src/theory/strings/term_registry.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-08-12 15:51:15 -0500
committerGitHub <noreply@github.com>2020-08-12 15:51:15 -0500
commitbd184f9813a91d8f60eb0521893a5154b9f92357 (patch)
treec643c3422b207c27140122a7af9676e7912c4d5c /src/theory/strings/term_registry.h
parent2174ab36023326cd998565bbf35d31c38bc10594 (diff)
(proof-new) Proof support in the strings term registry. (#4876)
Adds basic support for proofs in the strings term registry. This code is not yet active until further parts of proof-new are merged.
Diffstat (limited to 'src/theory/strings/term_registry.h')
-rw-r--r--src/theory/strings/term_registry.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/strings/term_registry.h b/src/theory/strings/term_registry.h
index 9a66690b8..2048abec1 100644
--- a/src/theory/strings/term_registry.h
+++ b/src/theory/strings/term_registry.h
@@ -278,7 +278,7 @@ class TermRegistry
* If n is an atomic term, the method registerTermAtomic is called for n
* and s = LENGTH_SPLIT and no lemma is returned.
*/
- Node getRegisterTermLemma(Node n);
+ TrustNode getRegisterTermLemma(Node n);
/**
* Get the lemma required for registering the length information for
* atomic term n given length status s. For details, see registerTermAtomic.
@@ -287,9 +287,9 @@ class TermRegistry
* argument reqPhase, which should be processed by a call to requiredPhase by
* the caller of this method.
*/
- Node getRegisterTermAtomicLemma(Node n,
- LengthStatus s,
- std::map<Node, bool>& reqPhase);
+ TrustNode getRegisterTermAtomicLemma(Node n,
+ LengthStatus s,
+ std::map<Node, bool>& reqPhase);
};
} // namespace strings
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback