struct KVarEncodingCtxt {
kvars: IndexVec<KVid, FixpointKVar>,
map: UnordMap<KVid, Vec<KVid>>,
}
Expand description
During encoding into fixpoint we generate multiple fixpoint kvars per kvar in flux. A
KVarEncodingCtxt
is used to keep track of the state needed for this.
Fields§
§kvars: IndexVec<KVid, FixpointKVar>
List of all kvars that need to be defined in fixpoint
map: UnordMap<KVid, Vec<KVid>>
A mapping from rty::KVid
to the list of fixpoint::KVid
s encoding the kvar.
Implementations§
Source§impl KVarEncodingCtxt
impl KVarEncodingCtxt
fn encode( &mut self, kvid: KVid, decl: &KVarDecl, scx: &mut SortEncodingCtxt, ) -> &[KVid]
fn into_fixpoint(self) -> Vec<KVarDecl>
Trait Implementations§
Source§impl Default for KVarEncodingCtxt
impl Default for KVarEncodingCtxt
Source§fn default() -> KVarEncodingCtxt
fn default() -> KVarEncodingCtxt
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KVarEncodingCtxt
impl RefUnwindSafe for KVarEncodingCtxt
impl Send for KVarEncodingCtxt
impl Sync for KVarEncodingCtxt
impl Unpin for KVarEncodingCtxt
impl UnwindSafe for KVarEncodingCtxt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more