(rename-const const subst) → new-const
Function:
(defun rename-const (const subst) (declare (xargs :guard (and (constp const) (ident-ident-alistp subst)))) (declare (ignorable const subst)) (let ((__function__ 'rename-const)) (declare (ignorable __function__)) (const-fix const)))
Theorem:
(defthm constp-of-rename-const (b* ((new-const (rename-const const subst))) (constp new-const)) :rule-classes :rewrite)