summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_util.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-02-22 16:35:20 -0600
committerGitHub <noreply@github.com>2021-02-22 16:35:20 -0600
commit4479383c2fd8a3b81ab63d66f843b09b5c9d0cd3 (patch)
treef4bf404bac05fd8592a09fda981061311692e8e2 /src/theory/quantifiers/term_util.h
parent71d72df0437607723256bbd7b4f28cd6c89fe40f (diff)
Move quantifiers attributes to quantifiers registry (#5929)
This moves the utility class beneath quantifiers registry.
Diffstat (limited to 'src/theory/quantifiers/term_util.h')
-rw-r--r--src/theory/quantifiers/term_util.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/theory/quantifiers/term_util.h b/src/theory/quantifiers/term_util.h
index 591b7f85f..036b63b27 100644
--- a/src/theory/quantifiers/term_util.h
+++ b/src/theory/quantifiers/term_util.h
@@ -42,9 +42,12 @@ typedef expr::Attribute<TermDepthAttributeId, uint64_t> TermDepthAttribute;
struct ContainsUConstAttributeId {};
typedef expr::Attribute<ContainsUConstAttributeId, uint64_t> ContainsUConstAttribute;
-//for quantifier instantiation level
+/**
+ * for quantifier instantiation level.
+ */
struct QuantInstLevelAttributeId {};
-typedef expr::Attribute<QuantInstLevelAttributeId, uint64_t> QuantInstLevelAttribute;
+typedef expr::Attribute<QuantInstLevelAttributeId, uint64_t>
+ QuantInstLevelAttribute;
/** Attribute for id number */
struct QuantIdNumAttributeId {};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback