view paper/src/cbmc-assert.c @ 77:50c2d2f1a186

Update chapter akasha
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Wed, 08 Feb 2017 14:27:06 +0900
parents
children
line wrap: on
line source

void verifySpecification(struct Context* context,
                         struct Tree* tree) {
    assert(!(maxHeight(tree->root, 1) >
             2*minHeight(tree->root, 1)));
    return meta(context, EnumerateInputs);
}