• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • 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
        • Aleobft
        • Aleovm
        • Leo
          • Grammar
          • Early-version
            • Json2ast
            • Testing
            • Definition
              • Flattening
              • Abstract-syntax
                • Expression
                • Syntax-abstraction
                • Statement
                • Files
                • Input-files
                • Identifiers
                • Types
                • Struct-init
                • Branch
                • Statements
                • Format-strings
                • Input-syntax-abstraction
                • Expressions
                  • Binop
                    • Binopp
                    • Binop-case
                    • Binop-fix
                    • Binop-kind
                    • Binop-equiv
                    • Binop-add
                    • Binop-sub
                    • Binop-gt
                    • Binop-sub-wrapped
                    • Binop-shr-wrapped
                    • Binop-shr
                    • Binop-shl-wrapped
                    • Binop-shl
                    • Binop-rem-wrapped
                    • Binop-rem
                    • Binop-pow-wrapped
                    • Binop-pow
                    • Binop-or
                    • Binop-nor
                    • Binop-ne
                    • Binop-nand
                    • Binop-mul-wrapped
                    • Binop-mul
                      • Make-binop-mul
                      • Change-binop-mul
                      • Binop-lt
                      • Binop-le
                      • Binop-ge
                      • Binop-eq
                      • Binop-div-wrapped
                      • Binop-div
                      • Binop-bitxor
                      • Binop-bitior
                      • Binop-bitand
                      • Binop-and
                      • Binop-add-wrapped
                    • Unop
                    • Expression-option
                    • Struct-init-list-result
                    • Expression-option-result
                    • Unop-result
                    • Struct-init-result
                    • Expression-result
                    • Expression-list-result
                    • Binop-result
                    • Expression-fixtypes
                  • Output-files
                  • Addresses
                  • Literals
                  • Characters
                  • Expression-list
                  • Statement-list
                  • Output-syntax-abstraction
                  • Struct-init-list
                  • Branch-list
                  • Annotations
                  • Abstract-syntax-trees
                  • Symbols
                  • Keywords
                  • Programs
                  • Packages
                  • Bit-sizes
                • Dynamic-semantics
                • Compilation
                • Static-semantics
                • Concrete-syntax
        • 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
    • Binop-mul

    Change-binop-mul

    Modifying constructor for binop-mul structures.

    Syntax
    (change-binop-mul x 
                      ) 
    

    This is an often useful alternative to make-binop-mul.

    We construct a new binop-mul structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

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

    Macro: change-binop-mul

    (defmacro change-binop-mul (x &rest args)
      (std::change-aggregate 'binop-mul
                             x args 'nil
                             'change-binop-mul
                             'nil))