catlog::dbl::model

Struct DiscreteDblModel

Source
pub struct DiscreteDblModel<Id, Cat: FgCategory> { /* private fields */ }
Expand description

A finitely presented model of a discrete double theory.

Since discrete double theory has only identity operations, such a model is a finite presentation of a category sliced over the object and morphism types comprising the theory. A type theorist would call it a “displayed category”.

Implementations§

Source§

impl<Id, Cat> DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source

pub fn new(theory: Arc<DiscreteDblTheory<Cat>>) -> Self

Creates an empty model of the given theory.

Source

pub fn theory_arc(&self) -> Arc<DiscreteDblTheory<Cat>>

Returns a reference-counting pointer to the theory for this model.

Source

pub fn generating_graph( &self, ) -> &(impl FinGraph<V = Id, E = Id> + use<Id, Cat>)

Returns the underlying graph of the model.

Source

pub fn is_free(&self) -> bool

Is the model freely generated?

Source

pub fn add_equation(&mut self, key: Id, eq: PathEq<Id, Id>)

Adds an equation to the model, making it not free.

Source

pub fn iter_invalid(&self) -> impl Iterator<Item = InvalidDblModel<Id>> + '_

Iterates over failures of model to be well defined.

Source

pub fn infer_missing(&mut self)

Infer missing data in the model, where possible.

Objects used in the domain or codomain of morphisms, but not contained as objects of the model, are added and their types are inferred. It is not always possible to do this consistently, so it is important to validate the model even after calling this method.

Trait Implementations§

Source§

impl<Id, Cat> Category for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

type Ob = Id

Type of objects in category.
Source§

type Mor = Path<Id, Id>

Type of morphisms in category.
Source§

fn has_ob(&self, x: &Self::Ob) -> bool

Does the category contain the value as an object?
Source§

fn has_mor(&self, m: &Self::Mor) -> bool

Does the category contain the value as a morphism?
Source§

fn dom(&self, m: &Self::Mor) -> Self::Ob

Gets the domain of a morphism in the category.
Source§

fn cod(&self, m: &Self::Mor) -> Self::Ob

Gets the codomain of a morphism in the category.
Source§

fn compose(&self, path: Path<Self::Ob, Self::Mor>) -> Self::Mor

Composes a path of morphisms in the category.
Source§

fn compose2(&self, f: Self::Mor, g: Self::Mor) -> Self::Mor

Composes a pair of morphisms with compatible (co)domains.
Source§

fn id(&self, x: Self::Ob) -> Self::Mor

Constructs the identity morphism at an object.
Source§

impl<Id: Clone, Cat: Clone + FgCategory> Clone for DiscreteDblModel<Id, Cat>
where Cat::Ob: Clone, Cat::Mor: Clone,

Source§

fn clone(&self) -> DiscreteDblModel<Id, Cat>

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<Id, Cat> DblModel for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

type ObType = <Cat as Category>::Ob

Rust type of object types defined in the theory.
Source§

type MorType = <Cat as Category>::Mor

Rust type of morphism types defined in the theory.
Source§

type ObOp = <Cat as Category>::Ob

Type of operations on objects defined in the theory.
Source§

type MorOp = Path<<Cat as Category>::Ob, <Cat as Category>::Mor>

Type of operations on morphisms defined in the theory.
Source§

type Theory = DiscreteDblTheory<Cat>

The type of double theory that this is a model of.
Source§

fn theory(&self) -> &Self::Theory

The double theory that this model is a model of.
Source§

fn ob_act(&self, x: Self::Ob, _: &Self::ObOp) -> Self::Ob

Acts on an object with an object operation.
Source§

fn mor_act(&self, m: Self::Mor, _: &Self::MorOp) -> Self::Mor

Acts on a morphism with a morphism operation.
Source§

fn ob_type(&self, ob: &Self::Ob) -> Self::ObType

Type of an object.
Source§

fn mor_type(&self, mor: &Self::Mor) -> Self::MorType

Type of a morphism.
Source§

impl<Id: Debug, Cat: Debug + FgCategory> Debug for DiscreteDblModel<Id, Cat>
where Cat::Ob: Debug, Cat::Mor: Debug,

Source§

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

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

impl<Id, Cat> FgCategory for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

type ObGen = Id

Type of an object generator. Read more
Source§

type MorGen = Id

Type of a morphism generator Read more
Source§

fn ob_generators(&self) -> impl Iterator<Item = Self::ObGen>

Iterates over object generators.
Source§

fn mor_generators(&self) -> impl Iterator<Item = Self::MorGen>

Iterates over morphism generators.
Source§

fn mor_generator_dom(&self, f: &Self::MorGen) -> Self::Ob

The domain of a morphism generator
Source§

fn mor_generator_cod(&self, f: &Self::MorGen) -> Self::Ob

The codomain of a morphism generator
Source§

fn objects(&self) -> impl Iterator<Item = Self::Ob>

Iterates over basic objects.
Source§

fn morphisms(&self) -> impl Iterator<Item = Self::Mor>

Iterates over basic morphisms.
Source§

impl<Id, Cat> FgDblModel for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

fn ob_generator_type(&self, ob: &Self::ObGen) -> Self::ObType

Type of an object generator.
Source§

fn mor_generator_type(&self, mor: &Self::MorGen) -> Self::MorType

Type of a morphism generator.
Source§

fn ob_generators_with_type( &self, typ: &Self::ObType, ) -> impl Iterator<Item = Self::ObGen>

Iterates over object generators with the given object type.
Source§

fn mor_generators_with_type( &self, typ: &Self::MorType, ) -> impl Iterator<Item = Self::MorGen>

Iterates over morphism generators with the given morphism type.
Source§

fn objects_with_type( &self, obtype: &Self::ObType, ) -> impl Iterator<Item = Self::Ob>

Iterators over basic objects with the given object type.
Source§

fn morphisms_with_type( &self, mortype: &Self::MorType, ) -> impl Iterator<Item = Self::Mor>

Iterates over basic morphisms with the given morphism type.
Source§

impl<Id, Cat> MutDblModel for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

fn add_ob(&mut self, x: Id, typ: Cat::Ob) -> bool

Adds a basic object to the model.
Source§

fn add_mor(&mut self, f: Id, dom: Id, cod: Id, typ: Cat::Mor) -> bool

Adds a basic morphism to the model.
Source§

fn make_mor(&mut self, f: Id, typ: Cat::Mor) -> bool

Adds a basic morphism to the model without setting its (co)domain.
Source§

fn get_dom(&self, f: &Id) -> Option<&Id>

Gets the domain of a basic morphism, if it is set.
Source§

fn get_cod(&self, f: &Id) -> Option<&Id>

Gets the codomain of a basic morphism, if it is set.
Source§

fn set_dom(&mut self, f: Id, x: Id) -> Option<Id>

Sets the domain of a basic morphism.
Source§

fn set_cod(&mut self, f: Id, x: Id) -> Option<Id>

Sets the codomain of a basic morphism.
Source§

impl<Id, Cat: FgCategory> PartialEq for DiscreteDblModel<Id, Cat>
where Id: Eq + Hash,

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

impl<Id, Cat> Validate for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

type ValidationError = InvalidDblModel<Id>

The type of a validation error. Read more
Source§

fn validate(&self) -> Result<(), NonEmpty<Self::ValidationError>>

Validates the object.
Source§

impl<Id, Cat: FgCategory> Eq for DiscreteDblModel<Id, Cat>
where Id: Eq + Hash,

Auto Trait Implementations§

§

impl<Id, Cat> Freeze for DiscreteDblModel<Id, Cat>

§

impl<Id, Cat> RefUnwindSafe for DiscreteDblModel<Id, Cat>

§

impl<Id, Cat> Send for DiscreteDblModel<Id, Cat>
where Cat: Sync + Send, Id: Send, <Cat as Category>::Ob: Send, <Cat as Category>::Mor: Send,

§

impl<Id, Cat> Sync for DiscreteDblModel<Id, Cat>
where Cat: Sync + Send, Id: Sync, <Cat as Category>::Ob: Sync, <Cat as Category>::Mor: Sync,

§

impl<Id, Cat> Unpin for DiscreteDblModel<Id, Cat>
where Id: Unpin, <Cat as Category>::Ob: Unpin, <Cat as Category>::Mor: Unpin,

§

impl<Id, Cat> UnwindSafe for DiscreteDblModel<Id, Cat>
where Cat: RefUnwindSafe, Id: UnwindSafe, <Cat as Category>::Ob: UnwindSafe, <Cat as Category>::Mor: 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,