• 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
      • Riscv
      • Taspi
      • Bitcoin
      • 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
      • 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
                  • Branch-equiv
                  • Make-branch
                    • Change-branch
                    • Branch->body
                    • Branch->test
                    • Branchp
                    • Branch-fix
                    • Branch-count
                  • Statements
                  • Format-strings
                  • Input-syntax-abstraction
                  • Expressions
                  • 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
    • Branch

    Make-branch

    Basic constructor macro for branch structures.

    Syntax
    (make-branch [:test <test>] 
                 [:body <body>]) 
    

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

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

    Definition

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

    Macro: make-branch

    (defmacro make-branch (&rest args)
      (std::make-aggregate 'branch
                           args '((:test) (:body))
                           'make-branch
                           nil))

    Function: branch

    (defun branch (test body)
      (declare (xargs :guard (and (expressionp test)
                                  (statement-listp body))))
      (declare (xargs :guard t))
      (let ((__function__ 'branch))
        (declare (ignorable __function__))
        (b* ((test (mbe :logic (expression-fix test)
                        :exec test))
             (body (mbe :logic (statement-list-fix body)
                        :exec body)))
          (list (cons 'test test)
                (cons 'body body)))))