• 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-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

    Vl-server-opts

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

    Syntax:

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

    This is the lowest-level constructor for vl-server-opts-p structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-vl-server-opts or change-vl-server-opts instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

    The vl-server-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-server-opts instead.

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-server-opts

    (defun 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))))
     (cons
      :vl-server-opts
      (cons
         (cons 'help help)
         (cons (cons 'readme readme)
               (cons (cons 'mem mem)
                     (cons (cons 'port port)
                           (cons (cons 'root root)
                                 (cons (cons 'public public) nil))))))))