Struct vstd::pcm::Resource

source ·
pub struct Resource<P> { /* private fields */ }
Expand description

Interface for ghost state that is consistent with the common presentations of partially commutative monoids (PCMs) / resource algebras.

For applications, the general advice is to use the tokenized_state_machine! system, which lets you focus on updates and invariants rather than composition.

However, the PCM interface you’ll find here may be more familiar to people.

Implementations§

source§

impl<P: PCM> Resource<P>

source

pub open spec fn value(self) -> P

source

pub open spec fn loc(self) -> Loc

source

pub proof fn alloc(value: P) -> tracked Self

requires
value.valid(),
ensures
out.value() == value,
source

pub proof fn join(tracked self, tracked other: Self) -> tracked Self

requires
self.loc() == other.loc(),
ensures
out.loc() == self.loc(),
out.value() == P::op(self.value(), other.value()),
source

pub proof fn split(tracked self, left: P, right: P) -> (Self, Self)

requires
self.value() == P::op(left, right),
ensures
out.0.loc() == self.loc(),
out.1.loc() == self.loc(),
out.0.value() == left,
out.1.value() == right,
source

pub proof fn create_unit(loc: Loc) -> tracked Self

ensures
out.value() == P::unit(),
out.loc() == loc,
source

pub proof fn validate(tracked &self)

ensures
self.value().valid(),
source

pub proof fn update(tracked self, new_value: P) -> tracked Self

requires
frame_preserving_update(self.value(), new_value),
ensures
out.loc() == self.loc(),
out.value() == new_value,
source

pub proof fn update_nondeterministic(tracked self, new_values: Set<P>) -> tracked Self

requires
frame_preserving_update_nondeterministic(self.value(), new_values),
ensures
out.loc() == self.loc(),
new_values.contains(out.value()),
source

pub proof fn join_shared<'a>(tracked &'a self, tracked other: &'a Self) -> &'a Self

requires
self.loc() == other.loc(),
ensures
out.loc() == self.loc(),
incl(self.value(), out.value()),
incl(other.value(), out.value()),
source

pub proof fn join_shared_to_target<'a>(tracked &'a self, tracked other: &'a Self, target: P ) -> &'a Self

requires
self.loc() == other.loc(),
conjunct_shared(self.value(), other.value(), target),
ensures
out.loc() == self.loc(),
out.value() == target,
source

pub proof fn weaken<'a>(tracked &'a self, target: P) -> &'a Self

requires
incl(target, self.value()),
ensures
out.loc() == self.loc(),
out.value() == target,
source

pub proof fn validate_2(tracked &mut self, tracked other: &Self)

requires
old(self).loc() == other.loc(),
ensures
*self == *old(self),
P::op(self.value(), other.value()).valid(),
source

pub proof fn update_with_shared(tracked self, tracked other: &Self, new_value: P) -> tracked Self

requires
self.loc() == other.loc(),
frame_preserving_update(
    P::op(self.value(), other.value()),
    P::op(new_value, other.value()),
),
ensures
out.loc() == self.loc(),
out.value() == new_value,
source

pub proof fn update_nondeterministic_with_shared(tracked self, tracked other: &Self, new_values: Set<P> ) -> tracked Self

requires
self.loc() == other.loc(),
frame_preserving_update_nondeterministic(
    P::op(self.value(), other.value()),
    set_op(new_values, other.value()),
),
ensures
out.loc() == self.loc(),
new_values.contains(out.value()),

Auto Trait Implementations§

§

impl<P> RefUnwindSafe for Resource<P>
where P: RefUnwindSafe,

§

impl<P> Send for Resource<P>
where P: Send,

§

impl<P> Sync for Resource<P>
where P: Sync,

§

impl<P> Unpin for Resource<P>
where P: Unpin,

§

impl<P> UnwindSafe for Resource<P>
where P: UnwindSafe,

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, U> TryFrom<U> for T
where U: Into<T>,

§

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

§

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.