Improving local BDD construction from local SOPs and local AIGs.

This commit is contained in:
Alan Mishchenko 2013-04-28 16:33:42 -07:00
parent 58e1041ad8
commit 266667d8b2
1 changed files with 4 additions and 1 deletions

View File

@ -1029,7 +1029,10 @@ int Abc_NtkToBdd( Abc_Ntk_t * pNtk )
return Abc_NtkSopToBdd(pNtk);
}
if ( Abc_NtkHasSop(pNtk) )
return Abc_NtkSopToBdd(pNtk);
{
Abc_NtkSopToAig(pNtk);
return Abc_NtkAigToBdd(pNtk);
}
if ( Abc_NtkHasAig(pNtk) )
return Abc_NtkAigToBdd(pNtk);
assert( 0 );