• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
          • Deftreeops-implementation
            • Deftreeops-event-generation
            • Deftreeops-info
              • Deftreeops-rulename-info
              • Deftreeops-conc-info
              • Deftreeops-rep-info
                • Deftreeops-rep-info-fix
                • Deftreeops-rep-info-equiv
                • Make-deftreeops-rep-info
                • Deftreeops-rep-info->get-tree-list-fn
                • Deftreeops-rep-info->matching-thm
                • Deftreeops-rep-info->get-tree-fn
                • Deftreeops-rep-info->get-len-fn
                • Change-deftreeops-rep-info
                  • Deftreeops-rep-infop
                • Deftreeops-numrange-info
                • Deftreeops-charval-info
                • Deftreeops-rep-info-list
                • Deftreeops-conc-info-list
                • Deftreeops-charval-info-alist
                • Deftreeops-rulename-info-alist
                • Deftreeops-numrange-info-alist
              • Deftreeops-process-inputs-and-gen-everything
              • Deftreeops-fn
              • Deftreeops-table
              • 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
        • Wp-gen
        • Dimacs-reader
        • Pfcs
        • Legacy-defrstobj
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • 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-rep-info

    Change-deftreeops-rep-info

    Modifying constructor for deftreeops-rep-info structures.

    Syntax
    (change-deftreeops-rep-info x 
                                [:get-tree-list-fn <get-tree-list-fn>] 
                                [:matching-thm <matching-thm>] 
                                [:get-len-fn <get-len-fn>] 
                                [:get-tree-fn <get-tree-fn>]) 
    

    This is an often useful alternative to make-deftreeops-rep-info.

    We construct a new deftreeops-rep-info 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-rep-info

    (defmacro change-deftreeops-rep-info (x &rest args)
      (std::change-aggregate
           'deftreeops-rep-info
           x args
           '((:get-tree-list-fn . deftreeops-rep-info->get-tree-list-fn)
             (:matching-thm . deftreeops-rep-info->matching-thm)
             (:get-len-fn . deftreeops-rep-info->get-len-fn)
             (:get-tree-fn . deftreeops-rep-info->get-tree-fn))
           'change-deftreeops-rep-info
           'nil))