Struct rustc_index::bit_set::SparseBitMatrix [−][src]
pub struct SparseBitMatrix<R, C> where
R: Idx,
C: Idx, {
num_columns: usize,
rows: IndexVec<R, Option<HybridBitSet<C>>>,
}
Expand description
A fixed-column-size, variable-row-size 2D bit matrix with a moderately sparse representation.
Initially, every row has no explicit representation. If any bit within a
row is set, the entire row is instantiated as Some(<HybridBitSet>)
.
Furthermore, any previously uninstantiated rows prior to it will be
instantiated as None
. Those prior rows may themselves become fully
instantiated later on if any of their bits are set.
R
and C
are index types used to identify rows and columns respectively;
typically newtyped usize
wrappers, but they can also just be usize
.
Fields
num_columns: usize
rows: IndexVec<R, Option<HybridBitSet<C>>>
Implementations
Creates a new empty sparse bit matrix with no rows or columns.
Sets the cell at (row, column)
to true. Put another way, insert
column
to the bitset for row
.
Returns true
if this changed the matrix.
Sets the cell at (row, column)
to false. Put another way, delete
column
from the bitset for row
. Has no effect if row
does not
exist.
Returns true
if this changed the matrix.
Sets all columns at row
to false. Has no effect if row
does
not exist.
Do the bits from row
contain column
? Put another way, is
the matrix cell at (row, column)
true? Put yet another way,
if the matrix represents (transitive) reachability, can
row
reach column
?
Adds the bits from row read
to the bits from row write
, and
returns true
if anything changed.
This is used when computing transitive reachability because if
you have an edge write -> read
, because in that case
write
can reach everything that read
can (and
potentially more).
Insert all bits in the given row.
Iterates through all the columns set to true in a given row of the matrix.
pub fn intersect_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
pub fn intersect_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
Interescts row
with set
. set
can be either BitSet
or
HybridBitSet
. Has no effect if row
does not exist.
Returns true if the row was changed.
pub fn subtract_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
pub fn subtract_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
Subtracts set from
row.
setcan be either
BitSetor
HybridBitSet. Has no effect if
row` does not exist.
Returns true if the row was changed.
pub fn union_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
pub fn union_row<Set>(&mut self, row: R, set: &Set) -> bool where
HybridBitSet<C>: BitRelations<Set>,
Unions row
with set
. set
can be either BitSet
or
HybridBitSet
.
Returns true if the row was changed.
Trait Implementations
Auto Trait Implementations
impl<R, C> RefUnwindSafe for SparseBitMatrix<R, C> where
C: RefUnwindSafe,
impl<R, C> Send for SparseBitMatrix<R, C> where
C: Send,
impl<R, C> Sync for SparseBitMatrix<R, C> where
C: Sync,
impl<R, C> Unpin for SparseBitMatrix<R, C> where
C: Unpin,
impl<R, C> UnwindSafe for SparseBitMatrix<R, C> where
C: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes