• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
          • Expression-sizing
          • Occform
          • Oprewrite
          • Expand-functions
          • Delayredux
          • Unparameterization
          • Caseelim
          • Split
          • Selresolve
          • Weirdint-elim
          • Vl-delta
          • Replicate-insts
          • Rangeresolve
          • Propagate
          • Clean-selects
          • Clean-params
          • Blankargs
          • Inline-mods
          • Expr-simp
          • Trunc
          • Always-top
            • Edgesynth
            • Stmtrewrite
            • Cblock
            • Vl-always-convert-regports
            • Vl-always-convert-regs
            • Stmttemps
            • Edgesplit
              • Vl-edgesplitstmt-p
              • Vl-edgesplit-make-new-alwayses
              • Vl-modulelist-edgesplit
              • Vl-edgesplit-make-new-always
              • Vl-alwayslist-edgesplit
              • Vl-edgesplit-atomicstmt-for-lvalue
              • Vl-edgesplit-stmt-for-lvalue
              • Vl-always-edgesplit
              • Vl-edgesplitstmt-lvalues
              • Vl-edgesplit-atomicstmt-lvalues
              • Vl-module-edgesplit
              • Vl-edgesplit-atomicstmt-p
              • Vl-design-edgesplit
              • Vl-always-check-reg
              • Vl-convert-regs
              • Latchsynth
              • Vl-always-check-regs
              • Vl-match-always-at-some-edges
              • Unelse
              • Vl-always-convert-reg
              • Vl-design-always-backend
              • Vl-stmt-guts
              • Vl-always-convert-regport
              • Vl-always-scary-regs
              • Eliminitial
              • Ifmerge
              • Vl-edge-control-p
              • Elimalways
            • Gatesplit
            • Gate-elim
            • Expression-optimization
            • Elim-supplies
            • Wildelim
            • Drop-blankports
            • Clean-warnings
            • Addinstnames
            • Custom-transform-hooks
            • Annotate
            • Latchcode
            • Elim-unused-vars
            • Problem-modules
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Edgesplit

    Vl-design-edgesplit

    Signature
    (vl-design-edgesplit x) → new-x
    Arguments
    x — Guard (vl-design-p x).
    Returns
    new-x — Type (vl-design-p new-x).

    Definitions and Theorems

    Function: vl-design-edgesplit

    (defun vl-design-edgesplit (x)
      (declare (xargs :guard (vl-design-p x)))
      (let ((__function__ 'vl-design-edgesplit))
        (declare (ignorable __function__))
        (b* ((x (vl-design-fix x))
             ((vl-design x) x))
          (change-vl-design x
                            :mods (vl-modulelist-edgesplit x.mods)))))

    Theorem: vl-design-p-of-vl-design-edgesplit

    (defthm vl-design-p-of-vl-design-edgesplit
      (b* ((new-x (vl-design-edgesplit x)))
        (vl-design-p new-x))
      :rule-classes :rewrite)