• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
      • X86isa
        • Program-execution
        • Sdm-instruction-set-summary
        • Tlb
        • Running-linux
        • Introduction
        • Asmtest
        • X86isa-build-instructions
        • Publications
        • Contributors
        • Machine
        • Implemented-opcodes
        • To-do
        • Proof-utilities
          • System-level-marking-view-proof-utilities
          • Non-marking-view-proof-utilities
          • App-view-proof-utilities
          • Subset-p
          • Disjoint-p
          • Pos
          • Member-p
          • No-duplicates-p
          • Common-system-level-utils
          • Debugging-code-proofs
          • General-memory-utils
            • Separate
            • Disjoint-p$
            • X86-row-wow-thms
          • Peripherals
          • Model-validation
          • Modelcalls
          • Concrete-simulation-examples
          • Utils
          • Debugging-code-proofs
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • General-memory-utils

    Disjoint-p$

    Signature
    (disjoint-p$ x y) → *
    Arguments
    x — Guard (true-listp x).
    y — Guard (true-listp y).

    Definitions and Theorems

    Function: disjoint-p$

    (defun disjoint-p$ (x y)
      (declare (xargs :guard (and (true-listp x) (true-listp y))))
      (let ((__function__ 'disjoint-p$))
        (declare (ignorable __function__))
        (disjoint-p x y)))

    Theorem: rewrite-disjoint-p$-to-disjoint-p

    (defthm rewrite-disjoint-p$-to-disjoint-p
      (equal (disjoint-p$ x y)
             (disjoint-p x y)))