summaryrefslogtreecommitdiff
path: root/src/expr/metakind_template.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-05-27 21:19:36 +0000
committerMorgan Deters <mdeters@gmail.com>2010-05-27 21:19:36 +0000
commit6ac90a806f563981bc25fe06bb0dde35d62da7a9 (patch)
treecbf5f3b1d4877cd6a7469356cfabbea5242d1d8f /src/expr/metakind_template.h
parent671a3d6d5ae8a89a1bb846a78f5ec9c064edc655 (diff)
Remove isAtomic() as per 4/27/2010 meeting. Add comments about its potential design for later. Resolves bug 113, invalidates bugs 93 and 94.
Diffstat (limited to 'src/expr/metakind_template.h')
-rw-r--r--src/expr/metakind_template.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/expr/metakind_template.h b/src/expr/metakind_template.h
index 5b0ac150b..3c17507cf 100644
--- a/src/expr/metakind_template.h
+++ b/src/expr/metakind_template.h
@@ -127,22 +127,6 @@ ${metakind_kinds}
}/* metaKindOf(k) */
/**
- * Determine if a particular kind can be atomic or not. Some kinds
- * are never atomic (OR, NOT, ITE...), some can be atomic depending on
- * their children (PLUS might have an ITE under it, for instance).
- */
-static inline bool kindCanBeAtomic(Kind k) {
- static const bool canBeAtomic[] = {
- false, /* NULL_EXPR */
-${metakind_canbeatomic}
- false /* LAST_KIND */
- };/* canBeAtomic[] */
-
- return canBeAtomic[k];
-}/* kindCanBeAtomic(k) */
-
-
-/**
* Map a kind of the operator to the kind of the enclosing expression. For
* example, since the kind of functions is just VARIABLE, it should map
* VARIABLE to APPLY_UF.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback