Struct optimization_engine::constraints::Halfspace[][src]

pub struct Halfspace<'a> { /* fields omitted */ }
Expand description

A halfspace is a set given by $H = \{x \in \mathbb{R}^n {}:{} \langle c, x\rangle \leq b\}$.

Implementations

A halfspace is a set given by $H = \{x \in \mathbb{R}^n {}:{} \langle c, x\rangle \leq b\}$, where $c$ is the normal vector of the halfspace and $b$ is an offset.

This method constructs a new instance of Halfspace with a given normal vector and bias

Arguments
  • normal_vector: the normal vector, $c$, as a slice
  • offset: the offset parameter, $b$
Returns

New instance of Halfspace

Panics

Does not panic. Note: it does not panic if you provide an empty slice as normal_vector, but you should avoid doing that.

Example
use optimization_engine::constraints::{Constraint, Halfspace};

let normal_vector = [1., 2.];
let offset = 1.0;
let halfspace = Halfspace::new(&normal_vector, offset);
let mut x = [-1., 3.];
halfspace.project(&mut x);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Projects on halfspace using the following formula:

$$\begin{aligned} \mathrm{proj}_{H}(x) = \begin{cases} x,& \text{ if } \langle c, x\rangle \leq b \\ x - \frac{\langle c, x\rangle - b} {\|c\|}c,& \text{else} \end{cases} \end{aligned}$$

where $H = \{x \in \mathbb{R}^n {}:{} \langle c, x\rangle \leq b\}$

Arguments
  • x: (in) vector to be projected on the current instance of a halfspace, (out) projection on the second-order cone
Panics

This method panics if the length of x is not equal to the dimension of the halfspace.

Halfspaces are convex sets

Returns

Returns true

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.