pub struct DblTree<E, ProE, Sq>(pub Tree<DblNode<E, ProE, Sq>>);
Expand description
A double tree, or pasting diagram in a virtual double category.
As the name suggests, the underlying data structure of a double tree is a
[Tree
] whose nodes represent cells (or occasionally arrows) in the
pasting diagram. Not just any underlying tree constitutes a valid pasting. For
example, the domains/codomains and sources/targets of the cells must compatible,
and spines can only appear in certain configurations.
Moreover, among the valid trees, invariants are maintained to ensure a normal
form among equivalent representations of the same pasting.
TODO: Enforce invariant with identities when graft
-ing.
Tuple Fields§
§0: Tree<DblNode<E, ProE, Sq>>
Implementations§
Source§impl<E, ProE, Sq> DblTree<E, ProE, Sq>
impl<E, ProE, Sq> DblTree<E, ProE, Sq>
Sourcepub fn linear(iter: impl IntoIterator<Item = Sq>) -> Option<Self>
pub fn linear(iter: impl IntoIterator<Item = Sq>) -> Option<Self>
Constructs a linear tree from a sequence of squares.
Sourcepub fn spines<V>(path: Path<V, E>) -> Option<Self>
pub fn spines<V>(path: Path<V, E>) -> Option<Self>
Constructs a tree from a non-empty path of edges.
Sourcepub fn from_nodes(
iter: impl IntoIterator<Item = DblNode<E, ProE, Sq>>,
) -> Option<Self>
pub fn from_nodes( iter: impl IntoIterator<Item = DblNode<E, ProE, Sq>>, ) -> Option<Self>
Constructs a linear tree from a sequence of node values.
Sourcepub fn two_level(leaves: impl IntoIterator<Item = Sq>, base: Sq) -> Self
pub fn two_level(leaves: impl IntoIterator<Item = Sq>, base: Sq) -> Self
Constructs a tree of a height two.
Sourcepub fn graft(subtrees: impl IntoIterator<Item = Self>, base: Sq) -> Self
pub fn graft(subtrees: impl IntoIterator<Item = Self>, base: Sq) -> Self
Constructs a tree by grafting trees as subtrees onto a base cell.
Sourcepub fn size(&self) -> usize
pub fn size(&self) -> usize
The size of the tree.
The size of a double tree is the number of non-identity nodes in it.
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Is the tree empty?
A double tree is empty if its sole node, the root, is an identity.
Sourcepub fn leaves(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
pub fn leaves(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
Iterates over the leaves of the double tree.
Sourcepub fn src_nodes(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
pub fn src_nodes(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
Iterates over nodes along the source (left) boundary of the double tree.
Warning: iteration proceeds from the tree’s root to its left-most leaf, which is the opposite order of the path of edges.
Sourcepub fn tgt_nodes(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
pub fn tgt_nodes(&self) -> impl Iterator<Item = &DblNode<E, ProE, Sq>>
Iterates over nodes along the target (right) boundary of the double tree.
Warning: iteration proceeds from the tree’s root to its right-most leaf, which is the opposite order of the path of edges.
Sourcepub fn dom<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
pub fn dom<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
Domain of the tree in the given virtual double graph.
Sourcepub fn cod(&self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>) -> ProEwhere
ProE: Clone,
pub fn cod(&self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>) -> ProEwhere
ProE: Clone,
Codomain of the tree in the given virtual double graph.
Sourcepub fn src<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
pub fn src<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
Source of the tree in the given virtual double graph.
Sourcepub fn tgt<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
pub fn tgt<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
Target of the tree in the given virtual double graph.
Sourcepub fn arity(
&self,
graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>,
) -> usize
pub fn arity( &self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>, ) -> usize
Arity of the composite cell specified by the tree.
Sourcepub fn contained_in(
&self,
graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>,
) -> bool
pub fn contained_in( &self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>, ) -> bool
Is the double tree contained in the given virtual double graph?
This includes checking whether the double tree is well-typed, i.e., that the domains and codomains, and sources and targets, of the cells are compatible.
Sourcepub fn is_isomorphic_to(&self, other: &Self) -> bool
pub fn is_isomorphic_to(&self, other: &Self) -> bool
Is the double tree isomorphic to another?
Trait Implementations§
impl<E: Eq, ProE: Eq, Sq: Eq> Eq for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> StructuralPartialEq for DblTree<E, ProE, Sq>
Auto Trait Implementations§
impl<E, ProE, Sq> Freeze for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> RefUnwindSafe for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> Send for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> Sync for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> Unpin for DblTree<E, ProE, Sq>
impl<E, ProE, Sq> UnwindSafe for DblTree<E, ProE, Sq>
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.