• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • 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
        • Poseidon-main-definition
          • Param
          • Hashp
          • Absorb1
          • Sponge
          • Hash
          • All-rounds
          • Sponge-validp
          • Squeeze1
          • Sub-words-partial
          • Squeeze
          • Round
          • Partial-rounds
          • Mode
            • Mode-case
            • Mode-fix
            • Mode-equiv
            • Modep
            • Mode-squeeze
            • Mode-absorb
              • Make-mode-absorb
                • Change-mode-absorb
              • Mode-kind
            • Full-rounds
            • Permute
            • Sub-words
            • Add-round-constants
            • Mix-layer
            • Dot-product
            • Absorb
            • Pow-by-alpha
            • Param->size
            • Sub-words-full
            • Param->capacity-then-rate-p
            • Param->partial-last-p
            • Param-additional-theorems
            • Param->rounds
            • Param->descending-p
            • Init-sponge
          • Poseidon-instantiations
        • 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
    • Mode-absorb

    Make-mode-absorb

    Basic constructor macro for mode-absorb structures.

    Syntax
    (make-mode-absorb ) 
    

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

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

    Definition

    This is an ordinary make- macro introduced by fty::defprod.

    Macro: make-mode-absorb

    (defmacro make-mode-absorb (&rest args)
      (std::make-aggregate 'mode-absorb
                           args 'nil
                           'make-mode-absorb
                           nil))

    Function: mode-absorb

    (defun mode-absorb nil
      (declare (xargs :guard t))
      (let ((__function__ 'mode-absorb))
        (declare (ignorable __function__))
        (cons :absorb (list))))