• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
        • Z3-installation
        • Smt-hint
        • Tutorial
        • Status
        • Developer
          • Verified
            • Uninterpreted-fn-cp
            • Smt-hint-interface
              • Smtlink-hint
                • Smtlink-hint-p
                • Make-smtlink-hint
                • Func
                • Smtlink-hint-fix
                • Maybe-smtlink-hint
                  • Maybe-smtlink-hint-fix
                  • Maybe-smtlink-hint-equiv
                  • Maybe-smtlink-hint-case
                  • Maybe-smtlink-hint-some
                    • Maybe-smtlink-hint-some->val
                    • Make-maybe-smtlink-hint-some
                      • Change-maybe-smtlink-hint-some
                    • Maybe-smtlink-hint-none
                    • Maybe-smtlink-hint-p
                  • Hint-pair
                  • Decl
                  • Binding
                  • Smtlink-hint-equiv
                  • Let-binding
                  • Change-smtlink-hint
                  • Smtlink-hint->expanded-clause-w/-hint
                  • Smtlink-hint->type-decl-list
                  • Smtlink-hint->fast-functions
                  • Smtlink-hint->expanded-g/type
                  • Smtlink-hint->smt-params
                  • Smtlink-hint->let-binding
                  • Smtlink-hint->hypotheses
                  • Smtlink-hint->fty-info
                  • Smtlink-hint->wrld-fn-len
                  • Smtlink-hint->symbols
                  • Smtlink-hint->smt-fname
                  • Smtlink-hint->smt-dir
                  • Smtlink-hint->smt-cnf
                  • Smtlink-hint->rm-file
                  • Smtlink-hint->main-hint
                  • Smtlink-hint->int-to-rat
                  • Smtlink-hint->functions
                  • Smtlink-hint->fty-types
                  • Smtlink-hint->custom-p
                  • Smtlink-hint->fty
                  • Smtlink-hint->abs
                • Smt-hint
                • Make-alist-fn-lst
                • True-list-fix
              • Function-expansion
              • Smt-config
              • Fty-support
              • Smt-computed-hints
              • Add-hypo-cp
              • Smt-hint-please
              • Type-extract-cp
              • Smt-extract
              • Smtlink-process-user-hint
              • Smt-basics
              • Smt-type-hyp
              • Smt-magic-fix
            • Trusted
        • Abnf
        • Vwsim
        • Isar
        • Wp-gen
        • Dimacs-reader
        • Pfcs
        • Legacy-defrstobj
        • C
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Maybe-smtlink-hint-some

    Make-maybe-smtlink-hint-some

    Basic constructor macro for maybe-smtlink-hint-some structures.

    Syntax
    (make-maybe-smtlink-hint-some [:val <val>]) 
    

    This is the usual way to construct maybe-smtlink-hint-some structures. It simply conses together a structure with the specified fields.

    This macro generates a new maybe-smtlink-hint-some structure from scratch. See also change-maybe-smtlink-hint-some, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-maybe-smtlink-hint-some

    (defmacro make-maybe-smtlink-hint-some (&rest args)
      (std::make-aggregate 'maybe-smtlink-hint-some
                           args '((:val))
                           'make-maybe-smtlink-hint-some
                           nil))

    Function: maybe-smtlink-hint-some

    (defun maybe-smtlink-hint-some (fty::val)
      (declare (xargs :guard (smtlink-hint-p fty::val)))
      (declare (xargs :guard t))
      (let ((acl2::__function__ 'maybe-smtlink-hint-some))
        (declare (ignorable acl2::__function__))
        (b* ((fty::val (mbe :logic (smtlink-hint-fix fty::val)
                            :exec fty::val)))
          fty::val)))