summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-10-04 19:36:41 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-10-04 19:36:41 -0700
commit734435f441791dbc74211b6c0cc5cf261d1da669 (patch)
tree74f1dfdf3b643a5e8fd1a2b083f22c0b1addb61e /src/base
parent24083998ab2e6abdb0cacd90a8f45a01201aa7ce (diff)
downloadabc-734435f441791dbc74211b6c0cc5cf261d1da669.tar.gz
abc-734435f441791dbc74211b6c0cc5cf261d1da669.tar.bz2
abc-734435f441791dbc74211b6c0cc5cf261d1da669.zip
Deriving cell mapping with &if -kz.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 57263ed4..15bfc76b 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -15426,6 +15426,11 @@ int Abc_CommandIf( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "LUT size (%d) is more than the number of variables in the DSD manager (%d).\n", pPars->nLutSize, If_DsdManVarNum(pDsdMan) );
return 1;
}
+ if ( pPars->fDeriveLuts && If_DsdManGetCellStr(pDsdMan) == NULL )
+ {
+ Abc_Print( -1, "DSD manager is not matched with any particular cell.\n" );
+ return 1;
+ }
pPars->fCutMin = 1;
pPars->fUseDsd = 1;
If_DsdManSetNewAsUseless( pDsdMan );
@@ -16143,7 +16148,7 @@ int Abc_CommandDsdMatch( Abc_Frame_t * pAbc, int argc, char ** argv )
char * pStructCur = If_DsdManGetCellStr( pDsdMan );
if ( pStructCur && strcmp(pStructCur, pStruct) )
{
- Abc_Print( -1, "DSD manager matched with cell %s needs to be cleaned before matching with cell %s.\n", pStructCur, pStruct );
+ Abc_Print( -1, "DSD manager matched with cell %s should be cleaned by \"dsd_filter -m\" before matching with cell %s.\n", pStructCur, pStruct );
return 0;
}
Id_DsdManTuneStr( pDsdMan, pStruct, nConfls, nProcs, fVerbose );