pub struct Counting(pub BigUint);Expand description
Natural-number counting semiring: add is +, mul is *.
A^k[i][j] over this semiring counts the walks of length k from i to
j. The closure converges only when the matrix is nilpotent (acyclic);
otherwise the closure engine raises a limit error.
Tuple Fields§
§0: BigUintImplementations§
Trait Implementations§
impl Eq for Counting
impl StructuralPartialEq for Counting
Auto Trait Implementations§
impl Freeze for Counting
impl RefUnwindSafe for Counting
impl Send for Counting
impl Sync for Counting
impl Unpin for Counting
impl UnsafeUnpin for Counting
impl UnwindSafe for Counting
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
Mutably borrows from an owned value. Read more