Commit 5a192f02 by Alan Mishchenko

Bug fix: alloing "dsat" to work on multi-output cones

parent ffb04d24
...@@ -1249,7 +1249,7 @@ int Abc_NtkDSat( Abc_Ntk_t * pNtk, ABC_INT64_T nConfLimit, ABC_INT64_T nInsLimit ...@@ -1249,7 +1249,7 @@ int Abc_NtkDSat( Abc_Ntk_t * pNtk, ABC_INT64_T nConfLimit, ABC_INT64_T nInsLimit
int RetValue;//, clk = clock(); int RetValue;//, clk = clock();
assert( Abc_NtkIsStrash(pNtk) ); assert( Abc_NtkIsStrash(pNtk) );
assert( Abc_NtkLatchNum(pNtk) == 0 ); assert( Abc_NtkLatchNum(pNtk) == 0 );
assert( Abc_NtkPoNum(pNtk) == 1 ); // assert( Abc_NtkPoNum(pNtk) == 1 );
pMan = Abc_NtkToDar( pNtk, 0, 0 ); pMan = Abc_NtkToDar( pNtk, 0, 0 );
RetValue = Fra_FraigSat( pMan, nConfLimit, nInsLimit, fAlignPol, fAndOuts, fVerbose ); RetValue = Fra_FraigSat( pMan, nConfLimit, nInsLimit, fAlignPol, fAndOuts, fVerbose );
pNtk->pModel = (int *)pMan->pData, pMan->pData = NULL; pNtk->pModel = (int *)pMan->pData, pMan->pData = NULL;
...@@ -3909,6 +3909,10 @@ Aig_ManPrintStats( pMan ); ...@@ -3909,6 +3909,10 @@ Aig_ManPrintStats( pMan );
// Saig_ManBmcMappingTest( pMan ); // Saig_ManBmcMappingTest( pMan );
} }
{
// void Pdr_ManEquivClasses( Aig_Man_t * pMan );
// Pdr_ManEquivClasses( pMan );
}
// Saig_MvManSimulate( pMan, 1 ); // Saig_MvManSimulate( pMan, 1 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment