Small change to gate names.

This commit is contained in:
Alan Mishchenko 2017-05-16 22:21:57 -07:00
parent 41314cea01
commit 867c90d114
1 changed files with 1 additions and 1 deletions

View File

@ -3109,7 +3109,7 @@ int Abc_GateToType( Abc_Obj_t * pObj )
if ( !strncmp(pGateName, "or", 2) ) return ABC_OPER_BIT_OR;
if ( !strncmp(pGateName, "nor", 3) ) return ABC_OPER_BIT_NOR;
if ( !strncmp(pGateName, "xor", 3) ) return ABC_OPER_BIT_XOR;
if ( !strncmp(pGateName, "nxor", 4) ) return ABC_OPER_BIT_NXOR;
if ( !strncmp(pGateName, "xnor", 4) ) return ABC_OPER_BIT_NXOR;
assert( 0 );
return -1;
}