IndexMatrix

Struct IndexMatrix 

Source
pub struct IndexMatrix<'a, R, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>> { /* private fields */ }
Expand description

An unordered collections of pairs (R, C), implemented with a sparse bit-matrix.

“Sparse” means “hash map from rows to bit-sets of columns”. Subsequently, only column types C must be indexed, while row types R only need be hashable.

Implementations§

Source§

impl<'a, R, C, S, P> IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

Source

pub fn new(col_domain: &P::Pointer<IndexedDomain<C>>) -> Self

Creates an empty matrix.

Source

pub fn insert<M>(&mut self, row: R, col: impl ToIndex<C, M>) -> bool

Inserts a pair (row, col) into the matrix, returning true if self changed.

Source

pub fn union_into_row(&mut self, into: R, from: &IndexSet<'a, C, S, P>) -> bool

Adds all elements of from into the row into.

Source

pub fn union_rows(&mut self, from: R, to: R) -> bool

Adds all elements from the row from into the row into.

Source

pub fn row(&self, row: &R) -> impl Iterator<Item = &C>

Returns an iterator over the elements in row.

Source

pub fn rows( &self, ) -> impl ExactSizeIterator<Item = (&R, &IndexSet<'a, C, S, P>)>

Returns an iterator over all rows in the matrix.

Source

pub fn row_set(&self, row: &R) -> &IndexSet<'a, C, S, P>

Returns the IndexSet for a particular row.

Source

pub fn clear_row(&mut self, row: &R)

Clears all the elements from the row.

Source

pub fn col_domain(&self) -> &P::Pointer<IndexedDomain<C>>

Returns the IndexedDomain for the column type.

Source§

impl<'a, R, C, S, P> IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone + 'a, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

Source

pub fn transpose<T, M>( &self, row_domain: &P::Pointer<IndexedDomain<T>>, ) -> IndexMatrix<'a, C::Index, T, S, P>
where T: IndexedValue + 'a, R: ToIndex<T, M>,

Transposes the matrix, assuming the row type is also indexed.

Trait Implementations§

Source§

impl<'a, R, C, S, P> Clone for IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, R, C, S, P> Debug for IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone + Debug, C: IndexedValue + Debug + 'a, S: BitSet, P: PointerFamily<'a>,

Source§

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

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

impl<'a, R, C, S, P> JoinSemiLattice for IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

Source§

fn join(&mut self, other: &Self) -> bool

Computes the least upper bound of two elements, storing the result in self and returning true if self has changed. Read more
Source§

impl<'a, R, C, S, P> PartialEq for IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

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<'a, R, C, S, P> Eq for IndexMatrix<'a, R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue + 'a, S: BitSet, P: PointerFamily<'a>,

Auto Trait Implementations§

§

impl<'a, R, C, S, P> Freeze for IndexMatrix<'a, R, C, S, P>
where <P as PointerFamily<'a>>::Pointer<IndexedDomain<C>>: Freeze, S: Freeze,

§

impl<'a, R, C, S, P> RefUnwindSafe for IndexMatrix<'a, R, C, S, P>

§

impl<'a, R, C, S, P> Send for IndexMatrix<'a, R, C, S, P>
where <P as PointerFamily<'a>>::Pointer<IndexedDomain<C>>: Send, S: Send, R: Send,

§

impl<'a, R, C, S, P> Sync for IndexMatrix<'a, R, C, S, P>
where <P as PointerFamily<'a>>::Pointer<IndexedDomain<C>>: Sync, S: Sync, R: Sync,

§

impl<'a, R, C, S, P> Unpin for IndexMatrix<'a, R, C, S, P>
where <P as PointerFamily<'a>>::Pointer<IndexedDomain<C>>: Unpin, S: Unpin, R: Unpin,

§

impl<'a, R, C, S, P> UnwindSafe for IndexMatrix<'a, R, C, S, P>

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.