• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
        • Fgl-rewrite-rules
        • Fgl-function-mode
        • Fgl-object
        • Fgl-solving
          • Fgl-sat-check
          • Fgl-exhaustive-test-config
            • Fgl-exhaustive-test-config-fix
            • Fgl-exhaustive-test-config-equiv
            • Make-fgl-exhaustive-test-config
            • Fgl-exhaustive-test-config->ignore-pathcond
            • Fgl-exhaustive-test-config->ignore-constraint
            • Fgl-exhaustive-test-config->random-iters
            • Fgl-exhaustive-test-config->transform
            • Change-fgl-exhaustive-test-config
              • Fgl-exhaustive-test-config->transform-config-override
              • Fgl-exhaustive-test-config-p
            • Fgl-prove
            • Fgl-vacuity-check
            • Fgl-sat-check/print-counterexample
          • Fgl-handling-if-then-elses
          • Fgl-counterexamples
          • Fgl-getting-bits-from-objects
          • Fgl-primitive-and-meta-rules
          • Fgl-interpreter-overview
          • Fgl-correctness-of-binding-free-variables
          • Fgl-debugging
          • Fgl-testbenches
          • Def-fgl-boolean-constraint
          • Fgl-stack
          • Def-fgl-param-thm
          • Fgl-rewrite-tracing
          • Def-fgl-thm
          • Fgl-fast-alist-support
          • Fgl-array-support
          • Advanced-equivalence-checking-with-fgl
          • Fgl-fty-support
          • Fgl-internals
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Fgl-exhaustive-test-config

    Change-fgl-exhaustive-test-config

    Modifying constructor for fgl-exhaustive-test-config structures.

    Syntax
    (change-fgl-exhaustive-test-config x 
                                       [:ignore-pathcond <ignore-pathcond>] 
                                       [:ignore-constraint <ignore-constraint>] 
                                       [:transform <transform>] 
                                       [:transform-config-override <transform-config-override>] 
                                       [:random-iters <random-iters>]) 
    

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

    We construct a new fgl-exhaustive-test-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-exhaustive-test-config

    (defmacro change-fgl-exhaustive-test-config (x &rest args)
     (std::change-aggregate
        'fgl-exhaustive-test-config
        x args
        '((:ignore-pathcond .
                            fgl-exhaustive-test-config->ignore-pathcond)
          (:ignore-constraint
               .
               fgl-exhaustive-test-config->ignore-constraint)
          (:transform . fgl-exhaustive-test-config->transform)
          (:transform-config-override
               .
               fgl-exhaustive-test-config->transform-config-override)
          (:random-iters .
                         fgl-exhaustive-test-config->random-iters))
        'change-fgl-exhaustive-test-config
        'nil))