• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
        • Defdefparse
        • Defgrammar
        • Tree-utilities
          • Check-tree-nonleaf-num-range-4
          • Check-tree-nonleaf-num-range-3
          • Check-tree-num-range-4
          • Check-tree-nonleaf-num-range-2
          • Check-tree-num-range-3
          • Check-tree-num-range-2
          • Tree-list-tuple10
          • Check-tree-nonleaf-num-range
          • Tree-list-tuple9
          • Tree-list-tuple8
          • Tree-list-tuple7
            • Tree-list-tuple7-fix
            • Tree-list-tuple7-equiv
            • Make-tree-list-tuple7
              • Change-tree-list-tuple7
              • Tree-list-tuple7p
              • Tree-list-tuple7->7th
              • Tree-list-tuple7->6th
              • Tree-list-tuple7->5th
              • Tree-list-tuple7->4th
              • Tree-list-tuple7->3rd
              • Tree-list-tuple7->2nd
              • Tree-list-tuple7->1st
            • Tree-list-tuple6
            • Check-tree-nonleaf-num-seq
            • Check-tree-num-range
            • Tree-list-tuple5
            • Check-tree-nonleaf-10
            • Check-tree-nonleaf-9
            • Check-tree-nonleaf-8
            • Check-tree-nonleaf-7
            • Check-tree-list-list-10
            • Tree-list-tuple4
            • Check-tree-nonleaf-6
            • Check-tree-nonleaf-5
            • Check-tree-list-list-9
            • Check-tree-nonleaf-4
            • Check-tree-nonleaf-3
            • Check-tree-nonleaf-2
            • Check-tree-nonleaf
            • Check-tree-list-list-8
            • Check-tree-nonleaf-1-1
            • Check-tree-nonleaf-1
            • Check-tree-list-list-7
            • Tree-list-tuple3
            • Pass
            • Check-tree-list-list-6
            • Check-tree-list-list-5
            • Tree=>string
            • Tree-list-tuple2
            • Check-tree-list-list-4
            • Check-tree-list-list-3
            • Check-tree-ichars
            • Check-tree-schars
            • Check-tree-num-seq
            • Check-tree-list-list-2
            • Tree-list-tuple9-result
            • Tree-list-tuple8-result
            • Tree-list-tuple7-result
            • Tree-list-tuple6-result
            • Tree-list-tuple5-result
            • Tree-list-tuple4-result
            • Tree-list-tuple3-result
            • Tree-list-tuple2-result
            • Tree-list-tuple10-result
            • Pass-result
            • Check-tree-list-list-1
            • Tree-info-for-error
            • Check-tree-list-1
            • Check-tree-nonleaf?
            • Check-tree-leafterm
          • Notation
          • Grammar-parser
          • Meta-circular-validation
          • Parsing-primitives-defresult
          • Parsing-primitives-seq
          • Operations
          • Examples
          • Differences-with-paper
          • Constructor-utilities
          • Grammar-printer
          • Parsing-tools
        • 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
    • Tree-list-tuple7

    Make-tree-list-tuple7

    Basic constructor macro for tree-list-tuple7 structures.

    Syntax
    (make-tree-list-tuple7 [:1st <1st>] 
                           [:2nd <2nd>] 
                           [:3rd <3rd>] 
                           [:4th <4th>] 
                           [:5th <5th>] 
                           [:6th <6th>] 
                           [:7th <7th>]) 
    

    This is the usual way to construct tree-list-tuple7 structures. It simply conses together a structure with the specified fields.

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

    Definition

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

    Macro: make-tree-list-tuple7

    (defmacro make-tree-list-tuple7 (&rest args)
      (std::make-aggregate 'tree-list-tuple7
                           args
                           '((:1st)
                             (:2nd)
                             (:3rd)
                             (:4th)
                             (:5th)
                             (:6th)
                             (:7th))
                           'make-tree-list-tuple7
                           nil))

    Function: tree-list-tuple7

    (defun tree-list-tuple7 (1st 2nd 3rd 4th 5th 6th 7th)
      (declare (xargs :guard (and (tree-listp 1st)
                                  (tree-listp 2nd)
                                  (tree-listp 3rd)
                                  (tree-listp 4th)
                                  (tree-listp 5th)
                                  (tree-listp 6th)
                                  (tree-listp 7th))))
      (declare (xargs :guard t))
      (let ((__function__ 'tree-list-tuple7))
        (declare (ignorable __function__))
        (b* ((1st (mbe :logic (tree-list-fix 1st)
                       :exec 1st))
             (2nd (mbe :logic (tree-list-fix 2nd)
                       :exec 2nd))
             (3rd (mbe :logic (tree-list-fix 3rd)
                       :exec 3rd))
             (4th (mbe :logic (tree-list-fix 4th)
                       :exec 4th))
             (5th (mbe :logic (tree-list-fix 5th)
                       :exec 5th))
             (6th (mbe :logic (tree-list-fix 6th)
                       :exec 6th))
             (7th (mbe :logic (tree-list-fix 7th)
                       :exec 7th)))
          (list (cons '1st 1st)
                (cons '2nd 2nd)
                (cons '3rd 3rd)
                (cons '4th 4th)
                (cons '5th 5th)
                (cons '6th 6th)
                (cons '7th 7th)))))