catlog::dbl::model_morphism

Struct DiscreteDblModelMorphismFinder

Source
pub struct DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat: FgCategory> { /* private fields */ }
Expand description

Finds morphisms between two models of a discrete double theory.

Morphisms are found using backtracking search. In general, there can be infinitely many morphisms between two models, so not all of them can be reported. The search is restricted to morphisms that send each basic morphism in the domain to a simple path of basic morphisms in the codomain.

Implementations§

Source§

impl<'a, DomId, CodId, Cat> DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where DomId: Clone + Eq + Hash, CodId: Clone + Eq + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source

pub fn max_path_len(&mut self, n: usize) -> &mut Self

Restrict the maximum length of the image of a generator.

Source

pub fn monic(&mut self) -> &mut Self

Restrict the search to monomorphisms between models.

Source

pub fn injective_ob(&mut self) -> &mut Self

Restrict the search to model morphisms that are injective on objects.

Source

pub fn faithful(&mut self) -> &mut Self

Restrict the search to model morphisms that are faithful.

A faithful morphism is an injective map on morphisms when restricted to any domain/codomain pair of objects in the domain.

In future work, this will be efficiently checked for early search tree pruning; however, this is currently enforced by filtering with is_free_simple_faithful.

Source

pub fn initialize_ob(&mut self, ob: DomId, val: CodId) -> &mut Self

Require morphisms to send object ob in domain to val in codomain.

Source

pub fn initialize_mor(&mut self, m: DomId, val: Path<CodId, CodId>) -> &mut Self

Require morphisms to send morphism m in domain to val in codomain.

Source

pub fn find_all(&mut self) -> Vec<DiscreteDblModelMapping<DomId, CodId>>

Finds all morphisms.

Auto Trait Implementations§

§

impl<'a, DomId, CodId, Cat> Freeze for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>

§

impl<'a, DomId, CodId, Cat> RefUnwindSafe for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where DomId: RefUnwindSafe, <Cat as Category>::Ob: RefUnwindSafe, <Cat as Category>::Mor: RefUnwindSafe, CodId: RefUnwindSafe, Cat: RefUnwindSafe,

§

impl<'a, DomId, CodId, Cat> Send for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where Cat: Sync + Send, DomId: Send + Sync, <Cat as Category>::Ob: Sync, <Cat as Category>::Mor: Sync, CodId: Sync + Send,

§

impl<'a, DomId, CodId, Cat> Sync for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where Cat: Sync + Send, DomId: Sync, <Cat as Category>::Ob: Sync, <Cat as Category>::Mor: Sync, CodId: Sync,

§

impl<'a, DomId, CodId, Cat> Unpin for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>
where DomId: Unpin, CodId: Unpin,

§

impl<'a, DomId, CodId, Cat> UnwindSafe for DiscreteDblModelMorphismFinder<'a, DomId, CodId, Cat>

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