Get the kind (tag) of a obligation-hyp structure.
(obligation-hyp-kind x) → kind
Function:
(defun obligation-hyp-kind$inline (x) (declare (xargs :guard (obligation-hypp x))) (let ((__function__ 'obligation-hyp-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((or (atom x) (eq (car x) :condition)) :condition) (t :binding)) :exec (car x))))
Theorem:
(defthm obligation-hyp-kind-possibilities (or (equal (obligation-hyp-kind x) :condition) (equal (obligation-hyp-kind x) :binding)) :rule-classes ((:forward-chaining :trigger-terms ((obligation-hyp-kind x)))))