Initialize a static environment.
(init-senv) → env
The environment is initially empty.
Function:
(defun init-senv nil (declare (xargs :guard t)) (let ((__function__ 'init-senv)) (declare (ignorable __function__)) (make-senv :identifiers nil)))
Theorem:
(defthm senvp-of-init-senv (b* ((env (init-senv))) (senvp env)) :rule-classes :rewrite)