view paper/src/assert.c @ 108:4b26c8020229

Fix return
author atton
date Mon, 13 Feb 2017 13:59:20 +0900
parents 243d8dc4a292
children 05068a4d0b52
line wrap: on
line source

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