Commit 11f1a249 by Alan Mishchenko

Updating GIG parser.

parent a0930910
...@@ -1205,7 +1205,7 @@ int IoCommandReadGig( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -1205,7 +1205,7 @@ int IoCommandReadGig( Abc_Frame_t * pAbc, int argc, char ** argv )
// set the new network // set the new network
pAig = Gia_ManReadGig( pFileName ); pAig = Gia_ManReadGig( pFileName );
//Abc_FrameUpdateGia( pAbc, pAig ); Abc_FrameUpdateGia( pAbc, pAig );
return 0; return 0;
usage: usage:
......
...@@ -62,7 +62,7 @@ int Kit_GraphToGiaInternal( Gia_Man_t * pMan, Kit_Graph_t * pGraph, int fHash ) ...@@ -62,7 +62,7 @@ int Kit_GraphToGiaInternal( Gia_Man_t * pMan, Kit_Graph_t * pGraph, int fHash )
if ( fHash ) if ( fHash )
pNode->iFunc = Gia_ManHashAnd( pMan, pAnd0, pAnd1 ); pNode->iFunc = Gia_ManHashAnd( pMan, pAnd0, pAnd1 );
else else
pNode->iFunc = Gia_ManAppendAnd( pMan, pAnd0, pAnd1 ); pNode->iFunc = Gia_ManAppendAnd2( pMan, pAnd0, pAnd1 );
} }
// complement the result if necessary // complement the result if necessary
return Abc_LitNotCond( pNode->iFunc, Kit_GraphIsComplement(pGraph) ); return Abc_LitNotCond( pNode->iFunc, Kit_GraphIsComplement(pGraph) );
......
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