• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
        • Mlib
          • Scopestack
          • Hid-tools
          • Filtering-by-name
          • Vl-interface-mocktype
          • Stripping-functions
          • Genblob
          • Expr-tools
          • Extract-vl-types
          • Hierarchy
            • Vl-design-toplevel
            • Vl-remove-unnecessary-elements
            • Vl-necessary-elements-transitive
            • Vl-interfacelist-everinstanced
            • Vl-dependent-elements-transitive
            • Vl-necessary-elements-direct
            • Vl-modulelist-everinstanced
            • Vl-dependent-elements-direct
            • Vl-design-deporder-modules
            • Vl-design-check-complete
            • Vl-design-upgraph
            • Immdeps
              • Immdeps-main
              • Vl-immdeps
              • Immdeps-top
              • Vl-immdepgraph
                • Vl-immdepgraph-p
                • Vl-immdepgraph-fix
                • Vl-immdepgraph-equiv
                • Make-vl-immdepgraph
                • Vl-immdepgraph->reportcard
                  • Vl-immdepgraph->deps
                  • Vl-immdepgraph->all-okp
                  • Change-vl-immdepgraph
                • Vl-depgraph
              • Vl-design-downgraph
              • Vl-collect-dependencies
              • Vl-hierarchy-free
            • Range-tools
            • Finding-by-name
            • Stmt-tools
            • Modnamespace
            • Flat-warnings
            • Reordering-by-name
            • Datatype-tools
            • Syscalls
            • Allexprs
            • Lvalues
            • Port-tools
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-immdepgraph

    Vl-immdepgraph->reportcard

    Get the reportcard field from a vl-immdepgraph.

    Signature
    (vl-immdepgraph->reportcard x) → reportcard
    Arguments
    x — Guard (vl-immdepgraph-p x).
    Returns
    reportcard — Type (vl-reportcard-p reportcard).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: vl-immdepgraph->reportcard$inline

    (defun vl-immdepgraph->reportcard$inline (x)
     (declare (xargs :guard (vl-immdepgraph-p x)))
     (declare (xargs :guard t))
     (let ((__function__ 'vl-immdepgraph->reportcard))
      (declare (ignorable __function__))
      (mbe
          :logic
          (b* ((x (and t x)))
            (vl-reportcard-fix (std::prod-cdr (std::prod-cdr (cdr x)))))
          :exec (std::prod-cdr (std::prod-cdr (cdr x))))))

    Theorem: vl-reportcard-p-of-vl-immdepgraph->reportcard

    (defthm vl-reportcard-p-of-vl-immdepgraph->reportcard
      (b* ((reportcard (vl-immdepgraph->reportcard$inline x)))
        (vl-reportcard-p reportcard))
      :rule-classes :rewrite)

    Theorem: vl-immdepgraph->reportcard$inline-of-vl-immdepgraph-fix-x

    (defthm vl-immdepgraph->reportcard$inline-of-vl-immdepgraph-fix-x
      (equal (vl-immdepgraph->reportcard$inline (vl-immdepgraph-fix x))
             (vl-immdepgraph->reportcard$inline x)))

    Theorem: vl-immdepgraph->reportcard$inline-vl-immdepgraph-equiv-congruence-on-x

    (defthm
     vl-immdepgraph->reportcard$inline-vl-immdepgraph-equiv-congruence-on-x
     (implies (vl-immdepgraph-equiv x x-equiv)
              (equal (vl-immdepgraph->reportcard$inline x)
                     (vl-immdepgraph->reportcard$inline x-equiv)))
     :rule-classes :congruence)