diff options
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/abci/abc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 0e4f25f7..01132def 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -40082,7 +40082,12 @@ int Abc_CommandAbc9SBmc( Abc_Frame_t * pAbc, int argc, char ** argv ) } if ( pAbc->pGia == NULL ) { - Abc_Print( -1, "Abc_CommandAbc9SBmc(): There is no AIG.\n" ); + Abc_Print( -1, "Abc_CommandAbc9Bmcs(): There is no AIG.\n" ); + return 0; + } + if ( pPars->nProcs > 3 ) + { + Abc_Print( -1, "Abc_CommandAbc9Bmcs(): Currently this command can run at most 3 concurrent solvers.\n" ); return 0; } pAbc->Status = Bmcs_ManPerform( pAbc->pGia, pPars ); |