• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
        • Svex-decomposition-methodology
        • Sv-versus-esim
        • Svex-decomp
        • Svex-compose-dfs
        • Svex-compilation
        • Moddb
        • Svmods
        • Svstmt
        • Sv-tutorial
        • Expressions
          • Rewriting
          • Svex
          • Bit-blasting
          • Functions
          • 4vmask
          • Why-infinite-width
          • Svex-vars
          • Evaluation
            • Svex-xeval
            • Svex-mono-eval
            • Svex-eval
            • Svex-apply
            • Svex-env
            • Svex-alist-eval
            • Svar-boolmasks-lookup
            • Svex-s4eval
            • Svexlist-unquote
            • Svex-alist-eval-for-symbolic
            • Svexlist-eval
            • Svexlist-quotesp
              • Svar-boolmasks
              • Svexlist-s4eval
              • Svexlist-eval-for-symbolic
            • Values
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Evaluation

    Svexlist-quotesp

    Signature
    (svexlist-quotesp x) → *
    Arguments
    x — Guard (svexlist-p x).

    Definitions and Theorems

    Function: svexlist-quotesp

    (defun svexlist-quotesp (x)
      (declare (xargs :guard (svexlist-p x)))
      (let ((__function__ 'svexlist-quotesp))
        (declare (ignorable __function__))
        (if (atom x)
            t
          (and (eq (svex-kind (car x)) :quote)
               (svexlist-quotesp (cdr x))))))

    Theorem: svexlist-quotesp-of-svexlist-fix-x

    (defthm svexlist-quotesp-of-svexlist-fix-x
      (equal (svexlist-quotesp (svexlist-fix x))
             (svexlist-quotesp x)))

    Theorem: svexlist-quotesp-svexlist-equiv-congruence-on-x

    (defthm svexlist-quotesp-svexlist-equiv-congruence-on-x
      (implies (svexlist-equiv x x-equiv)
               (equal (svexlist-quotesp x)
                      (svexlist-quotesp x-equiv)))
      :rule-classes :congruence)