• 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

    Fgl-exhaustive-test-config->transform

    Get the transform field from a fgl-exhaustive-test-config.

    Signature
    (fgl-exhaustive-test-config->transform x) → transform
    Arguments
    x — Guard (fgl-exhaustive-test-config-p x).
    Returns
    transform — Type (booleanp transform).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: fgl-exhaustive-test-config->transform$inline

    (defun fgl-exhaustive-test-config->transform$inline (x)
      (declare (xargs :guard (fgl-exhaustive-test-config-p x)))
      (declare (xargs :guard t))
      (let ((__function__ 'fgl-exhaustive-test-config->transform))
        (declare (ignorable __function__))
        (mbe :logic
             (b* ((x (and t x)))
               (bool-fix (cdr (std::da-nth 2 (cdr x)))))
             :exec (cdr (std::da-nth 2 (cdr x))))))

    Theorem: booleanp-of-fgl-exhaustive-test-config->transform

    (defthm booleanp-of-fgl-exhaustive-test-config->transform
      (b* ((transform (fgl-exhaustive-test-config->transform$inline x)))
        (booleanp transform))
      :rule-classes :rewrite)

    Theorem: fgl-exhaustive-test-config->transform$inline-of-fgl-exhaustive-test-config-fix-x

    (defthm
     fgl-exhaustive-test-config->transform$inline-of-fgl-exhaustive-test-config-fix-x
     (equal (fgl-exhaustive-test-config->transform$inline
                 (fgl-exhaustive-test-config-fix x))
            (fgl-exhaustive-test-config->transform$inline x)))

    Theorem: fgl-exhaustive-test-config->transform$inline-fgl-exhaustive-test-config-equiv-congruence-on-x

    (defthm
     fgl-exhaustive-test-config->transform$inline-fgl-exhaustive-test-config-equiv-congruence-on-x
     (implies
         (fgl-exhaustive-test-config-equiv x x-equiv)
         (equal (fgl-exhaustive-test-config->transform$inline x)
                (fgl-exhaustive-test-config->transform$inline x-equiv)))
     :rule-classes :congruence)