summaryrefslogtreecommitdiff
path: root/src/expr/node_builder.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-09-20 01:08:32 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-09-20 01:08:32 +0000
commit1b30b256a0ec40ff431b83296bfe5aa0e099eb2e (patch)
tree91fb063e9cfcf360d601e21a19996995576ece7d /src/expr/node_builder.h
parent9eaf94708275337a4749b7ef2f44bf1c6746d8fc (diff)
bitvector rewriting for the core theory and testcases
Diffstat (limited to 'src/expr/node_builder.h')
-rw-r--r--src/expr/node_builder.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/expr/node_builder.h b/src/expr/node_builder.h
index 4a6dd794e..422cb47a8 100644
--- a/src/expr/node_builder.h
+++ b/src/expr/node_builder.h
@@ -902,13 +902,13 @@ expr::NodeValue* NodeBuilder<nchild_thresh>::constructNV() {
// check that there are the right # of children for this kind
Assert(getMetaKind() != kind::metakind::CONSTANT,
"Cannot make Nodes with NodeBuilder that have CONSTANT-kinded kinds");
- Assert(d_nv->d_nchildren >= kind::metakind::getLowerBoundForKind(getKind()),
+ Assert(getNumChildren() >= kind::metakind::getLowerBoundForKind(getKind()),
"Nodes with kind %s must have at least %u children (the one under "
"construction has %u)",
kind::kindToString(getKind()).c_str(),
kind::metakind::getLowerBoundForKind(getKind()),
getNumChildren());
- Assert(d_nv->d_nchildren <= kind::metakind::getUpperBoundForKind(getKind()),
+ Assert(getNumChildren() <= kind::metakind::getUpperBoundForKind(getKind()),
"Nodes with kind %s must have at most %u children (the one under "
"construction has %u)",
kind::kindToString(getKind()).c_str(),
@@ -1073,13 +1073,13 @@ expr::NodeValue* NodeBuilder<nchild_thresh>::constructNV() const {
// check that there are the right # of children for this kind
Assert(getMetaKind() != kind::metakind::CONSTANT,
"Cannot make Nodes with NodeBuilder that have CONSTANT-kinded kinds");
- Assert(d_nv->d_nchildren >= kind::metakind::getLowerBoundForKind(getKind()),
+ Assert(getNumChildren() >= kind::metakind::getLowerBoundForKind(getKind()),
"Nodes with kind %s must have at least %u children (the one under "
"construction has %u)",
kind::kindToString(getKind()).c_str(),
kind::metakind::getLowerBoundForKind(getKind()),
getNumChildren());
- Assert(d_nv->d_nchildren <= kind::metakind::getUpperBoundForKind(getKind()),
+ Assert(getNumChildren() <= kind::metakind::getUpperBoundForKind(getKind()),
"Nodes with kind %s must have at most %u children (the one under "
"construction has %u)",
kind::kindToString(getKind()).c_str(),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback