• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
    • Proof-automation
      • Gl
      • Witness-cp
      • Ccg
      • Install-not-normalized
      • Rewrite$
      • Removable-runes
      • Efficiency
      • Rewrite-bounds
      • Bash
      • Def-dag-measure
      • Fgl
        • Fgl-rewrite-rules
        • Fgl-function-mode
        • Fgl-object
        • Fgl-solving
        • Fgl-handling-if-then-elses
        • Fgl-getting-bits-from-objects
        • Fgl-primitive-and-meta-rules
        • Fgl-interpreter-overview
        • Fgl-counterexamples
        • Fgl-correctness-of-binding-free-variables
        • Fgl-debugging
        • Fgl-testbenches
        • Def-fgl-boolean-constraint
        • Fgl-stack
        • Fgl-rewrite-tracing
        • Def-fgl-param-thm
        • Def-fgl-thm
          • Fgl-config
            • Fgl-config-fix
            • Make-fgl-config
            • Fgl-config-p
            • Fgl-config-equiv
            • Fgl-config->skip-toplevel-sat-check
            • Change-fgl-config
              • Fgl-config->skip-vacuity-check
              • Fgl-config->function-modes
              • Fgl-config->trace-rewrites
              • Fgl-config->prof-enabledp
              • Fgl-config->reclimit
              • Fgl-config->make-ites
              • Fgl-config->sat-config-vacuity
              • Fgl-config->rewrite-rule-table
              • Fgl-config->branch-merge-rules
              • Fgl-config->sat-config
          • Fgl-fast-alist-support
          • Advanced-equivalence-checking-with-fgl
          • Fgl-array-support
          • Fgl-internals
        • Bdd
        • Remove-hyps
        • Contextual-rewriting
        • Simp
        • Rewrite$-hyps
        • Bash-term-to-dnf
        • Use-trivial-ancestors-check
        • Minimal-runes
        • Clause-processor-tools
        • Fn-is-body
        • Without-subsumption
        • Rewrite-equiv-hint
        • Def-bounds
        • Rewrite$-context
        • Try-gl-concls
        • Hint-utils
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Fgl-config

    Change-fgl-config

    Modifying constructor for fgl-config structures.

    Syntax
    (change-fgl-config x 
                       [:trace-rewrites <trace-rewrites>] 
                       [:reclimit <reclimit>] 
                       [:make-ites <make-ites>] 
                       [:rewrite-rule-table <rewrite-rule-table>] 
                       [:branch-merge-rules <branch-merge-rules>] 
                       [:function-modes <function-modes>] 
                       [:prof-enabledp <prof-enabledp>] 
                       [:sat-config <sat-config>] 
                       [:sat-config-vacuity <sat-config-vacuity>] 
                       [:skip-toplevel-sat-check <skip-toplevel-sat-check>] 
                       [:skip-vacuity-check <skip-vacuity-check>]) 
    

    This is an often useful alternative to make-fgl-config.

    We construct a new fgl-config 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 defprod.

    Macro: change-fgl-config

    (defmacro
     change-fgl-config (x &rest args)
     (std::change-aggregate
      'fgl-config
      x args
      '((:trace-rewrites . fgl-config->trace-rewrites)
        (:reclimit . fgl-config->reclimit)
        (:make-ites . fgl-config->make-ites)
        (:rewrite-rule-table . fgl-config->rewrite-rule-table)
        (:branch-merge-rules . fgl-config->branch-merge-rules)
        (:function-modes . fgl-config->function-modes)
        (:prof-enabledp . fgl-config->prof-enabledp)
        (:sat-config . fgl-config->sat-config)
        (:sat-config-vacuity . fgl-config->sat-config-vacuity)
        (:skip-toplevel-sat-check . fgl-config->skip-toplevel-sat-check)
        (:skip-vacuity-check . fgl-config->skip-vacuity-check))
      'change-fgl-config
      'remake-fgl-config))