Of course, (Implies A B) is equal to (Or (not A) B) or to (Not (And A (Not B))) (by de Morgan's), but it might be common enough to have its own logicalbinop, especially in the face of Eqv and NEqv, each of which are at least asequally complex and already exist in ASR.
Of course,
(Implies A B)
is equal to(Or (not A) B)
or to(Not (And A (Not B)))
(by de Morgan's), but it might be common enough to have its ownlogicalbinop
, especially in the face ofEqv
andNEqv
, each of which are at least asequally complex and already exist in ASR.