summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2020-05-15 13:07:57 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2020-05-15 13:07:57 -0500
commit14af1d8783bda7a634575d8ef5846fc0dd453d03 (patch)
tree5739abf6bd7dde26ef4f7972b2db1d8c1ec8ec80
parentbf148a0efc2a14bed1cdd98248600dd1f896ee33 (diff)
Address review for psc
-rw-r--r--src/expr/proof_skolem_cache.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/expr/proof_skolem_cache.h b/src/expr/proof_skolem_cache.h
index aafba741d..e609492a3 100644
--- a/src/expr/proof_skolem_cache.h
+++ b/src/expr/proof_skolem_cache.h
@@ -25,7 +25,7 @@ namespace CVC4 {
/**
* A manager for skolems that can be used in proofs. This is designed to be
- * trusted interface to NodeManager::mkSkolem, where one
+ * a trusted interface to NodeManager::mkSkolem, where one
* must provide a definition for the skolem they create in terms of a
* predicate that the introduced variable is intended to witness.
*
@@ -103,8 +103,9 @@ class ProofSkolemCache
const std::string& comment = "",
int flags = NodeManager::SKOLEM_DEFAULT);
/**
- * Same as above, but for special case for (witness ((x T)) (= x t))
- * where T is the type of t. This skolem is unique for each t.
+ * Same as above, but for special case of (witness ((x T)) (= x t))
+ * where T is the type of t. This skolem is unique for each t, which we
+ * implement via an attribute on t.
*/
static Node mkPurifySkolem(Node t,
const std::string& prefix,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback