pub struct EulerCharacteristic;Expand description
Euler characteristic and Euler-Poincaré theorem.
Provides utilities for computing the Euler characteristic from cell counts, Betti numbers, and classification of surfaces.
Implementations§
Source§impl EulerCharacteristic
impl EulerCharacteristic
Sourcepub fn from_cell_counts(counts: &[usize]) -> i64
pub fn from_cell_counts(counts: &[usize]) -> i64
Euler characteristic from cell counts: χ = V - E + F - … (alternating sum).
Sourcepub fn from_betti(betti: &[usize]) -> i64
pub fn from_betti(betti: &[usize]) -> i64
Euler characteristic from Betti numbers (Euler-Poincaré theorem): χ = Σ_k (-1)^k β_k.
Sourcepub fn surface_genus(g: usize) -> i64
pub fn surface_genus(g: usize) -> i64
Euler characteristic of a compact orientable surface of genus g: χ = 2 - 2g.
Sourcepub fn genus_from_chi(chi: i64) -> Option<i64>
pub fn genus_from_chi(chi: i64) -> Option<i64>
Genus of a compact orientable surface from Euler characteristic: g = (2 - χ) / 2. Returns None if χ is odd.
Sourcepub fn classify_surface(chi: i64) -> &'static str
pub fn classify_surface(chi: i64) -> &'static str
Classification: returns a description string for surfaces by χ.
Trait Implementations§
Source§impl Clone for EulerCharacteristic
impl Clone for EulerCharacteristic
Source§fn clone(&self) -> EulerCharacteristic
fn clone(&self) -> EulerCharacteristic
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 EulerCharacteristic
impl RefUnwindSafe for EulerCharacteristic
impl Send for EulerCharacteristic
impl Sync for EulerCharacteristic
impl Unpin for EulerCharacteristic
impl UnsafeUnpin for EulerCharacteristic
impl UnwindSafe for EulerCharacteristic
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.