Specifies a printing callback handler. A printing callback handler is used to convert the variable block identifiers into something readable by the end user. Use bdd_blockfile_hook to pass a handler to BuDDy. A typical handler could look like this: void printhandler(FILE *o, int * block) { extern char **blocknames; fprintf(o, "%s", blocknames[block]); } NULL if no handler is needed.
|