summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2017-08-15 18:13:31 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2017-08-15 18:13:31 +0700
commit2280c2e8febcca8082ba87564469b8117e449cbd (patch)
tree05134d3af5f33c6890a3126f0cfe813d8ac0c7d0 /src/base/abci
parent2a0289f97bbf4b09859c7b8bef9adc5d74682309 (diff)
downloadabc-2280c2e8febcca8082ba87564469b8117e449cbd.tar.gz
abc-2280c2e8febcca8082ba87564469b8117e449cbd.tar.bz2
abc-2280c2e8febcca8082ba87564469b8117e449cbd.zip
Trying &bmcs with external solvers.
Diffstat (limited to 'src/base/abci')
-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 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 );