Struct Hypergraph

Source
pub struct Hypergraph<K: ArrayKind, O, A> {
    pub s: IndexedCoproduct<K, FiniteFunction<K>>,
    pub t: IndexedCoproduct<K, FiniteFunction<K>>,
    pub w: SemifiniteFunction<K, O>,
    pub x: SemifiniteFunction<K, A>,
}

Fields§

§s: IndexedCoproduct<K, FiniteFunction<K>>§t: IndexedCoproduct<K, FiniteFunction<K>>§w: SemifiniteFunction<K, O>§x: SemifiniteFunction<K, A>

Implementations§

Source§

impl<K: ArrayKind, O, A> Hypergraph<K, O, A>
where K::Type<K::I>: AsRef<K::Index> + NaturalArray<K>, K::Type<O>: Array<K, O>, K::Type<A>: Array<K, A>,

Source

pub fn new( s: IndexedCoproduct<K, FiniteFunction<K>>, t: IndexedCoproduct<K, FiniteFunction<K>>, w: SemifiniteFunction<K, O>, x: SemifiniteFunction<K, A>, ) -> Result<Hypergraph<K, O, A>, InvalidHypergraph<K>>

Safely create a Hypergraph, ensuring its data is valid.

Source

pub fn validate(self) -> Result<Self, InvalidHypergraph<K>>

A hypergraph is valid when for both sources and targets segmented arrays:

  1. Number of segments is equal to number of operations (x.len())
  2. Values of segmented array are indices in set w.source()
Source

pub fn empty() -> Hypergraph<K, O, A>

Construct the empty hypergraph with no nodes and no hyperedges.

Source

pub fn discrete(w: SemifiniteFunction<K, O>) -> Hypergraph<K, O, A>

The discrete hypergraph, consisting of hypernodes labeled in O.

Source

pub fn is_discrete(&self) -> bool

Source

pub fn coequalize_vertices( &self, q: &FiniteFunction<K>, ) -> Option<Hypergraph<K, O, A>>

Source

pub fn coproduct(&self, other: &Self) -> Self

Source

pub fn tensor_operations(_: Operations<K, O, A>) -> Hypergraph<K, O, A>

Trait Implementations§

Source§

impl<K: ArrayKind, O, A> Add<&Hypergraph<K, O, A>> for &Hypergraph<K, O, A>
where K::Type<K::I>: NaturalArray<K>, K::Type<O>: Array<K, O>, K::Type<A>: Array<K, A>,

Source§

type Output = Hypergraph<K, O, A>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Hypergraph<K, O, A>) -> Self::Output

Performs the + operation. Read more
Source§

impl<K: ArrayKind, O, A> Clone for Hypergraph<K, O, A>
where K::Type<K::I>: Clone, K::Type<O>: Clone, K::Type<A>: Clone,

Source§

fn clone(&self) -> Self

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<K: ArrayKind, O: Debug, A: Debug> Debug for Hypergraph<K, O, A>
where K::Index: Debug, K::Type<K::I>: Debug, K::Type<O>: Debug, K::Type<A>: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<K, O, A> Freeze for Hypergraph<K, O, A>
where <K as ArrayKind>::Type<O>: Freeze, <K as ArrayKind>::Type<A>: Freeze, <K as ArrayKind>::Index: Freeze, <K as ArrayKind>::I: Freeze,

§

impl<K, O, A> RefUnwindSafe for Hypergraph<K, O, A>

§

impl<K, O, A> Send for Hypergraph<K, O, A>
where <K as ArrayKind>::Type<O>: Send, <K as ArrayKind>::Type<A>: Send, <K as ArrayKind>::Index: Send, <K as ArrayKind>::I: Send,

§

impl<K, O, A> Sync for Hypergraph<K, O, A>
where <K as ArrayKind>::Type<O>: Sync, <K as ArrayKind>::Type<A>: Sync, <K as ArrayKind>::Index: Sync, <K as ArrayKind>::I: Sync,

§

impl<K, O, A> Unpin for Hypergraph<K, O, A>
where <K as ArrayKind>::Type<O>: Unpin, <K as ArrayKind>::Type<A>: Unpin, <K as ArrayKind>::Index: Unpin, <K as ArrayKind>::I: Unpin,

§

impl<K, O, A> UnwindSafe for Hypergraph<K, O, A>
where <K as ArrayKind>::Type<O>: UnwindSafe, <K as ArrayKind>::Type<A>: UnwindSafe, <K as ArrayKind>::Index: UnwindSafe, <K as ArrayKind>::I: 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> 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.