Recognizer for fgl-congruence-rune structures.
(fgl-congruence-rune-p x) → *
Function:
(defun fgl-congruence-rune-p (x) (declare (xargs :guard t)) (let ((__function__ 'fgl-congruence-rune-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :congruence) (true-listp (cdr x)) (eql (len (cdr x)) 1) (b* ((name (std::da-nth 0 (cdr x)))) (pseudo-fnsym-p name)))))
Theorem:
(defthm consp-when-fgl-congruence-rune-p (implies (fgl-congruence-rune-p x) (consp x)) :rule-classes :compound-recognizer)