summaryrefslogtreecommitdiff
path: root/src/expr/node_value.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
committerMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
commit2a9e6970b971eb0a9ac4c216fe5f5f1542e195e0 (patch)
tree23631643798b923b7e9883286296269c8f5e772d /src/expr/node_value.h
parent1e59e3f37ecb7b84371691358f3eb3804a845c04 (diff)
fixed CNF conversion, and more modular; CNF conversion command line option; various cleanups; renamed numChildren() to getNumChildren() and added it to NodeBuilder interface; fancier, non-exponential CNF conversion with variable introduction is still buggy (?)
Diffstat (limited to 'src/expr/node_value.h')
-rw-r--r--src/expr/node_value.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/expr/node_value.h b/src/expr/node_value.h
index 84df5957a..847b6b153 100644
--- a/src/expr/node_value.h
+++ b/src/expr/node_value.h
@@ -170,7 +170,8 @@ public:
unsigned getId() const { return d_id; }
Kind getKind() const { return (Kind) d_kind; }
- unsigned numChildren() const { return d_nchildren; }
+ unsigned getNumChildren() const { return d_nchildren; }
+
std::string toString() const;
void toStream(std::ostream& out) const;
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback