catlog::one::category

Trait FgCategory

Source
pub trait FgCategory: Category {
    type ObGen: Eq + Clone + Into<Self::Ob>;
    type MorGen: Eq + Clone + Into<Self::Mor>;

    // Required methods
    fn ob_generators(&self) -> impl Iterator<Item = Self::ObGen>;
    fn mor_generators(&self) -> impl Iterator<Item = Self::MorGen>;
    fn mor_generator_dom(&self, f: &Self::MorGen) -> Self::Ob;
    fn mor_generator_cod(&self, f: &Self::MorGen) -> Self::Ob;

    // Provided methods
    fn objects(&self) -> impl Iterator<Item = Self::Ob> { ... }
    fn morphisms(&self) -> impl Iterator<Item = Self::Mor> { ... }
}
Expand description

A finitely generated category with specified object and morphism generators.

Unless the category has extra structure like a monoidal product, a finitely generated (f.g.) category has finitely many objects. Moreover, the objects will coincide with the object generators in the typical case that there are no equations between objects. On the other hand, a f.g. category can have infinitely many morphisms and often does.

Required Associated Types§

Source

type ObGen: Eq + Clone + Into<Self::Ob>

Type of an object generator.

In simple cases, Ob = ObGen.

Source

type MorGen: Eq + Clone + Into<Self::Mor>

Type of a morphism generator

Often Mor = Path<Ob, MorGen>.

Required Methods§

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

Provided Methods§

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<G: FinGraph> FgCategory for FreeCategory<G>

Source§

type ObGen = <G as Graph>::V

Source§

type MorGen = <G as Graph>::E

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

Source§

type MorGen = Id

Source§

impl<Id, ThId, S> FgCategory for DiscreteTabModel<Id, ThId, S>
where Id: Eq + Clone + Hash,

Source§

type ObGen = Id

Source§

type MorGen = Id

Source§

impl<S: FinSet> FgCategory for DiscreteCategory<S>

Source§

type ObGen = <S as Set>::Elem

Source§

type MorGen = <S as Set>::Elem

Source§

impl<V, E, EqKey, S> FgCategory for FpCategory<V, E, EqKey, S>
where V: Eq + Clone + Hash, E: Eq + Clone + Hash, EqKey: Eq + Clone + Hash, S: BuildHasher,

Source§

type ObGen = V

Source§

type MorGen = E

Source§

impl<V, E, S> FgCategory for FinCategory<V, E, S>
where V: Eq + Hash + Clone, E: Eq + Hash + Clone, S: BuildHasher,

Source§

type ObGen = V

Source§

type MorGen = E