pub struct CWComplex {
pub cells: Vec<usize>,
pub attaching_degrees: Vec<Vec<i32>>,
}Expand description
Cellular homology computation via CW structure.
Fields§
§cells: Vec<usize>Number of n-cells: cells[n] = count of n-cells.
attaching_degrees: Vec<Vec<i32>>Attaching map degrees: degrees[n][i] = degree of i-th attaching map in dimension n+1.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CWComplex
impl RefUnwindSafe for CWComplex
impl Send for CWComplex
impl Sync for CWComplex
impl Unpin for CWComplex
impl UnsafeUnpin for CWComplex
impl UnwindSafe for CWComplex
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