Get the pythonpath field from a smtlink-config.
(smtlink-config->pythonpath x) → pythonpath
This is an ordinary field accessor created by defprod.
Function:
(defun smtlink-config->pythonpath$inline (x) (declare (xargs :guard (smtlink-config-p x))) (declare (xargs :guard t)) (let ((acl2::__function__ 'smtlink-config->pythonpath)) (declare (ignorable acl2::__function__)) (mbe :logic (b* ((x (and t x))) (str-fix (cdr (std::da-nth 4 x)))) :exec (cdr (std::da-nth 4 x)))))
Theorem:
(defthm stringp-of-smtlink-config->pythonpath (b* ((pythonpath (smtlink-config->pythonpath$inline x))) (stringp pythonpath)) :rule-classes :rewrite)
Theorem:
(defthm smtlink-config->pythonpath$inline-of-smtlink-config-fix-x (equal (smtlink-config->pythonpath$inline (smtlink-config-fix x)) (smtlink-config->pythonpath$inline x)))
Theorem:
(defthm smtlink-config->pythonpath$inline-smtlink-config-equiv-congruence-on-x (implies (smtlink-config-equiv x x-equiv) (equal (smtlink-config->pythonpath$inline x) (smtlink-config->pythonpath$inline x-equiv))) :rule-classes :congruence)