• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
      • Proof-checker-array
      • Soft
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
        • Semantics
          • Step
          • Write-var
          • Outcome
            • Outcome-case
            • Outcome-fix
            • Outcome-equiv
            • Outcome-terminated
            • Outcomep
            • Outcome-nonterminating
              • Make-outcome-nonterminating
                • Change-outcome-nonterminating
              • Outcome-kind
            • Beval
            • Read-var
            • Config
            • Terminatingp
            • Aeval
            • Step*
            • Stepn
            • Env
          • Abstract-syntax
          • Interpreter
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Outcome-nonterminating

    Make-outcome-nonterminating

    Basic constructor macro for outcome-nonterminating structures.

    Syntax
    (make-outcome-nonterminating ) 
    

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

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

    Definition

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

    Macro: make-outcome-nonterminating

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

    Function: outcome-nonterminating

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