#[non_exhaustive]pub enum IntervalDeterminantSign {
Positive,
Negative,
Zero,
Inconclusive,
}Expand description
Sign evidence from an outward-rounded interval determinant.
Positive, Negative, and Zero are proofs about every determinant
represented by the interval matrix. Inconclusive means the computed
enclosure overlaps zero and must not be interpreted as exact singularity.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Positive
The determinant interval is strictly greater than zero.
Negative
The determinant interval is strictly less than zero.
Zero
The determinant interval is exactly [0, 0].
Inconclusive
The determinant interval contains zero and at least one nonzero value.
Trait Implementations§
Source§impl Clone for IntervalDeterminantSign
impl Clone for IntervalDeterminantSign
Source§fn clone(&self) -> IntervalDeterminantSign
fn clone(&self) -> IntervalDeterminantSign
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IntervalDeterminantSign
Source§impl Debug for IntervalDeterminantSign
impl Debug for IntervalDeterminantSign
impl Eq for IntervalDeterminantSign
Source§impl PartialEq for IntervalDeterminantSign
impl PartialEq for IntervalDeterminantSign
impl StructuralPartialEq for IntervalDeterminantSign
Auto Trait Implementations§
impl Freeze for IntervalDeterminantSign
impl RefUnwindSafe for IntervalDeterminantSign
impl Send for IntervalDeterminantSign
impl Sync for IntervalDeterminantSign
impl Unpin for IntervalDeterminantSign
impl UnsafeUnpin for IntervalDeterminantSign
impl UnwindSafe for IntervalDeterminantSign
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