annotate paper/src/cbmc-assert.c @ 116:ed6719c301fc

Update slide
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 17:31:45 +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