pub struct Cursor<'a> {
tree: &'a mut RefineTree,
ptr: NodePtr,
}
Expand description
A cursor into the refinement tree. More specifically, a Cursor
represents a path from the
root to some internal node in a refinement tree.
Fields§
§tree: &'a mut RefineTree
§ptr: NodePtr
Implementations§
Source§impl<'a> Cursor<'a>
impl<'a> Cursor<'a>
Sourcepub(crate) fn move_to(
&mut self,
marker: &Marker,
clear_children: bool,
) -> Option<Cursor<'_>>
pub(crate) fn move_to( &mut self, marker: &Marker, clear_children: bool, ) -> Option<Cursor<'_>>
Moves the cursor to the specified marker. If clear_children
is true
, all children of
the node are removed after moving the cursor, invalidating any markers pointing to a node
within those children.
pub(crate) fn branch(&mut self) -> Cursor<'_>
pub(crate) fn vars(&self) -> impl Iterator<Item = (Var, Sort)>
pub(crate) fn push_trace(&mut self, trace: TypeTrace)
Sourcepub(crate) fn define_var(&mut self, sort: &Sort) -> Name
pub(crate) fn define_var(&mut self, sort: &Sort) -> Name
Defines a fresh refinement variable with the given sort
and advance the cursor to the new
node. It returns the freshly generated name for the variable.
Sourcepub(crate) fn assume_pred(&mut self, pred: impl Into<Expr>)
pub(crate) fn assume_pred(&mut self, pred: impl Into<Expr>)
Pushes an assumption and moves the cursor into the new node.
Sourcepub(crate) fn check_pred(&mut self, pred: impl Into<Expr>, tag: Tag)
pub(crate) fn check_pred(&mut self, pred: impl Into<Expr>, tag: Tag)
Pushes a predicate that must be true assuming variables and predicates in the current branch
of the tree (i.e., it pushes a NodeKind::Head
). This methods does not advance the cursor.
Sourcepub(crate) fn check_impl(
&mut self,
pred1: impl Into<Expr>,
pred2: impl Into<Expr>,
tag: Tag,
)
pub(crate) fn check_impl( &mut self, pred1: impl Into<Expr>, pred2: impl Into<Expr>, tag: Tag, )
Convenience method to push an assumption followed by a predicate that needs to be checked. This method does not advance the cursor.
pub(crate) fn hoister( &mut self, assume_invariants: AssumeInvariants, ) -> Hoister<Unpacker<'_, 'a>>
pub(crate) fn assume_invariants(&mut self, ty: &Ty, overflow_checking: bool)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Cursor<'a>
impl<'a> !RefUnwindSafe for Cursor<'a>
impl<'a> !Send for Cursor<'a>
impl<'a> !Sync for Cursor<'a>
impl<'a> Unpin for Cursor<'a>
impl<'a> !UnwindSafe for Cursor<'a>
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
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>
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>
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