• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
        • Simplify-defun
        • Isodata
          • Isodata-implementation
            • Isodata-event-generation
            • Isodata-fn
            • Isodata-input-processing
              • Isodata-symbol-isomap-alistp
              • Isodata-isomapp
              • 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
        • 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
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Isodata-input-processing

    Isodata-process-old

    Process the old input.

    Signature
    (isodata-process-old old predicate verify-guards ctx state) 
      → 
    (mv erp old$ state)
    Returns
    old$ — A symbolp that is the name of the target function of the transformation, denoted by the old input.

    Definitions and Theorems

    Function: isodata-process-old

    (defun isodata-process-old (old predicate verify-guards ctx state)
     (declare (xargs :stobjs (state)))
     (declare (xargs :guard t))
     (let ((__function__ 'isodata-process-old))
      (declare (ignorable __function__))
      (b*
       (((er old$)
         (ensure-function-name-or-numbered-wildcard$
              old "The first input" t nil))
        (description (msg "The target function ~x0" old$))
        ((er &)
         (ensure-function-is-logic-mode$ old$ description t nil))
        ((er &)
         (ensure-function-is-defined$ old$ description t nil))
        ((er &)
         (ensure-function-has-args$ old$ description t nil))
        ((er &)
         (ensure-function-no-stobjs$ old$ description t nil))
        ((er &)
         (if
          (eq predicate t)
          (ensure-function-number-of-results$ old$ 1 description t nil)
          (value nil)))
        (recursive (recursivep old$ nil (w state)))
        ((er &)
         (if recursive
             (ensure-function-singly-recursive$ old$ description t nil)
           (value nil)))
        ((er &)
         (if recursive
             (ensure-function-known-measure$ old$ description t nil)
           (value nil)))
        ((er &)
         (if recursive (ensure-function-not-in-termination-thm$
                            old$ description t nil)
           (value nil)))
        ((er &)
         (if
          (eq verify-guards t)
          (ensure-function-is-guard-verified$
           old$
           (msg
            "Since the :VERIFY-GUARDS input is T, ~
                              the target function ~x0"
            old$)
           t nil)
          (value nil))))
       (value old$))))