view paper/src/cbmc-assert.c @ 129:c1e9c7ab7691

Import poster graffle file from kaito-master
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 18 Feb 2017 11:16:52 +0900
parents 50c2d2f1a186
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);
}