pub struct DiscreteDblModelMapping<DomId, CodId> { /* private fields */ }
Expand description
A mapping between models of a discrete double theory.
Because a discrete double theory has only trivial operations, the naturality axioms for a model morphism also become trivial.
Implementations§
Source§impl<DomId, CodId> DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> DiscreteDblModelMapping<DomId, CodId>
Sourcepub fn apply_basic_mor(&self, e: &DomId) -> Option<Path<CodId, CodId>>
pub fn apply_basic_mor(&self, e: &DomId) -> Option<Path<CodId, CodId>>
Applies the mapping at a basic morphism in the domain model.
Sourcepub fn is_basic_mor_assigned(&self, e: &DomId) -> bool
pub fn is_basic_mor_assigned(&self, e: &DomId) -> bool
Is the mapping defined at a basic morphism?
Sourcepub fn assign_ob(&mut self, x: DomId, y: CodId) -> Option<CodId>
pub fn assign_ob(&mut self, x: DomId, y: CodId) -> Option<CodId>
Assigns the mapping at an object, returning the previous assignment.
Sourcepub fn assign_basic_mor(
&mut self,
e: DomId,
n: Path<CodId, CodId>,
) -> Option<Path<CodId, CodId>>
pub fn assign_basic_mor( &mut self, e: DomId, n: Path<CodId, CodId>, ) -> Option<Path<CodId, CodId>>
Assigns the mapping at a basic morphism, returning the previous assignment.
Sourcepub fn unassign_ob(&mut self, x: &DomId) -> Option<CodId>
pub fn unassign_ob(&mut self, x: &DomId) -> Option<CodId>
Unassigns the mapping at an object, returning the previous assignment.
Sourcepub fn unassign_basic_mor(&mut self, e: &DomId) -> Option<Path<CodId, CodId>>
pub fn unassign_basic_mor(&mut self, e: &DomId) -> Option<Path<CodId, CodId>>
Unassigns the mapping a basic morphism, returning the previous assignment.
Sourcepub fn syntactic_image<Cat>(
&self,
cod: &DiscreteDblModel<CodId, Cat>,
) -> DiscreteDblModel<CodId, Cat>
pub fn syntactic_image<Cat>( &self, cod: &DiscreteDblModel<CodId, Cat>, ) -> DiscreteDblModel<CodId, Cat>
Basic objects and morphisms in the image of the model morphism.
Note this method does not compute the set-theoretic image of the model morphism, as the image of a functor need not even form a category (Math.SE), nor does it compute submodel spanned by the image, generalizing the subcategory spanned by the image of a functor. Instead, this method constructs a “syntactical image” comprising all basic objects and morphisms appearing in the image of the model morphism, possibly inside composites.
Sourcepub fn morphisms<'a, Cat>(
dom: &'a DiscreteDblModel<DomId, Cat>,
cod: &'a DiscreteDblModel<CodId, Cat>,
) -> DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
pub fn morphisms<'a, Cat>( dom: &'a DiscreteDblModel<DomId, Cat>, cod: &'a DiscreteDblModel<CodId, Cat>, ) -> DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
Finder of morphisms between two models of a discrete double theory.
Trait Implementations§
Source§impl<DomId: Clone, CodId: Clone> Clone for DiscreteDblModelMapping<DomId, CodId>
impl<DomId: Clone, CodId: Clone> Clone for DiscreteDblModelMapping<DomId, CodId>
Source§fn clone(&self) -> DiscreteDblModelMapping<DomId, CodId>
fn clone(&self) -> DiscreteDblModelMapping<DomId, CodId>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<DomId, CodId> DblModelMapping for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> DblModelMapping for DiscreteDblModelMapping<DomId, CodId>
Source§fn apply_ob(&self, x: &Self::DomOb) -> Option<Self::CodOb>
fn apply_ob(&self, x: &Self::DomOb) -> Option<Self::CodOb>
Source§fn apply_mor(&self, m: &Self::DomMor) -> Option<Self::CodMor>
fn apply_mor(&self, m: &Self::DomMor) -> Option<Self::CodMor>
Source§fn is_ob_assigned(&self, x: &Self::DomOb) -> bool
fn is_ob_assigned(&self, x: &Self::DomOb) -> bool
Source§fn is_mor_assigned(&self, m: &Self::DomMor) -> bool
fn is_mor_assigned(&self, m: &Self::DomMor) -> bool
Source§impl<DomId, CodId> Default for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> Default for DiscreteDblModelMapping<DomId, CodId>
Source§impl<DomId, CodId> PartialEq for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> PartialEq for DiscreteDblModelMapping<DomId, CodId>
Auto Trait Implementations§
impl<DomId, CodId> Freeze for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> RefUnwindSafe for DiscreteDblModelMapping<DomId, CodId>where
DomId: RefUnwindSafe,
CodId: RefUnwindSafe,
impl<DomId, CodId> Send for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> Sync for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> Unpin for DiscreteDblModelMapping<DomId, CodId>
impl<DomId, CodId> UnwindSafe for DiscreteDblModelMapping<DomId, CodId>where
DomId: UnwindSafe,
CodId: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.