Merge pull request #25 from hriener/common

extraUtilPerm: Abc_ZddDiff.
This commit is contained in:
alanminko 2018-10-22 19:06:34 +07:00 committed by GitHub
commit 2050104f23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ int Abc_ZddDiff( Abc_ZddMan * p, int a, int b )
else
r0 = Abc_ZddDiff( p, A->False, B->False ),
r1 = Abc_ZddDiff( p, A->True, B->True ),
r = Abc_ZddUniqueCreate( p, A->Var, A->True, r0 );
r = Abc_ZddUniqueCreate( p, A->Var, r1, r0 );
return Abc_ZddCacheInsert( p, a, b, ABC_ZDD_OPER_DIFF, r );
}
int Abc_ZddUnion( Abc_ZddMan * p, int a, int b )