• 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
        • Lint
        • Mlib
          • Scopestack
          • Filtering-by-name
          • Vl-namefactory
          • Substitution
          • Allexprs
          • Hid-tools
          • Vl-consteval
          • Range-tools
          • Lvalexprs
          • Hierarchy
            • Vl-remove-unnecessary-elements
            • Vl-necessary-elements-transitive
            • Vl-dependent-elements-transitive
            • Vl-necessary-elements-direct
            • Vl-modulelist-everinstanced
            • Vl-dependent-elements-direct
            • Vl-modulelist-toplevel
            • 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
            • Finding-by-name
            • Expr-tools
            • Expr-slicing
            • Stripping-functions
            • Stmt-tools
            • Modnamespace
            • Vl-parse-expr-from-str
            • Welltyped
            • Reordering-by-name
            • Flat-warnings
            • Genblob
            • Expr-building
            • Datatype-tools
            • Syscalls
            • Relocate
            • Expr-cleaning
            • Namemangle
            • Caremask
            • Port-tools
            • Lvalues
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-immdepgraph

    Change-vl-immdepgraph

    Modifying constructor for vl-immdepgraph structures.

    Syntax
    (change-vl-immdepgraph x 
                           [:all-okp <all-okp>] 
                           [:deps <deps>] 
                           [:reportcard <reportcard>]) 
    

    This is an often useful alternative to make-vl-immdepgraph.

    We construct a new vl-immdepgraph structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

    This is an ordinary change- macro introduced by defprod.

    Macro: change-vl-immdepgraph

    (defmacro change-vl-immdepgraph (x &rest args)
      (std::change-aggregate
           'vl-immdepgraph
           x args
           '((:all-okp . vl-immdepgraph->all-okp)
             (:deps . vl-immdepgraph->deps)
             (:reportcard . vl-immdepgraph->reportcard))
           'change-vl-immdepgraph
           'remake-vl-immdepgraph))