• 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
      • Where-do-i-place-my-book
      • Axe
      • Bigmems
      • Builtins
      • Execloader
      • Aleo
        • Aleobft
          • Aleobft-static
          • Aleobft-stake2
          • Aleobft-dynamic
            • Correctness
            • Definition
              • Initialization
              • Transitions
              • States
                • Committees
                  • Update-committee-with-transaction
                  • Max-faulty-for-total
                  • Bonded-committee-at-round
                  • Active-committee-at-round
                  • Update-committee-with-transaction-list
                  • Committee-after-blocks
                  • Lookback
                  • Committee-quorum
                  • Committee-option
                  • Committee
                  • Committee-members
                    • Committee-total
                    • Committee-max-faulty
                    • Same-bonded-committees-p
                    • Same-active-committees-p
                    • Genesis-committee
                  • System-states
                  • Certificates
                  • Messages
                  • Validator-states
                  • Transactions
                  • Blocks
                  • Addresses
                • Events
            • Aleobft-stake
            • Aleobft-proposals
            • Library-extensions
          • Leo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Committees

    Committee-members

    Addresses of the members of the committee.

    Signature
    (committee-members commtt) → addresses
    Arguments
    commtt — Guard (committeep commtt).
    Returns
    addresses — Type (address-setp addresses).

    This is a synonym of the fixtype deconstructor, but it provides a bit of abstract, especially facilitating the extension of the model with stake, in which a committee will be not just a set of addresses.

    Definitions and Theorems

    Function: committee-members

    (defun committee-members (commtt)
      (declare (xargs :guard (committeep commtt)))
      (let ((__function__ 'committee-members))
        (declare (ignorable __function__))
        (committee->addresses commtt)))

    Theorem: address-setp-of-committee-members

    (defthm address-setp-of-committee-members
      (b* ((addresses (committee-members commtt)))
        (address-setp addresses))
      :rule-classes :rewrite)

    Theorem: not-emptyp-of-committee-members

    (defthm not-emptyp-of-committee-members
      (b* ((?addresses (committee-members commtt)))
        (not (emptyp addresses))))

    Theorem: committee-members-of-committee-fix-commtt

    (defthm committee-members-of-committee-fix-commtt
      (equal (committee-members (committee-fix commtt))
             (committee-members commtt)))

    Theorem: committee-members-committee-equiv-congruence-on-commtt

    (defthm committee-members-committee-equiv-congruence-on-commtt
      (implies (committee-equiv commtt commtt-equiv)
               (equal (committee-members commtt)
                      (committee-members commtt-equiv)))
      :rule-classes :congruence)