• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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

    Fgl-config->sat-config

    Get the sat-config field from a fgl-config.

    Signature
    (fgl-config->sat-config x) → fty::x.name
    Arguments
    x — Guard (fgl-config-p x).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: fgl-config->sat-config$inline

    (defun
     fgl-config->sat-config$inline (x)
     (declare (xargs :guard (fgl-config-p x)))
     (declare (xargs :guard t))
     (let
      ((__function__ 'fgl-config->sat-config))
      (declare (ignorable __function__))
      (mbe
        :logic
        (b* ((x (and t x)))
            (std::prod-cdr
                 (std::prod-cdr (std::prod-car (std::prod-cdr x)))))
        :exec (std::prod-cdr
                   (std::prod-cdr (std::prod-car (std::prod-cdr x)))))))

    Theorem: fgl-config->sat-config$inline-of-fgl-config-fix-x

    (defthm fgl-config->sat-config$inline-of-fgl-config-fix-x
            (equal (fgl-config->sat-config$inline (fgl-config-fix x))
                   (fgl-config->sat-config$inline x)))

    Theorem: fgl-config->sat-config$inline-fgl-config-equiv-congruence-on-x

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