• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
      • Gl
      • Witness-cp
      • Ccg
      • Install-not-normalized
      • Rewrite$
      • 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
        • Removable-runes
        • Efficiency
        • Rewrite-bounds
        • Bash
        • Def-dag-measure
        • 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
      • Math
      • Testing-utilities
    • Fgl-exhaustive-test-config

    Make-fgl-exhaustive-test-config

    Basic constructor macro for fgl-exhaustive-test-config structures.

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

    This is the usual way to construct fgl-exhaustive-test-config structures. It simply conses together a structure with the specified fields.

    This macro generates a new fgl-exhaustive-test-config structure from scratch. See also change-fgl-exhaustive-test-config, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-fgl-exhaustive-test-config

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

    Function: fgl-exhaustive-test-config

    (defun fgl-exhaustive-test-config
           (ignore-pathcond ignore-constraint transform
                            transform-config-override random-iters)
     (declare (xargs :guard (and (booleanp ignore-pathcond)
                                 (booleanp ignore-constraint)
                                 (booleanp transform)
                                 (acl2::maybe-natp random-iters))))
     (declare (xargs :guard t))
     (let ((__function__ 'fgl-exhaustive-test-config))
      (declare (ignorable __function__))
      (b* ((ignore-pathcond (mbe :logic (bool-fix ignore-pathcond)
                                 :exec ignore-pathcond))
           (ignore-constraint (mbe :logic (bool-fix ignore-constraint)
                                   :exec ignore-constraint))
           (transform (mbe :logic (bool-fix transform)
                           :exec transform))
           (random-iters (mbe :logic (acl2::maybe-natp-fix random-iters)
                              :exec random-iters)))
        (cons :fgl-exhaustive-test-config
              (list (cons 'ignore-pathcond ignore-pathcond)
                    (cons 'ignore-constraint
                          ignore-constraint)
                    (cons 'transform transform)
                    (cons 'transform-config-override
                          transform-config-override)
                    (cons 'random-iters random-iters))))))