• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
        • Mlib
        • Server
        • Kit
          • Vl-model
          • Vl-json
            • Vl-json-opts-p
              • Parse-vl-json-opts
              • Vl-json-opts
              • Make-vl-json-opts
              • Change-vl-json-opts
              • Honsed-vl-json-opts
                • Make-honsed-vl-json-opts
                • *vl-json-opts-usage*
                • Vl-json-opts->strict
                • Vl-json-opts->separate
                • Vl-json-opts->search-path
                • Vl-json-opts->readme
                • Vl-json-opts->outfile
                • Vl-json-opts->mem
                • Vl-json-opts->help
                • Vl-json-opts->edition
                • Vl-json-opts->debug
            • Vl-gather
            • Vl-server
            • Vl-pp
            • Vl-lint
            • Vl-main
            • Vl-toolkit-other-command
            • Vl-help
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-json-opts-p

    Honsed-vl-json-opts

    Raw constructor for honsed vl-json-opts-p structures.

    Syntax:

    (honsed-vl-json-opts help readme outfile search-path 
                         separate edition strict mem debug)

    This is identical to vl-json-opts, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-json-opts

    (defun honsed-vl-json-opts (help readme outfile search-path
                                     separate edition strict mem debug)
     (declare (xargs :guard (and (booleanp help)
                                 (booleanp readme)
                                 (stringp outfile)
                                 (string-listp search-path)
                                 (booleanp separate)
                                 (vl-edition-p edition)
                                 (booleanp strict)
                                 (posp mem)
                                 (booleanp debug))))
     (mbe
      :logic (vl-json-opts help readme outfile search-path
                           separate edition strict mem debug)
      :exec
      (hons
       :vl-json-opts
       (hons
        (hons 'help help)
        (hons
           (hons 'readme readme)
           (hons (hons 'outfile outfile)
                 (hons (hons 'search-path search-path)
                       (hons (hons 'separate separate)
                             (hons (hons 'edition edition)
                                   (hons (hons 'strict strict)
                                         (hons (hons 'mem mem)
                                               (hons (hons 'debug debug)
                                                     nil))))))))))))