• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
          • Svtv-data
          • Defsvtv$
          • Svtv-run
          • Defsvtv-phasewise
          • Svtv
          • Svtv-spec
            • Svtv-spec-run
            • Svtv-spec-fix
            • Make-svtv-spec
            • Svtv-spec-p
            • Svtv-spec-equiv
            • Svtv-spec->override-test-alists
            • Svtv-spec->override-val-alists
            • Svtv-spec->cycle-phases
            • Change-svtv-spec
            • Svtv-spec->namemap
            • Svtv-spec->initst-alist
            • Svtv-spec->in-alists
            • Svtv-spec->probes
              • Svtv-spec->fsm
            • Defsvtv
            • Process.lisp
            • Svtv-doc
            • Svtv-chase$
            • Svtv-versus-stv
            • Svtv-debug-fsm
            • Structure.lisp
            • Svtv-debug
            • Def-pipeline-thm
            • Expand.lisp
            • Def-cycle-thm
            • Svtv-utilities
            • Svtv-debug$
            • Defsvtv$-phasewise
          • Svex-decomposition-methodology
          • Sv-versus-esim
          • Svex-decomp
          • Svex-compose-dfs
          • Svex-compilation
          • Moddb
          • Svmods
          • Svstmt
          • Sv-tutorial
          • Expressions
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Svtv-spec

    Svtv-spec->probes

    Get the probes field from a svtv-spec.

    Signature
    (svtv-spec->probes x) → probes
    Arguments
    x — Guard (svtv-spec-p x).
    Returns
    probes — Type (svtv-probealist-p probes).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: svtv-spec->probes$inline

    (defun svtv-spec->probes$inline (x)
      (declare (xargs :guard (svtv-spec-p x)))
      (declare (xargs :guard t))
      (let ((__function__ 'svtv-spec->probes))
        (declare (ignorable __function__))
        (mbe :logic
             (b* ((x (and t x)))
               (svtv-probealist-fix (cdr (std::da-nth 3 x))))
             :exec (cdr (std::da-nth 3 x)))))

    Theorem: svtv-probealist-p-of-svtv-spec->probes

    (defthm svtv-probealist-p-of-svtv-spec->probes
      (b* ((probes (svtv-spec->probes$inline x)))
        (svtv-probealist-p probes))
      :rule-classes :rewrite)

    Theorem: svtv-spec->probes$inline-of-svtv-spec-fix-x

    (defthm svtv-spec->probes$inline-of-svtv-spec-fix-x
      (equal (svtv-spec->probes$inline (svtv-spec-fix x))
             (svtv-spec->probes$inline x)))

    Theorem: svtv-spec->probes$inline-svtv-spec-equiv-congruence-on-x

    (defthm svtv-spec->probes$inline-svtv-spec-equiv-congruence-on-x
      (implies (svtv-spec-equiv x x-equiv)
               (equal (svtv-spec->probes$inline x)
                      (svtv-spec->probes$inline x-equiv)))
      :rule-classes :congruence)