Struct Cursor

Source
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>

Source

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.

Source

pub(crate) fn marker(&self) -> Marker

Returns a marker to the current node

Source

pub(crate) fn branch(&mut self) -> Cursor<'_>

Source

pub(crate) fn vars(&self) -> impl Iterator<Item = (Var, Sort)>

Source

pub(crate) fn push_trace(&mut self, trace: TypeTrace)

Source

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.

Source

pub(crate) fn assume_pred(&mut self, pred: impl Into<Expr>)

Pushes an assumption and moves the cursor into the new node.

Source

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.

Source

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.

Source

pub(crate) fn hoister( &mut self, assume_invariants: AssumeInvariants, ) -> Hoister<Unpacker<'_, 'a>>

Source

pub(crate) fn assume_invariants(&mut self, ty: &Ty, overflow_checking: bool)

Trait Implementations§

Source§

impl Debug for Cursor<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Pretty for Cursor<'_>

Source§

fn fmt(&self, cx: &PrettyCx<'_, '_>, f: &mut Formatter<'_>) -> Result

Source§

fn default_cx(tcx: TyCtxt<'_>) -> PrettyCx<'_, '_>

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.