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>
impl<Id, Cat> DiscreteDblModel<Id, Cat>
Sourcepub fn new(theory: Arc<DiscreteDblTheory<Cat>>) -> Self
pub fn new(theory: Arc<DiscreteDblTheory<Cat>>) -> Self
Creates an empty model of the given theory.
Sourcepub fn theory_arc(&self) -> Arc<DiscreteDblTheory<Cat>>
pub fn theory_arc(&self) -> Arc<DiscreteDblTheory<Cat>>
Returns a reference-counting pointer to the theory for this model.
Sourcepub fn generating_graph(
&self,
) -> &(impl FinGraph<V = Id, E = Id> + use<Id, Cat>)
pub fn generating_graph( &self, ) -> &(impl FinGraph<V = Id, E = Id> + use<Id, Cat>)
Returns the underlying graph of the model.
Sourcepub fn add_equation(&mut self, key: Id, eq: PathEq<Id, Id>)
pub fn add_equation(&mut self, key: Id, eq: PathEq<Id, Id>)
Adds an equation to the model, making it not free.
Sourcepub fn iter_invalid(&self) -> impl Iterator<Item = InvalidDblModel<Id>> + '_
pub fn iter_invalid(&self) -> impl Iterator<Item = InvalidDblModel<Id>> + '_
Iterates over failures of model to be well defined.
Sourcepub fn infer_missing(&mut self)
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>
impl<Id, Cat> Category for DiscreteDblModel<Id, Cat>
Source§impl<Id: Clone, Cat: Clone + FgCategory> Clone for DiscreteDblModel<Id, Cat>
impl<Id: Clone, Cat: Clone + FgCategory> Clone for DiscreteDblModel<Id, Cat>
Source§fn clone(&self) -> DiscreteDblModel<Id, Cat>
fn clone(&self) -> DiscreteDblModel<Id, Cat>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<Id, Cat> DblModel for DiscreteDblModel<Id, Cat>
impl<Id, Cat> DblModel for DiscreteDblModel<Id, Cat>
Source§type MorOp = Path<<Cat as Category>::Ob, <Cat as Category>::Mor>
type MorOp = Path<<Cat as Category>::Ob, <Cat as Category>::Mor>
Source§type Theory = DiscreteDblTheory<Cat>
type Theory = DiscreteDblTheory<Cat>
Source§fn ob_act(&self, x: Self::Ob, _: &Self::ObOp) -> Self::Ob
fn ob_act(&self, x: Self::Ob, _: &Self::ObOp) -> Self::Ob
Source§impl<Id: Debug, Cat: Debug + FgCategory> Debug for DiscreteDblModel<Id, Cat>
impl<Id: Debug, Cat: Debug + FgCategory> Debug for DiscreteDblModel<Id, Cat>
Source§impl<Id, Cat> FgCategory for DiscreteDblModel<Id, Cat>
impl<Id, Cat> FgCategory for DiscreteDblModel<Id, Cat>
Source§fn ob_generators(&self) -> impl Iterator<Item = Self::ObGen>
fn ob_generators(&self) -> impl Iterator<Item = Self::ObGen>
Source§fn mor_generators(&self) -> impl Iterator<Item = Self::MorGen>
fn mor_generators(&self) -> impl Iterator<Item = Self::MorGen>
Source§fn mor_generator_dom(&self, f: &Self::MorGen) -> Self::Ob
fn mor_generator_dom(&self, f: &Self::MorGen) -> Self::Ob
Source§fn mor_generator_cod(&self, f: &Self::MorGen) -> Self::Ob
fn mor_generator_cod(&self, f: &Self::MorGen) -> Self::Ob
Source§impl<Id, Cat> FgDblModel for DiscreteDblModel<Id, Cat>
impl<Id, Cat> FgDblModel for DiscreteDblModel<Id, Cat>
Source§fn ob_generator_type(&self, ob: &Self::ObGen) -> Self::ObType
fn ob_generator_type(&self, ob: &Self::ObGen) -> Self::ObType
Source§fn mor_generator_type(&self, mor: &Self::MorGen) -> Self::MorType
fn mor_generator_type(&self, mor: &Self::MorGen) -> Self::MorType
Source§fn ob_generators_with_type(
&self,
typ: &Self::ObType,
) -> impl Iterator<Item = Self::ObGen>
fn ob_generators_with_type( &self, typ: &Self::ObType, ) -> impl Iterator<Item = Self::ObGen>
Source§fn mor_generators_with_type(
&self,
typ: &Self::MorType,
) -> impl Iterator<Item = Self::MorGen>
fn mor_generators_with_type( &self, typ: &Self::MorType, ) -> impl Iterator<Item = Self::MorGen>
Source§impl<Id, Cat> MutDblModel for DiscreteDblModel<Id, Cat>
impl<Id, Cat> MutDblModel for DiscreteDblModel<Id, Cat>
Source§impl<Id, Cat: FgCategory> PartialEq for DiscreteDblModel<Id, Cat>
impl<Id, Cat: FgCategory> PartialEq for DiscreteDblModel<Id, Cat>
Source§impl<Id, Cat> Validate for DiscreteDblModel<Id, Cat>
impl<Id, Cat> Validate for DiscreteDblModel<Id, Cat>
Source§type ValidationError = InvalidDblModel<Id>
type ValidationError = InvalidDblModel<Id>
impl<Id, Cat: FgCategory> Eq for DiscreteDblModel<Id, Cat>
Auto Trait Implementations§
impl<Id, Cat> Freeze for DiscreteDblModel<Id, Cat>
impl<Id, Cat> RefUnwindSafe for DiscreteDblModel<Id, Cat>where
Id: RefUnwindSafe,
<Cat as Category>::Ob: RefUnwindSafe,
<Cat as Category>::Mor: RefUnwindSafe,
Cat: RefUnwindSafe,
impl<Id, Cat> Send for DiscreteDblModel<Id, Cat>
impl<Id, Cat> Sync for DiscreteDblModel<Id, Cat>
impl<Id, Cat> Unpin for DiscreteDblModel<Id, Cat>
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> 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.