• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
        • Svex-decomposition-methodology
        • Sv-versus-esim
        • Svex-decomp
        • Svex-compose-dfs
        • Svex-compilation
        • Moddb
        • Svmods
        • Svstmt
        • Sv-tutorial
        • Expressions
          • Rewriting
          • Svex
          • Bit-blasting
          • Functions
          • 4vmask
          • Why-infinite-width
          • Svex-vars
          • Evaluation
            • Svex-xeval
            • Svex-mono-eval
            • Svex-eval
            • Svex-apply
            • Svex-env
              • Svex-env-p
              • Svex-env-reduce
              • Svex-envs-similar
              • Svex-envs-equivalent
              • Svex-env-fix
              • Svex-env-extract
              • Svex-env-lookup
              • Svex-env-acons
              • Svex-env-<<=
              • Svarlist-x-subst
              • Svex-env-equiv
              • Svex-env-boundp
              • Svarlist-x-env
              • Svex-env-fastlookup
            • Svex-alist-eval
            • Svar-boolmasks-lookup
            • Svex-s4eval
            • Svexlist-unquote
            • Svex-alist-eval-for-symbolic
            • Svexlist-eval
            • Svexlist-quotesp
            • Svar-boolmasks
            • Svexlist-s4eval
            • Svexlist-eval-for-symbolic
          • Values
        • Symbolic-test-vector
        • Vl-to-svex
      • Fgl
      • Vwsim
      • Vl
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Evaluation

Svex-env

An alist mapping svars to 4vecs. Often used as an environment that gives variables their values in svex-eval.

This is an ordinary defalist.

Subtopics

Svex-env-p
Recognizer for svex-env.
Svex-env-reduce
Restrict an svex-env to only particular variables. Variables that are present in keys but not env will be left unbound.
Svex-envs-similar
(svex-envs-similar x y) is like alist equivalence for svex-envs: environments are similar if they bind all variables to the same values, in the sense of svex-env-lookup.
Svex-envs-equivalent
(svex-envs-equivalent x y) is a stronger form of alist equivalence for svex-envs than svex-envs-similar: environments are similar if they bind all variables to the same values, in the sense of svex-env-lookup, and they bind the same variables.
Svex-env-fix
(svex-env-fix x) is an fty alist fixing function that follows the drop-keys strategy.
Svex-env-extract
Restrict an svex-env to only particular variables. Variables that are present in keys but not env will be bound to X.
Svex-env-lookup
(Slow) Look up a variable's value in an svex-env.
Svex-env-acons
Extend an svex-env with a new variable binding. Does not expect or preserve fast-alists.
Svex-env-<<=
(svex-env-<<= x y) checks whether an entire svex-env conservatively approximates another: i.e., is every variable's value in x an approximation of its value in y?
Svarlist-x-subst
Creates a substitution alist that maps the given variables to X.
Svex-env-equiv
Basic equivalence relation for svex-env structures.
Svex-env-boundp
(Slow) Check whether a variable is bound in an svex-env.
Svarlist-x-env
Creates an env alist that maps the given variables to X.
Svex-env-fastlookup
Fast lookup in a fast svex-env.