mirror of https://github.com/YosysHQ/abc.git
Supporting 'distinct' keyword in SMT-LIB parser.
This commit is contained in:
parent
4b7dd69260
commit
ffcb4afbb5
|
|
@ -168,8 +168,8 @@ static inline int Smt_StrToType( char * pName, int * pfSigned )
|
|||
Type = WLC_OBJ_LOGIC_XOR; // 26: logic OR
|
||||
else if ( !strcmp(pName, "bvcomp") )
|
||||
Type = WLC_OBJ_COMP_EQU; // 27: compare equal
|
||||
// else if ( !strcmp(pName, "") )
|
||||
// Type = WLC_OBJ_COMP_NOTEQU; // 28: compare not equal
|
||||
else if ( !strcmp(pName, "distinct") )
|
||||
Type = WLC_OBJ_COMP_NOTEQU; // 28: compare not equal
|
||||
else if ( !strcmp(pName, "bvult") )
|
||||
Type = WLC_OBJ_COMP_LESS; // 29: compare less
|
||||
else if ( !strcmp(pName, "bvugt") )
|
||||
|
|
|
|||
Loading…
Reference in New Issue