catlog::dbl::model_morphism

Struct DiscreteDblModelMapping

Source
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>
where DomId: Clone + Eq + Hash, CodId: Clone + Eq + Hash,

Source

pub fn apply_basic_mor(&self, e: &DomId) -> Option<Path<CodId, CodId>>

Applies the mapping at a basic morphism in the domain model.

Source

pub fn is_basic_mor_assigned(&self, e: &DomId) -> bool

Is the mapping defined at a basic morphism?

Source

pub fn assign_ob(&mut self, x: DomId, y: CodId) -> Option<CodId>

Assigns the mapping at an object, returning the previous assignment.

Source

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.

Source

pub fn unassign_ob(&mut self, x: &DomId) -> Option<CodId>

Unassigns the mapping at an object, returning the previous assignment.

Source

pub fn unassign_basic_mor(&mut self, e: &DomId) -> Option<Path<CodId, CodId>>

Unassigns the mapping a basic morphism, returning the previous assignment.

Source

pub fn syntactic_image<Cat>( &self, cod: &DiscreteDblModel<CodId, Cat>, ) -> DiscreteDblModel<CodId, Cat>
where Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

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.

Source

pub fn morphisms<'a, Cat>( dom: &'a DiscreteDblModel<DomId, Cat>, cod: &'a DiscreteDblModel<CodId, Cat>, ) -> DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Finder of morphisms between two models of a discrete double theory.

Trait Implementations§

Source§

impl<DomId: Clone, CodId: Clone> Clone for DiscreteDblModelMapping<DomId, CodId>

Source§

fn clone(&self) -> DiscreteDblModelMapping<DomId, CodId>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<DomId, CodId> DblModelMapping for DiscreteDblModelMapping<DomId, CodId>
where DomId: Clone + Eq + Hash, CodId: Clone + Eq + Hash,

Source§

type DomOb = DomId

Type of objects in the domain model.
Source§

type DomMor = Path<DomId, DomId>

Type of morphisms in the domain model.
Source§

type CodOb = CodId

Type of objects in the codomain model.
Source§

type CodMor = Path<CodId, CodId>

Type of morphisms in the codomain model.
Source§

fn apply_ob(&self, x: &Self::DomOb) -> Option<Self::CodOb>

Applies the mapping to an object in the domain model.
Source§

fn apply_mor(&self, m: &Self::DomMor) -> Option<Self::CodMor>

Applies the mapping to a morphism in the domain model.
Source§

fn is_ob_assigned(&self, x: &Self::DomOb) -> bool

Is the mapping defined at an object?
Source§

fn is_mor_assigned(&self, m: &Self::DomMor) -> bool

Is the mapping defined at a morphism?
Source§

impl<DomId: Debug, CodId: Debug> Debug for DiscreteDblModelMapping<DomId, CodId>

Source§

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

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

impl<DomId, CodId> Default for DiscreteDblModelMapping<DomId, CodId>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<DomId, CodId> PartialEq for DiscreteDblModelMapping<DomId, CodId>
where DomId: Eq + Hash, CodId: PartialEq,

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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>
where DomId: Send, CodId: Send,

§

impl<DomId, CodId> Sync for DiscreteDblModelMapping<DomId, CodId>
where DomId: Sync, CodId: Sync,

§

impl<DomId, CodId> Unpin for DiscreteDblModelMapping<DomId, CodId>
where DomId: Unpin, CodId: Unpin,

§

impl<DomId, CodId> UnwindSafe for DiscreteDblModelMapping<DomId, CodId>
where DomId: UnwindSafe, CodId: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> Same for T

Source§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,