(lift-thm-asgfree-pairs-aux quant index witness) → terms
Function:
(defun lift-thm-asgfree-pairs-aux (quant index witness) (declare (xargs :guard (and (symbol-listp quant) (natp index)))) (let ((__function__ 'lift-thm-asgfree-pairs-aux)) (declare (ignorable __function__)) (cond ((endp quant) nil) (t (cons (cons 'mv-nth (cons index (cons witness 'nil))) (lift-thm-asgfree-pairs-aux (cdr quant) (1+ index) witness))))))
Theorem:
(defthm true-listp-of-lift-thm-asgfree-pairs-aux (b* ((terms (lift-thm-asgfree-pairs-aux quant index witness))) (true-listp terms)) :rule-classes :rewrite)