annotate paper/src/cbmc-assert.c @ 90:f535393e4043

Add figure meta-hierarchy
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 09 Feb 2017 18:30:02 +0900
parents 50c2d2f1a186
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
77
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 void verifySpecification(struct Context* context,
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 struct Tree* tree) {
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 assert(!(maxHeight(tree->root, 1) >
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 2*minHeight(tree->root, 1)));
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 return meta(context, EnumerateInputs);
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 }
50c2d2f1a186 Update chapter akasha
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7