• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • 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-gather
          • Vl-server
            • Vl-server-opts-p
              • Parse-vl-server-opts
              • Vl-server-opts
              • Make-vl-server-opts
              • Change-vl-server-opts
              • Honsed-vl-server-opts
                • Make-honsed-vl-server-opts
                • *vl-server-opts-usage*
                • Vl-server-opts->root
                • Vl-server-opts->readme
                • Vl-server-opts->public
                • Vl-server-opts->port
                • Vl-server-opts->mem
                • Vl-server-opts->help
            • 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-server-opts-p

    Honsed-vl-server-opts

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

    Syntax:

    (honsed-vl-server-opts help readme mem port root public)

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

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-server-opts

    (defun honsed-vl-server-opts (help readme mem port root public)
     (declare (xargs :guard (and (booleanp help)
                                 (booleanp readme)
                                 (posp mem)
                                 (posp port)
                                 (stringp root)
                                 (stringp public))))
     (mbe
      :logic (vl-server-opts help readme mem port root public)
      :exec
      (hons
       :vl-server-opts
       (hons
        (hons 'help help)
        (hons (hons 'readme readme)
              (hons (hons 'mem mem)
                    (hons (hons 'port port)
                          (hons (hons 'root root)
                                (hons (hons 'public public) nil)))))))))