• 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-conc-info-fix
                • Make-deftreeops-conc-info
                • Deftreeops-conc-info-equiv
                • Deftreeops-conc-info->get-tree-list-list-fn
                • Deftreeops-conc-info->check-conc-fn-equiv-thm
                • Deftreeops-conc-infop
                • Deftreeops-conc-info->rep-infos
                • Deftreeops-conc-info->matching-thm
                • Change-deftreeops-conc-info
                  • Deftreeops-conc-info->conc
                  • Deftreeops-conc-info->discriminant-term
                • Deftreeops-rep-info
                • 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
        • 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
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Deftreeops-conc-info

    Change-deftreeops-conc-info

    Modifying constructor for deftreeops-conc-info structures.

    Syntax
    (change-deftreeops-conc-info x 
                                 [:conc <conc>] 
                                 [:discriminant-term <discriminant-term>] 
                                 [:check-conc-fn-equiv-thm <check-conc-fn-equiv-thm>] 
                                 [:get-tree-list-list-fn <get-tree-list-list-fn>] 
                                 [:matching-thm <matching-thm>] 
                                 [:rep-infos <rep-infos>]) 
    

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

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

    (defmacro change-deftreeops-conc-info (x &rest args)
     (std::change-aggregate
          'deftreeops-conc-info
          x args
          '((:conc . deftreeops-conc-info->conc)
            (:discriminant-term .
                                deftreeops-conc-info->discriminant-term)
            (:check-conc-fn-equiv-thm
                 .
                 deftreeops-conc-info->check-conc-fn-equiv-thm)
            (:get-tree-list-list-fn
                 .
                 deftreeops-conc-info->get-tree-list-list-fn)
            (:matching-thm . deftreeops-conc-info->matching-thm)
            (:rep-infos . deftreeops-conc-info->rep-infos))
          'change-deftreeops-conc-info
          'nil))