• 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
          • Vl-lintconfig-p
          • Lucid
          • Skip-detection
          • Vl-lintresult-p
            • Vl-lintresult
            • Make-vl-lintresult
            • Change-vl-lintresult
              • Honsed-vl-lintresult
              • Make-honsed-vl-lintresult
              • Vl-lintresult->sd-probs
              • Vl-lintresult->reportcard
              • Vl-lintresult->design0
              • Vl-lintresult->design
            • Lint-warning-suppression
            • Condcheck
            • Selfassigns
            • Leftright-check
            • Dupeinst-check
            • Oddexpr-check
            • Remove-toohard
            • Qmarksize-check
            • Portcheck
            • Duplicate-detect
            • Vl-print-certain-warnings
            • Duperhs-check
            • *vl-lint-help*
            • Lint-stmt-rewrite
            • Drop-missing-submodules
            • Check-case
            • Drop-user-submodules
            • Check-namespace
            • Vl-lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-lintresult-p

    Change-vl-lintresult

    A copying macro that lets you create new vl-lintresult-p structures, based on existing structures.

    Syntax:

    (change-vl-lintresult x 
                          [:design <design>] 
                          [:design0 <design0>] 
                          [:reportcard <reportcard>] 
                          [:sd-probs <sd-probs>]) 
    

    This is a sometimes useful alternative to make-vl-lintresult. It constructs a new vl-lintresult-p 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 defaggregate.

    Macro: change-vl-lintresult

    (defmacro change-vl-lintresult (x &rest args)
      (std::change-aggregate 'vl-lintresult
                             x args
                             '((:design . vl-lintresult->design)
                               (:design0 . vl-lintresult->design0)
                               (:reportcard . vl-lintresult->reportcard)
                               (:sd-probs . vl-lintresult->sd-probs))
                             'change-vl-lintresult
                             'nil))