pub struct Ball1<'a> { /* private fields */ }
Expand description
A norm-1 ball, that is, a set given by $B_1^r = \{x \in \mathbb{R}^n {}:{} \Vert{}x{}\Vert_1 \leq r\}$ or a ball-1 centered at a point $x_c$, that is, $B_1^{x_c, r} = \{x \in \mathbb{R}^n {}:{} \Vert{}x-x_c{}\Vert_1 \leq r\}$
Implementations§
Trait Implementations§
Source§impl<'a> Constraint for Ball1<'a>
impl<'a> Constraint for Ball1<'a>
impl<'a> Copy for Ball1<'a>
Auto Trait Implementations§
impl<'a> Freeze for Ball1<'a>
impl<'a> RefUnwindSafe for Ball1<'a>
impl<'a> Send for Ball1<'a>
impl<'a> Sync for Ball1<'a>
impl<'a> Unpin for Ball1<'a>
impl<'a> UnwindSafe for Ball1<'a>
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