• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
          • Defbyte
          • Defresult
          • Fold
          • Defsubtype
          • Defset
            • Defset-implementation
          • Specific-types
          • Defflatsum
          • Deflist-of-len
          • Pos-list
          • Defbytelist
          • Defomap
          • Defbyte-standard-instances
          • Deffixtype-alias
          • Defbytelist-standard-instances
          • Defunit
          • Byte-list
          • Byte
          • Database
          • Pos-option
          • Nibble
          • Nat-option
          • String-option
          • Byte-list20
          • Byte-list32
          • Byte-list64
          • Pseudo-event-form
          • Natoption/natoptionlist
          • Nati
          • Character-list
          • Nat/natlist
          • Maybe-string
          • Nibble-list
          • Natoption/natoptionlist-result
          • Nat/natlist-result
          • Nat-option-list-result
          • Set
          • String-result
          • String-list-result
          • Nat-result
          • Nat-option-result
          • Nat-list-result
          • Maybe-string-result
          • Integer-result
          • Character-result
          • Character-list-result
          • Boolean-result
          • Map
          • Bag
          • Pos-set
          • Hex-digit-char-list
          • Dec-digit-char-list
          • Pseudo-event-form-list
          • Nat-option-list
          • Symbol-set
          • String-set
          • Nat-set
          • Oct-digit-char-list
          • Bin-digit-char-list
          • Bit-list
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
        • Zcash
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
        • File-io-light
        • Cryptography
        • Number-theory
        • Lists-light
        • Axe
        • Builtins
        • Solidity
        • Helpers
        • Htclient
        • Typed-lists-light
        • Arithmetic-light
      • X86isa
      • Axe
      • Execloader
    • Math
    • Testing-utilities
  • Fty-extensions
  • Fty
  • Std/osets

Defset

Generate a fixtype of osets whose elements have a specified fixtype.

Introduction

This is analogous to deflist, defalist, and defomap. Besides the fixtype itself, this macro also generates some theorems about the fixtype. Future versions of this macro may generate more theorems, as needed.

Aside from the recognizer, fixer, and equivalence for the fixtype, this macro does not generate any operations on the typed osets. Instead, the generic oset operations can be used on typed osets. This macro generates theorems about the use of these generic operations on typed osets.

Future versions of this macro may be modularized to provide a ``sub-macro'' that generates only the recognizer and theorems about it, without the fixtype (and without the fixer and equivalence), similarly to std::deflist and std::defalist. That sub-macro could be called set::defset.

General Form

(defset type
        :elt-type ...
        :elementp-of-nil ...
        :pred ...
        :fix ...
        :equiv ...
        :measure ...
        :parents ...
        :short ...
        :long ...
  )

Inputs

type

The name of the new fixtype.

:elt-type

The (existing) fixtype of the elements of the new set fixtype.

:elementp-of-nil

Specifies whether nil is in the element fixtype :elt-type. It must be t, nil, or :unknown (the default). When t or nil, slightly better theorems are generated.

:pred
:fix
:equiv

The name of the recognizer, fixer, and equivalence for the new fixtype.

The defaults are type followed by -p, -fix, and -equiv.

:parents
:short
:long

These are used to generate XDOC documentation for the topic name.

If any of these is not supplied, the corresponding component is omitted from the generated XDOC topic.

This macro currently does not perform a thorough validation of its inputs. Erroneous inputs may result in failures of the generated events. Errors should be easy to diagnose, also since this macro has a very simple and readable implementation. Future versions of this macro should perform more thorough input validation.

Generated Events

The following are generated, inclusive of XDOC documentation:

  • The recognizer, the fixer, the equivalence, and the fixtype.
  • Several theorems about the recognizer, fixer, and equivalence.

See the implementation, which uses a readable backquote notation, for details.

Subtopics

Defset-implementation
Implementation of defset.