• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
        • Term-level-reasoning
        • Glmc
        • Other-resources
        • Optimization
        • Reference
          • Def-gl-thm
          • Shape-specs
          • Symbolic-objects
          • Gl-aside
          • Def-gl-param-thm
          • Symbolic-arithmetic
          • Bfr
            • Pbfr-depends-on
            • Bfr-varname-p
            • Bfr-varname-fix
            • Bfr-to-param-space
              • Bfr-to-param-space-weak
              • Bfr-from-param-space
            • Bfr-depends-on
            • Aig-var-fix
            • Bfr-reasoning
            • Bfr-andc2
            • Bfr-andc1
            • Bfr-unparam-env
            • Bfr-set-var
            • Bfr-nor
            • Bfr-nand
            • Bfr-mode
            • Bfr-equiv
            • Bfr-xor
            • Bfr-iff
            • Bfr-eval
            • Bfr-param-env
            • Bfr-lookup
            • Bfr-env-equiv
            • Bfr-and
            • Bfr-var
            • Bfr-or
            • Bfr-not
            • Bfr-ite
            • Bdd-mode-or-p-true
            • Aig-mode-or-p-true
            • Bfr-case
          • Def-gl-boolean-constraint
          • Gl-mbe
          • Bvec
          • Flex-bindings
          • Auto-bindings
          • Gl-interp
          • Gl-set-uninterpreted
          • Def-gl-clause-processor
          • Def-glcp-ctrex-rewrite
          • ACL2::always-equal
          • Gl-hint
          • Def-gl-rewrite
          • Def-gl-branch-merge
          • Gl-force-check
          • Gl-concretize
          • Gl-assert
          • Gl-param-thm
          • Gl-simplify-satlink-mode
          • Gl-satlink-mode
          • Gl-bdd-mode
          • Gl-aig-bddify-mode
          • Gl-fraig-satlink-mode
        • Debugging
        • Basic-tutorial
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Bfr

Bfr-to-param-space

Perhaps strengthen a BFR under some hypothesis.

Signature
(bfr-to-param-space p x) → *

The general idea here is to use the hypothesis in order to strengthen the variables that are going to be used while symbolically simulating the conclusion. The BFR p is a representation of the hypothesis, and x is some BFR, typically a variable, that our hypothesis might tell us something about.

In BDD mode, we use BDD parameterization to produce a new BDD that is similar to x but that may be collapsed in cases where p is false. In AIG mode, we do something much lighter weight, and essentially just look for variables that we happen to know are true or false.

Definitions and Theorems

Function: bfr-to-param-space

(defun bfr-to-param-space (p x)
 (declare (xargs :guard t))
 (let ((__function__ 'bfr-to-param-space))
  (declare (ignorable __function__))
  (bfr-case
       :bdd (acl2::to-param-space p x)
       :aig (acl2::aig-restrict
                 x
                 (acl2::aig-extract-iterated-assigns-alist p 10)))))

Subtopics

Bfr-to-param-space-weak
Same as bfr-to-param-space for BDDs, but don't bother to do anything if we're working with AIGs.
Bfr-from-param-space