• 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
                  • Func-fix
                  • Func-p
                  • Make-func
                    • Func-equiv
                    • Func->flattened-returns
                    • Func->flattened-formals
                    • Change-func
                    • Func->more-returns
                    • Func->expansion-depth
                    • Func->returns
                    • Func->formals
                    • Func->name
                    • Func->guard
                    • Func-list
                  • Smtlink-hint-fix
                  • Maybe-smtlink-hint
                  • 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
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Bitcoin
        • Riscv
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Func

    Make-func

    Basic constructor macro for func structures.

    Syntax
    (make-func [:name <name>] 
               [:formals <formals>] 
               [:guard <guard>] 
               [:returns <returns>] 
               [:more-returns <more-returns>] 
               [:expansion-depth <expansion-depth>] 
               [:flattened-formals <flattened-formals>] 
               [:flattened-returns <flattened-returns>]) 
    

    This is the usual way to construct func structures. It simply conses together a structure with the specified fields.

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-func

    (defmacro make-func (&rest args)
      (std::make-aggregate 'func
                           args
                           '((:name)
                             (:formals)
                             (:guard make-hint-pair)
                             (:returns)
                             (:more-returns)
                             (:expansion-depth . 1)
                             (:flattened-formals)
                             (:flattened-returns))
                           'make-func
                           nil))

    Function: func

    (defun func (name formals guard
                      returns more-returns expansion-depth
                      flattened-formals flattened-returns)
      (declare (xargs :guard (and (symbolp name)
                                  (decl-listp formals)
                                  (hint-pair-p guard)
                                  (decl-listp returns)
                                  (hint-pair-listp more-returns)
                                  (natp expansion-depth)
                                  (symbol-listp flattened-formals)
                                  (symbol-listp flattened-returns))))
      (declare (xargs :guard t))
      (let ((acl2::__function__ 'func))
        (declare (ignorable acl2::__function__))
        (b* ((name (mbe :logic (symbol-fix name)
                        :exec name))
             (formals (mbe :logic (decl-list-fix formals)
                           :exec formals))
             (guard (mbe :logic (hint-pair-fix guard)
                         :exec guard))
             (returns (mbe :logic (decl-list-fix returns)
                           :exec returns))
             (more-returns (mbe :logic (hint-pair-list-fix more-returns)
                                :exec more-returns))
             (expansion-depth (mbe :logic (nfix expansion-depth)
                                   :exec expansion-depth))
             (flattened-formals
                  (mbe :logic (symbol-list-fix flattened-formals)
                       :exec flattened-formals))
             (flattened-returns
                  (mbe :logic (symbol-list-fix flattened-returns)
                       :exec flattened-returns)))
          (list (cons 'name name)
                (cons 'formals formals)
                (cons 'guard guard)
                (cons 'returns returns)
                (cons 'more-returns more-returns)
                (cons 'expansion-depth expansion-depth)
                (cons 'flattened-formals
                      flattened-formals)
                (cons 'flattened-returns
                      flattened-returns)))))