• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
        • Syntax-for-tools
          • Formalized-subset
          • Mapping-to-language-definition
          • Input-files
          • Compilation-database
          • Printer
          • Output-files
          • Abstract-syntax-operations
          • Implementation-environments
          • Abstract-syntax
          • Concrete-syntax
          • Disambiguation
          • Validation
            • Validator
            • Validation-information
              • Abstract-syntax-annop
              • Types
              • Abstract-syntax-anno-additional-theroems
              • Valid-ext-info
              • Valid-table
              • Valid-ord-info
              • Uid
              • Stmts-types
              • Lifetime
              • Init-declor-info
              • Fundef-types
              • Expr-type
              • Valid-defstatus
              • Var-info
              • Valid-ord-info-option
              • Valid-ext-info-option
              • Uid-option
              • Linkage-option
              • Linkage
              • Lifetime-option
              • Valid-table-option
              • Iconst-info
              • Param-declor-nonabstract-info
              • Fundef-info
              • Expr-null-pointer-constp
              • Valid-scope
                • Valid-scope-fix
                • Valid-scope-equiv
                • Make-valid-scope
                  • Valid-scope->ord
                  • Change-valid-scope
                  • Valid-scopep
                • Const-expr-null-pointer-constp
                • Expr-string-info
                • Expr-funcall-info
                • Expr-arrsub-info
                • Tyname-info
                • Transunit-info
                • Expr-unary-info
                • Expr-const-info
                • Expr-binary-info
                • Stmt-types
                • Block-item-list-types
                • Initer-type
                • Valid-ord-scope
                • Uid-increment
                • Uid-equal
                • Coerce-var-info
                • Valid-externals
                • Irr-var-info
                • Valid-scope-list
                • Irr-valid-table
                • Irr-lifetime
                • Irr-uid
                • Irr-linkage
                • Block-item-types
                • Comp-stmt-types
            • Gcc-builtins
            • Preprocessing
            • Parsing
          • Atc
          • Transformation-tools
          • Language
          • Representation
          • Insertion-sort
          • Pack
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • 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
    • Valid-scope

    Make-valid-scope

    Basic constructor macro for valid-scope structures.

    Syntax
    (make-valid-scope [:ord <ord>]) 
    

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

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

    Definition

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

    Macro: make-valid-scope

    (defmacro make-valid-scope (&rest args)
      (std::make-aggregate 'valid-scope
                           args '((:ord))
                           'make-valid-scope
                           nil))

    Function: valid-scope

    (defun valid-scope (ord)
      (declare (xargs :guard (valid-ord-scopep ord)))
      (declare (xargs :guard t))
      (b* ((ord (mbe :logic (valid-ord-scope-fix ord)
                     :exec ord)))
        (list (cons 'ord ord))))