• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
        • Defun
        • Declare
        • System-utilities
        • Stobj
        • State
        • Mutual-recursion
        • Memoize
        • Mbe
        • Io
        • Defpkg
        • Apply$
        • Loop$
        • Programming-with-state
        • Arrays
        • Characters
        • Time$
        • Defmacro
        • Loop$-primer
        • Fast-alists
        • Defconst
        • Evaluation
        • Guard
        • Equality-variants
        • Compilation
        • Hons
        • ACL2-built-ins
        • Developers-guide
        • System-attachments
        • Advanced-features
        • Set-check-invariant-risk
        • Numbers
        • Efficiency
        • Irrelevant-formals
        • Introduction-to-programming-in-ACL2-for-those-who-know-lisp
        • Redefining-programs
        • Lists
        • Invariant-risk
        • Errors
        • Defabbrev
        • Conses
        • Alists
        • Set-register-invariant-risk
        • Strings
          • Std/strings
            • Pretty-printing
              • Pretty-printing-implementation
              • Eviscerate
                • Eviscconfig
                  • Eviscconfig-fix
                  • Eviscconfig-equiv
                  • Make-eviscconfig
                    • Eviscconfig->print-level
                    • Eviscconfig->print-length
                    • Eviscconfig-p
                    • Change-eviscconfig
                    • Eviscconfig->replacement-alist
                    • Eviscconfig->hiding-cars
                  • Eviscerate1
                  • Eviscerate1p
                • Pretty
                • Revappend-pretty
                • Pretty-list
              • Printtree
              • Base64
              • Charset-p
              • Strtok!
              • Cases
              • Concatenation
              • Html-encoding
              • Character-kinds
              • Substrings
              • Strtok
              • Equivalences
              • Url-encoding
              • Lines
              • Explode-implode-equalities
              • Ordering
              • Numbers
              • Pad-trim
              • Coercion
              • Std/strings/digit-to-char
              • Substitution
              • Symbols
            • String-listp
            • Stringp
            • Length
            • Search
            • Remove-duplicates
            • Position
            • Coerce
            • Concatenate
            • Reverse
            • String
            • Subseq
            • Substitute
            • String-upcase
            • String-downcase
            • Count
            • Char
            • String<
            • String-equal
            • String-utilities
            • String-append
            • String>=
            • String<=
            • String>
            • Hex-digit-char-theorems
            • String-downcase-gen
            • String-upcase-gen
          • Program-wrapper
          • Get-internal-time
          • Basics
          • Packages
          • Oracle-eval
          • Defmacro-untouchable
          • <<
          • Primitive
          • Revert-world
          • Unmemoize
          • Set-duplicate-keys-action
          • Symbols
          • Def-list-constructor
          • Easy-simplify-term
          • Defiteration
          • Fake-oracle-eval
          • Defopen
          • Sleep
        • Operational-semantics
        • Real
        • Start-here
        • Debugging
        • Miscellaneous
        • Output-controls
        • Macros
        • Interfacing-tools
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Eviscconfig

    Make-eviscconfig

    Basic constructor macro for eviscconfig structures.

    Syntax
    (make-eviscconfig [:print-level <print-level>] 
                      [:print-length <print-length>] 
                      [:replacement-alist <replacement-alist>] 
                      [:hiding-cars <hiding-cars>]) 
    

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

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

    Definition

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

    Macro: make-eviscconfig

    (defmacro make-eviscconfig (&rest args)
      (std::make-aggregate 'eviscconfig
                           args
                           '((:print-level)
                             (:print-length)
                             (:replacement-alist)
                             (:hiding-cars))
                           'make-eviscconfig
                           nil))

    Function: eviscconfig

    (defun eviscconfig (print-level print-length
                                    replacement-alist hiding-cars)
     (declare (xargs :guard (and (acl2::maybe-natp print-level)
                                 (acl2::maybe-natp print-length))))
     (declare (xargs :guard t))
     (let ((acl2::__function__ 'eviscconfig))
      (declare (ignorable acl2::__function__))
      (b* ((print-level (mbe :logic (acl2::maybe-natp-fix print-level)
                             :exec print-level))
           (print-length (mbe :logic (acl2::maybe-natp-fix print-length)
                              :exec print-length)))
       (cons
            :eviscconfig (cons (cons print-level print-length)
                               (cons replacement-alist hiding-cars))))))