Commit 266667d8 by Alan Mishchenko

Improving local BDD construction from local SOPs and local AIGs.

parent 58e1041a
......@@ -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 );
......
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