Skip to content

Commit

Permalink
Updating the print-out after the bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed May 30, 2024
1 parent 17b1ec7 commit 806a996
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/map/mapper/mapperCutUtils.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ Vec_Ptr_t * Map_CutInternalNodes( Map_Node_t * pObj, Map_Cut_t * pCut )
printf( "\n" );
printf( "Nodes:\n" );
Vec_PtrForEachEntry( Map_Node_t *, vAnds, pTemp, i )
printf( "%d=(%d,%d)\n", pTemp->Num, pTemp->p1->Num, pTemp->p2->Num );
printf( "%d = %s%d & %s%d\n", pTemp->Num,
Map_IsComplement(pTemp->p1) ? "~" : " ", Map_Regular(pTemp->p1)->Num,
Map_IsComplement(pTemp->p2) ? "~" : " ", Map_Regular(pTemp->p2)->Num );
printf( "\n" );
}
return vAnds;
Expand Down

0 comments on commit 806a996

Please sign in to comment.