Get the kind (tag) of a branch-result structure.
(branch-result-kind acl2::x) → kind
Function:
(defun branch-result-kind$inline (acl2::x) (declare (xargs :guard (branch-resultp acl2::x))) (let ((__function__ 'branch-result-kind)) (declare (ignorable __function__)) (cond ((branchp acl2::x) :ok) (t :err))))
Theorem:
(defthm branch-result-kind-possibilities (or (equal (branch-result-kind acl2::x) :ok) (equal (branch-result-kind acl2::x) :err)) :rule-classes ((:forward-chaining :trigger-terms ((branch-result-kind acl2::x)))))