Allow for binary input file in 'testdec' and 'testnpn'.

This commit is contained in:
Alan Mishchenko 2012-10-05 21:02:46 -07:00
parent b852db94fb
commit 369b5f479a
1 changed files with 4 additions and 2 deletions

View File

@ -406,7 +406,9 @@ Abc_TtStore_t * Abc_TtStoreLoad( char * pFileName, int nVarNum )
int nTruths = nFileSize / nBytes; int nTruths = nFileSize / nBytes;
if ( nFileSize == -1 ) if ( nFileSize == -1 )
return NULL; return NULL;
assert( nFileSize % nBytes == 0 ); if ( nFileSize % nBytes != 0 )
Abc_Print( 0, "The file size (%d) is divided by the truth table size (%d) with remainder (%d).\n",
nFileSize, nBytes, nFileSize % nBytes );
// read file contents // read file contents
pBuffer = Abc_FileRead( pFileName ); pBuffer = Abc_FileRead( pFileName );
// allocate data-structure // allocate data-structure