We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following function fails to compile if -D__STDC_FORMAT_MACROS is not added to the compiler flags;
-D__STDC_FORMAT_MACROS
void print_node_bdd(Abc_Ntk_t * ntk) { Abc_Obj_t * obj; int i; Abc_NtkForEachNode(ntk, obj, i) { DdNode * node = (DdNode*) obj->pData; printf("Object: %d\n", obj->Id); fflush(0); //printf("Fanin: %d\n", Abc_ObjFaninNum(obj)); fflush(0); while (1) { if (node == Cudd_ReadOne((DdManager*)ntk->pManFunc)) { //printf("one!\n"); break; } else if (node == Cudd_ReadLogicZero((DdManager*)ntk->pManFunc)) { //printf("zero!\n"); break; } printf("\tVar: %hd (%08" PRIXPTR ")\n", Cudd_Regular(node)->index, (uintptr_t) node); fflush(0); DdNode * first_node; DdGen* gen = Cudd_FirstNode((DdManager*) ntk->pManFunc, node, &first_node); Cudd_GenFree(gen); node = Cudd_E(node); } } }
See https://github.com/mozilla/rr/blob/master/CMakeLists.txt#L45 and tensorflow/tensorflow#12998 (comment)
The text was updated successfully, but these errors were encountered:
The issue is the PRIXPTR define ends up missing...
Sorry, something went wrong.
ace2: Define __STDC_XXX_MACROS.
effd73d
Fixes verilog-to-routing#369.
e26e66c
Fixes #369.
Merge pull request verilog-to-routing#369 from SymbiFlow/sdcparser-fix
00847b7
Sdcparser fix
No branches or pull requests
The following function fails to compile if
-D__STDC_FORMAT_MACROS
is not added to the compiler flags;See https://github.com/mozilla/rr/blob/master/CMakeLists.txt#L45 and tensorflow/tensorflow#12998 (comment)
The text was updated successfully, but these errors were encountered: