pub struct RegularSubdivision {
pub points: Vec<Vec<i64>>,
pub heights: Vec<f64>,
pub num_cells: usize,
}Expand description
Regular subdivision of a point configuration (used for tropical hypersurfaces).
Fields§
§points: Vec<Vec<i64>>§heights: Vec<f64>§num_cells: usizeImplementations§
Trait Implementations§
Source§impl Clone for RegularSubdivision
impl Clone for RegularSubdivision
Source§fn clone(&self) -> RegularSubdivision
fn clone(&self) -> RegularSubdivision
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 RegularSubdivision
impl RefUnwindSafe for RegularSubdivision
impl Send for RegularSubdivision
impl Sync for RegularSubdivision
impl Unpin for RegularSubdivision
impl UnsafeUnpin for RegularSubdivision
impl UnwindSafe for RegularSubdivision
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