[][src]Struct optimization_engine::constraints::FiniteSet

pub struct FiniteSet<'a> { /* fields omitted */ }

A finite set, $X = \{x_1, x_2, \ldots, x_n\}\subseteq\mathbb{R}^n$, given vectors $x_i\in\mathbb{R}^n$

Implementations

impl<'a> FiniteSet<'a>[src]

pub fn new(data: &'a [&'a [f64]]) -> Self[src]

Construct a finite set, $X = \{x_1, x_2, \ldots, x_n\}$, given vectors $x_i\in\mathbb{R}^n$

Parameters

  • data: vector of vectors (see example below)

Example

use optimization_engine::constraints::*;

let data: &[&[f64]] = &[
   &[1.0, 1.0],
   &[0.0, 1.0],
   &[1.0, 0.0],
   &[0.0, 0.0],
];
let finite_set = FiniteSet::new(data);

Panics

This method will panic if (i) the given vector of data is empty and (ii) if the given vectors have unequal dimensions.

Trait Implementations

impl<'a> Clone for FiniteSet<'a>[src]

impl<'a> Constraint for FiniteSet<'a>[src]

fn project(&self, x: &mut [f64])[src]

Projection on the current finite set

Traverses the elements of the vector, computes norm-2 distances to each element, and updates the given vector x with the closest element from the finite set.

Parameters

  • x: (input) given vector, (output) projection on finite set

Example

use optimization_engine::constraints::*;

let data: &[&[f64]] = &[
   &[0.0, 0.0],
   &[1.0, 1.0],
];
let finite_set = FiniteSet::new(data);
let mut x = [0.7, 0.6];
finite_set.project(&mut x); // compute projection

Panics

Does not panic

impl<'a> Copy for FiniteSet<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for FiniteSet<'a>

impl<'a> Send for FiniteSet<'a>

impl<'a> Sync for FiniteSet<'a>

impl<'a> Unpin for FiniteSet<'a>

impl<'a> UnwindSafe for FiniteSet<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.