Skip to content

Commit ab1e50b

Browse files
committed
Updating print-out.
1 parent 7bf9103 commit ab1e50b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/aig/gia/giaMulFind.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,11 @@ void Gia_ManMulFindPrintOne( Vec_Wec_t * vTerms, int m, int fBooth, int fInputLi
875875
Vec_Int_t * vIn0 = Vec_WecEntry(vTerms, 3*m+0);
876876
Vec_Int_t * vIn1 = Vec_WecEntry(vTerms, 3*m+1);
877877
Vec_Int_t * vOut = Vec_WecEntry(vTerms, 3*m+2);
878-
printf( "%sooth %ssigned %d x %d: ", fBooth ? "B" : "Non-b", Vec_IntEntryLast(vOut) ? "" : "un", Vec_IntSize(vIn0), Vec_IntSize(vIn1) );
878+
printf( "%sooth %s%ssigned %d x %d: ",
879+
fBooth==1 ? "B" : "Non-b",
880+
fBooth>=1 ? "radix-4 " : "",
881+
Vec_IntEntryLast(vOut) ? "" : "un",
882+
Vec_IntSize(vIn0), Vec_IntSize(vIn1) );
879883
Gia_ManMulFindPrintSet( vIn0, fInputLits, 0 );
880884
printf( " * " );
881885
Gia_ManMulFindPrintSet( vIn1, fInputLits, 0 );

0 commit comments

Comments
 (0)