mirror of https://github.com/YosysHQ/abc.git
Improving local BDD construction from local SOPs and local AIGs.
This commit is contained in:
parent
58e1041ad8
commit
266667d8b2
|
|
@ -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 );
|
||||
|
|
|
|||
Loading…
Reference in New Issue