Constructs a bitvector by iteratively computing a state for each bit using the function f
,
starting with the initial state s
. At each step, the prior state and the current bit index are
passed to f
, and it produces a bit along with the next state value. These bits are assembled into
the final bitvector.
It produces a sequence of state values [s_0, s_1 .. s_w]
and a bitvector v
where f i s_i = (s_{i+1}, b_i)
and b_i
is bit i
th least-significant bit in v
(e.g., getLsb v i = b_i
).
The theorem iunfoldr_replace
allows uses of BitVec.iunfoldr
to be replaced wiht declarative
specifications that are easier to reason about.
Given a function state
that provides the correct state for every potential iteration count and a
function that computes these states from the correct initial state, the result of applying
BitVec.iunfoldr f
to the initial state is the state corresponding to the bitvector's width paired
with the bitvector that consists of each computed bit.
This theorem can be used to prove properties of functions that are defined using BitVec.iunfoldr
.