• 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
          • Values
            • 4vec
            • 4vec-<<=
            • 3vec
              • 3vec-fix
              • 3vec-equiv
              • 3vec-p!
              • 3vec-p
              • 3vec-fix-fast
              • 2vec
              • 2vecx
              • 2vecnatx
              • 4vec-x
              • 4vec-1x
              • 4vec-1z
              • 4vec-z
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • 3vec

    3vec-fix-fast

    Logically just 3vec-fix, but guarded with 3vec-p so that in the execution this is just the identity.

    Signature
    (3vec-fix-fast x) → *
    Arguments
    x — Guard (3vec-p! x).

    Definitions and Theorems

    Function: 3vec-fix-fast$inline

    (defun 3vec-fix-fast$inline (x)
      (declare (xargs :guard (3vec-p! x)))
      (let ((__function__ '3vec-fix-fast))
        (declare (ignorable __function__))
        (mbe :logic (3vec-fix x) :exec x)))