• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
          • Deftreeops-implementation
            • Deftreeops-event-generation
            • Deftreeops-info
            • Deftreeops-process-inputs-and-gen-everything
            • Deftreeops-fn
            • Deftreeops-table
              • Deftreeops-table-value
                • Deftreeops-table-value-fix
                • Deftreeops-table-value-equiv
                • Make-deftreeops-table-value
                • Deftreeops-table-value->rulename-info-alist
                • Deftreeops-table-value->numrange-info-alist
                • Deftreeops-table-value->charval-info-alist
                • Deftreeops-table-value->event-alist
                • Deftreeops-table-value->call
                • Change-deftreeops-table-value
                  • Deftreeops-table-valuep
                • Deftreeops-table-value-option
                • Deftreeops-table-lookup
                • Deftreeops-table-add
                • Deftreeops-table-definition
              • Deftreeops-input-processing
              • Deftreeops-macro-definition
            • Deftreeops-show-event
            • Deftreeops-show-info
          • Defdefparse
          • Defgrammar
          • Tree-utilities
          • Notation
          • Grammar-parser
          • Meta-circular-validation
          • Parsing-primitives-defresult
          • Parsing-primitives-seq
          • Operations
          • Examples
          • Differences-with-paper
          • Constructor-utilities
          • Grammar-printer
          • Parsing-tools
        • Vwsim
        • Isar
        • Pfcs
        • Wp-gen
        • Dimacs-reader
        • Legacy-defrstobj
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Riscv
        • Bitcoin
        • 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
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • ACL2
      • Macro-libraries
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Deftreeops-table-value

    Change-deftreeops-table-value

    Modifying constructor for deftreeops-table-value structures.

    Syntax
    (change-deftreeops-table-value x 
                                   [:rulename-info-alist <rulename-info-alist>] 
                                   [:numrange-info-alist <numrange-info-alist>] 
                                   [:charval-info-alist <charval-info-alist>] 
                                   [:event-alist <event-alist>] 
                                   [:call <call>]) 
    

    This is an often useful alternative to make-deftreeops-table-value.

    We construct a new deftreeops-table-value structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

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

    Macro: change-deftreeops-table-value

    (defmacro change-deftreeops-table-value (x &rest args)
     (std::change-aggregate
      'deftreeops-table-value
      x args
      '((:rulename-info-alist
             .
             deftreeops-table-value->rulename-info-alist)
        (:numrange-info-alist
             .
             deftreeops-table-value->numrange-info-alist)
        (:charval-info-alist .
                             deftreeops-table-value->charval-info-alist)
        (:event-alist . deftreeops-table-value->event-alist)
        (:call . deftreeops-table-value->call))
      'change-deftreeops-table-value
      'nil))