pub struct BarResolution {
pub group_name: String,
pub num_steps: usize,
pub ranks: Vec<usize>,
}Expand description
The bar resolution of k over the group algebra kG.
B_n(kG) = kG ⊗ k^{n+1} (as a kG-module).
Fields§
§group_name: StringThe group name.
num_steps: usizeNumber of computed steps.
ranks: Vec<usize>Rank of each bar module B_n.
Implementations§
Trait Implementations§
Source§impl Clone for BarResolution
impl Clone for BarResolution
Source§fn clone(&self) -> BarResolution
fn clone(&self) -> BarResolution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BarResolution
impl RefUnwindSafe for BarResolution
impl Send for BarResolution
impl Sync for BarResolution
impl Unpin for BarResolution
impl UnsafeUnpin for BarResolution
impl UnwindSafe for BarResolution
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