• 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
            • Sd-problem-p
              • Sd-problem
              • Make-sd-problem
              • Change-sd-problem
              • Make-honsed-sd-problem
              • Honsed-sd-problem
                • Sd-problem->type
                • Sd-problem->priority
                • Sd-problem->key
                • Sd-problem->groupsize
                • Sd-problem->ctx
              • Sd-keylist-find-skipped
              • Sd-keylist->indicies
              • Sd-key-p
              • Sd-patalist-compare
              • Sd-analyze-ctxexprs
              • Sd-problemlist-p
              • Sd-patalist-p
              • Sd-keygen
              • Sd-patalist
              • Sd-keylist-p
              • Sd-analyze-modulelist
              • Sd-analyze-module-aux
              • Sd-analyze-module
              • Sd-pp-problem-long
              • Sd-analyze-modulelist-aux
              • Sd-problem-score
              • Sd-pp-problem-header
              • Sd-analyze-design
              • Sd-problem->
              • Sd-pp-problem-brief
              • Sd-pp-problemlist-long
              • Sd-pp-problemlist-brief
              • Sd-natlist-linear-increments-p
              • Sd-keylist-linear-increments-p
            • Vl-lintresult-p
            • 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
    • Sd-problem-p

    Honsed-sd-problem

    Raw constructor for honsed sd-problem-p structures.

    Syntax:

    (honsed-sd-problem type priority groupsize key ctx)

    This is identical to sd-problem, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-sd-problem

    (defun honsed-sd-problem (type priority groupsize key ctx)
     (declare (xargs :guard (and (symbolp type)
                                 (natp priority)
                                 (natp groupsize)
                                 (sd-key-p key)
                                 (vl-context1-p ctx))))
     (mbe
       :logic (sd-problem type priority groupsize key ctx)
       :exec (hons :sd-problem (hons (hons type priority)
                                     (hons groupsize (hons key ctx))))))