annotate paper/src/assert.c @ 30:55f67e448dcc

Add type system description
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 26 Jan 2017 11:03:51 +0900
parents 243d8dc4a292
children 4b26c8020229
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27
243d8dc4a292 Add akasha description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 void verifySpecification(struct Context* context, struct Tree* tree) {
243d8dc4a292 Add akasha description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 assert(!(maxHeight(tree->root, 1) > 2*minHeight(tree->root, 1)));
243d8dc4a292 Add akasha description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 return meta(context, EnumerateInputs);
243d8dc4a292 Add akasha description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 }