• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
        • Riscv
        • Bitcoin
        • Zcash
        • Yul
        • ACL2-programming-language
          • Primitive-functions
          • Translated-terms
          • Values
          • Evaluation
            • Step-from-trans
            • Call-primitive-function
            • Step-from-init
            • Put-leftmost-nonconst
            • Exec-outcome
              • Exec-outcome-case
              • Exec-outcome-fix
              • Exec-outcome-equiv
              • Exec-outcome-p
              • Exec-outcome-terminating
              • Exec-outcome-nonterminating
                • Make-exec-outcome-nonterminating
                  • Change-exec-outcome-nonterminating
                • Exec-outcome-kind
                • Exec-outcome-error
              • Stepn
              • Step
              • Terminatingp
              • Get-leftmost-nonconst
              • Exec-call
              • Step*
            • Program-equivalence
            • Functions
            • Packages
            • Programs
            • Interpreter
            • Evaluation-states
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Exec-outcome-nonterminating

    Make-exec-outcome-nonterminating

    Basic constructor macro for exec-outcome-nonterminating structures.

    Syntax
    (make-exec-outcome-nonterminating ) 
    

    This is the usual way to construct exec-outcome-nonterminating structures. It simply conses together a structure with the specified fields.

    This macro generates a new exec-outcome-nonterminating structure from scratch. See also change-exec-outcome-nonterminating, which can "change" an existing structure, instead.

    Definition

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

    Macro: make-exec-outcome-nonterminating

    (defmacro make-exec-outcome-nonterminating (&rest args)
      (std::make-aggregate 'exec-outcome-nonterminating
                           args 'nil
                           'make-exec-outcome-nonterminating
                           nil))

    Function: exec-outcome-nonterminating

    (defun exec-outcome-nonterminating nil
      (declare (xargs :guard t))
      (let ((__function__ 'exec-outcome-nonterminating))
        (declare (ignorable __function__))
        (cons :nonterminating (list))))