pub open spec fn prepare_congruent<A, B>(a: A, b: B) -> boolwhere
A: Consistency + SpecByteLen<T = A::Val>,
B: Consistency<Val = A::Val> + SpecByteLen<T = A::Val>,Expand description
{
&&& forall |v: A::Val| a.consistent(v) <==> b.consistent(v)
&&& forall |v: A::Val| a.byte_len(v) == b.byte_len(v)
}Equality of the two semantic components used by executable preparation.