Skip to main content

Quantitative

Struct Quantitative 

Source
pub struct Quantitative<T: QuantitativeLimit> { /* private fields */ }
Expand description

Quantitative domain.

Implementations§

Source§

impl<T: QuantitativeLimit + Copy> Quantitative<T>

Source

pub fn new(inf: T, sup: T) -> Result<Self, QuantitativeError<T>>

Quantitative domain constructor.

§Arguments
  • inf: Domain inferior limit.
  • sup: Domain superior limit.
§Examples
/// Different inf & sup values
assert!(Quantitative::new(-1, 3).is_ok());
/// Equals inf & sup values
assert!(Quantitative::new(-1, -1).is_ok());
/// Float values
assert!(Quantitative::new(-1.3, -1.2).is_ok());
§Errors

QuantitativeError::InvalidRange: If inf > sup.

assert_eq!(
    Quantitative::new(10, 5),
    Err(QuantitativeError::InvalidRange { inf: 10, sup: 5 })
);
Source

pub fn inf(&self) -> T

Returns domain inferior limit.

§Examples
let inf = -1;
let domain = Quantitative::new(inf, 0).unwrap();
assert_eq!(domain.inf(), inf);
Source

pub fn sup(&self) -> T

Returns domain superior limit.

§Examples
let sup = 3.4;
let domain = Quantitative::new(0.0, sup).unwrap();
assert_eq!(domain.sup(), sup);
Source

pub fn valid_assessment(&self, value: T) -> bool

Check if a given value is a valid assessment in the current domain.

§Arguments
  • value: Value to be checked.
§Examples
let inf = -1.3;
let sup = inf + 1.0;

let domain = Quantitative::new(inf, sup).unwrap();

for (v, e) in [
    (inf, true),
    (sup, true),
    (inf + 0.1, true),
    (sup - 0.1, true),
    (inf - 0.1, false),
    (sup + 0.1, false),
] {
    assert_eq!(domain.valid_assessment(v), e);
}
Source

pub fn intersection(&self, other: &Self) -> Option<Self>

Computes intersection with other interval.

§Arguments
  • other: Interval with which compute the intersection.
§Examples
let domain = Quantitative::new(0.0, 1.0).unwrap();

for (inf, sup, expected) in [
    (0.0, 1.0, Some(Quantitative::new(0.0, 1.0).unwrap())),
    (0.5, 1.0, Some(Quantitative::new(0.5, 1.0).unwrap())),
    (1.0, 1.5, None),
    (-1.0, 0.0, None),
    (-1.0, 0.5, Some(Quantitative::new(0.0, 0.5).unwrap())),
    (-1.0, 2.0, Some(Quantitative::new(0.0, 1.0).unwrap())),
    (0.25, 0.75, Some(Quantitative::new(0.25, 0.75).unwrap()))
] {
    let other = Quantitative::new(inf, sup).unwrap();
    assert_eq!(domain.intersection(&other), expected);
}
Source

pub fn difference(&self, other: &Self) -> Vec<Self>

Computes intersection with other interval.

§Arguments
  • other: Interval with which compute the intersection.
§Examples
let domain = Quantitative::new(0.0, 1.0).unwrap();

for (inf, sup, expected) in [
    (0.0, 1.0, vec![]),
    (0.5, 1.0, vec![Quantitative::new(0.0, 0.5).unwrap()]),
    (0.5, 1.5, vec![Quantitative::new(0.0, 0.5).unwrap()]),
    (1.0, 1.5, vec![Quantitative::new(0.0, 1.0).unwrap()]),
    (-1.0, 0.0, vec![Quantitative::new(0.0, 1.0).unwrap()]),
    (-1.0, 0.5, vec![Quantitative::new(0.5, 1.0).unwrap()]),
    (-1.0, 2.0, vec![]),
    (0.25, 0.75, vec![Quantitative::new(0.0, 0.25).unwrap(), Quantitative::new(0.75, 1.0).unwrap()])
] {
    let other = Quantitative::new(inf, sup).unwrap();
    assert_eq!(domain.difference(&other), expected);
}

Trait Implementations§

Source§

impl<T: Clone + QuantitativeLimit> Clone for Quantitative<T>

Source§

fn clone(&self) -> Quantitative<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + QuantitativeLimit> Debug for Quantitative<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Hash + QuantitativeLimit> Hash for Quantitative<T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: PartialEq + QuantitativeLimit> PartialEq for Quantitative<T>

Source§

fn eq(&self, other: &Quantitative<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: QuantitativeLimit> Domain for Quantitative<T>

Source§

impl<T: Eq + QuantitativeLimit> Eq for Quantitative<T>

Source§

impl<T: QuantitativeLimit> StructuralPartialEq for Quantitative<T>

Auto Trait Implementations§

§

impl<T> Freeze for Quantitative<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Quantitative<T>
where T: RefUnwindSafe,

§

impl<T> Send for Quantitative<T>
where T: Send,

§

impl<T> Sync for Quantitative<T>
where T: Sync,

§

impl<T> Unpin for Quantitative<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Quantitative<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Quantitative<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.