Adding miter construction with one bit-level output for each pair of word-level outputs (small fix).

This commit is contained in:
Alan Mishchenko 2019-04-14 20:47:26 -07:00
parent 812821554c
commit 1b59ec57da
1 changed files with 1 additions and 1 deletions

View File

@ -808,7 +808,7 @@ int Gia_ManHashAndMulti2( Gia_Man_t * p, Vec_Int_t * vLits )
}
int Gia_ManHashDualMiter( Gia_Man_t * p, Vec_Int_t * vOuts )
{
int i, iLit0, iLit1, iRes = 1;
int i, iLit0, iLit1, iRes = 0;
Vec_IntForEachEntryDouble( vOuts, iLit0, iLit1, i )
iRes = Gia_ManHashOr( p, iRes, Gia_ManHashXor(p, iLit0, iLit1) );
return iRes;