• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
          • Simplify-defun
          • Isodata
            • Isodata-implementation
              • Isodata-event-generation
              • Isodata-fn
              • Isodata-input-processing
                • Isodata-symbol-isomap-alistp
                • Isodata-isomapp
                  • Isodata-isomap
                    • Make-isodata-isomap
                    • Honsed-isodata-isomap
                    • Change-isodata-isomap
                    • Make-honsed-isodata-isomap
                    • Isodata-isomap->oldp-guard
                    • Isodata-isomap->oldp
                    • Isodata-isomap->newp-guard
                    • Isodata-isomap->newp
                    • Isodata-isomap->localp
                    • Isodata-isomap->isoname
                    • Isodata-isomap->hints
                    • Isodata-isomap->forth-of-back
                    • Isodata-isomap->forth-injective
                    • Isodata-isomap->forth-image
                    • Isodata-isomap->forth-guard
                    • Isodata-isomap->forth
                    • Isodata-isomap->back-of-forth
                    • Isodata-isomap->back-injective
                    • Isodata-isomap->back-image
                    • Isodata-isomap->back-guard
                    • Isodata-isomap->back
                  • Isodata-pos-isomap-alistp
                  • Isodata-process-iso
                  • Isodata-process-inputs
                  • Isodata-process-arg/res-list-iso
                  • Isodata-process-isomaps
                  • Isodata-fresh-defiso-thm-names
                  • Isodata-process-arg/res-list
                  • Isodata-process-arg/res-list-iso-list
                  • Isodata-process-res
                  • Isodata-fresh-defiso-name-with-*s-suffix
                  • Isodata-process-newp-of-new-name
                  • Isodata-process-isomaps-ress
                  • Isodata-process-isomaps-args
                  • Isodata-process-arg/res-list-iso-add-ress
                  • Isodata-process-arg/res-list-iso-add-args
                  • Isodata-process-old
                  • Isodata-process-undefined
                  • Isodata-process-arg/res-list-aux
                  • Isodata-isomap-listp
                  • Isodata-fresh-defiso-name-with-*s-suffix-aux
                • Isodata-macro-definition
            • Tailrec
            • Schemalg
            • Restrict
            • Expdata
            • Casesplit
            • Simplify-term
            • Simplify-defun-sk
            • Parteval
            • Solve
            • Wrap-output
            • Propagate-iso
            • Simplify
            • Finite-difference
            • Drop-irrelevant-params
            • Copy-function
            • Lift-iso
            • Rename-params
            • Utilities
            • Simplify-term-programmatic
            • Simplify-defun-sk-programmatic
            • Simplify-defun-programmatic
            • Simplify-defun+
            • Common-options
            • Common-concepts
          • Error-checking
          • Fty-extensions
          • 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
    • Isodata-isomapp

    Isodata-isomap

    Raw constructor for isodata-isomapp structures.

    Syntax:

    (isodata-isomap isoname localp oldp newp forth back 
                    forth-image back-image back-of-forth 
                    forth-of-back forth-injective 
                    back-injective oldp-guard 
                    newp-guard forth-guard back-guard hints)

    This is the lowest-level constructor for isodata-isomapp structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-isodata-isomap or change-isodata-isomap instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

    The isodata-isomapp structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-isodata-isomap instead.

    Definition

    This is an ordinary constructor function introduced by std::defaggregate.

    Function: isodata-isomap

    (defun isodata-isomap
           (isoname localp oldp newp forth back
                    forth-image back-image back-of-forth
                    forth-of-back forth-injective
                    back-injective oldp-guard
                    newp-guard forth-guard back-guard hints)
     (declare (xargs :guard (and (symbolp isoname)
                                 (booleanp localp)
                                 (pseudo-termfnp oldp)
                                 (pseudo-termfnp newp)
                                 (pseudo-termfnp forth)
                                 (pseudo-termfnp back)
                                 (symbolp forth-image)
                                 (symbolp back-image)
                                 (symbolp back-of-forth)
                                 (symbolp forth-of-back)
                                 (symbolp forth-injective)
                                 (symbolp back-injective)
                                 (symbolp oldp-guard)
                                 (symbolp newp-guard)
                                 (symbolp forth-guard)
                                 (symbolp back-guard)
                                 (keyword-value-listp hints))))
     (cons
      (cons 'isoname isoname)
      (cons
       (cons 'localp localp)
       (cons
        (cons 'oldp oldp)
        (cons
         (cons 'newp newp)
         (cons
          (cons 'forth forth)
          (cons
           (cons 'back back)
           (cons
            (cons 'forth-image forth-image)
            (cons
             (cons 'back-image back-image)
             (cons
              (cons 'back-of-forth back-of-forth)
              (cons
               (cons 'forth-of-back forth-of-back)
               (cons
                (cons 'forth-injective forth-injective)
                (cons
                   (cons 'back-injective back-injective)
                   (cons (cons 'oldp-guard oldp-guard)
                         (cons (cons 'newp-guard newp-guard)
                               (cons (cons 'forth-guard forth-guard)
                                     (cons (cons 'back-guard back-guard)
                                           (cons (cons 'hints hints)
                                                 nil))))))))))))))))))