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