diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-17 18:04:07 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-17 18:04:07 -0700 |
commit | cb4631e64e9a95cafc4ef31a60f006c7f067cf91 (patch) | |
tree | ea7a351e796da886f3f91955207972cc2e166be0 /src/opt/fxu | |
parent | 9f2c4e998898a8485cd4afb89ffc268752b1b2e1 (diff) | |
download | abc-cb4631e64e9a95cafc4ef31a60f006c7f067cf91.tar.gz abc-cb4631e64e9a95cafc4ef31a60f006c7f067cf91.tar.bz2 abc-cb4631e64e9a95cafc4ef31a60f006c7f067cf91.zip |
Compiler warnings.
Diffstat (limited to 'src/opt/fxu')
-rw-r--r-- | src/opt/fxu/fxuPrint.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/opt/fxu/fxuPrint.c b/src/opt/fxu/fxuPrint.c index d7a4d38a..b8220dea 100644 --- a/src/opt/fxu/fxuPrint.c +++ b/src/opt/fxu/fxuPrint.c @@ -114,9 +114,11 @@ void Fxu_MatrixPrint( FILE * pFile, Fxu_Matrix * p ) { fprintf( pFile, "Cube #%3d: ", pCube->iCube ); if ( pCube->pVar->ppPairs ) + { Fxu_CubeForEachPair( pCube, pPair, i ) fprintf( pFile, " <%d %d> (d=%d) (b=%d)", pPair->iCube1, pPair->iCube2, pPair->pDiv->Num, pPair->nBase ); + } fprintf( pFile, "\n" ); } fprintf( pFile, "\n" ); |