Struct SimplifiedSmoothedConvexOptimization

Source
pub struct SimplifiedSmoothedConvexOptimization<'a, T, C, D> {
    pub d: i32,
    pub t_end: i32,
    pub bounds: Vec<T>,
    pub switching_cost: Vec<f64>,
    pub hitting_cost: CostFn<'a, Config<T>, C, D>,
}
Expand description

Simplified Smoothed Convex Optimization (SSCO).

  • decision space is lower bounded by $\mathbf{0}$
  • movement costs are a dimension-dependently scaled Manhattan distance

Fields§

§d: i32

Number of dimensions.

§t_end: i32

Finite, positive time horizon.

§bounds: Vec<T>

Vector of upper bounds of each dimension.

§switching_cost: Vec<f64>

Vector of positive real constants resembling the switching cost of each dimension.

§hitting_cost: CostFn<'a, Config<T>, C, D>

Non-negative convex cost functions.

Implementations§

Source§

impl<'a, T, C, D> SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Value<'a>, C: ModelOutputSuccess + 'a, D: ModelOutputFailure + 'a,

Source

pub fn into_sco(self) -> SmoothedConvexOptimization<'a, T, C, D>

Convert to an instance of Smoothed Convex Optimization. This assumes that time slots are added after this conversion.

Trait Implementations§

Source§

impl<'a, T, C, D> BaseProblem for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Value<'a>, C: Clone, D: Clone,

Source§

fn d(&self) -> i32

Number of dimensions.
Source§

fn t_end(&self) -> i32

Finite, positive time horizon.
Source§

fn set_t_end(&mut self, t_end: i32)

Updates the time horizon.
Source§

fn inc_t_end(&mut self)

Increases the time horizon by one time step.
Source§

impl<'a, T: Clone, C: Clone, D: Clone> Clone for SimplifiedSmoothedConvexOptimization<'a, T, C, D>

Source§

fn clone(&self) -> SimplifiedSmoothedConvexOptimization<'a, T, C, D>

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<'a, T, C, D> Debug for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Debug,

Source§

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

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

impl<'a, C, D> DefaultGivenOnlineProblem<f64, SimplifiedSmoothedConvexOptimization<'a, f64, C, D>, C, D> for Memory

Source§

impl<'a, T> Model<T, SimplifiedSmoothedConvexOptimization<'a, T, DataCenterModelOutputSuccess, DataCenterModelOutputFailure>, DataCenterOfflineInput, DataCenterOnlineInput, DataCenterModelOutputSuccess, DataCenterModelOutputFailure> for DataCenterModel
where T: Value<'a>,

Source§

fn to( &self, _: DataCenterOfflineInput, ) -> SimplifiedSmoothedConvexOptimization<'a, T, DataCenterModelOutputSuccess, DataCenterModelOutputFailure>

Generates an offline problem instance given some $input$ (with certainty).
Source§

fn update( &self, o: &mut Online<SimplifiedSmoothedConvexOptimization<'a, T, DataCenterModelOutputSuccess, DataCenterModelOutputFailure>>, _: DataCenterOnlineInput, )

Performs an online update of the given problem instance $o$ with some $input$ (which may be uncertain).
Source§

impl<'a, T, C, D> Problem<T, C, D> for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Value<'a>, C: ModelOutputSuccess, D: ModelOutputFailure,

Source§

fn hit_cost(&self, t: i32, x: Config<T>) -> Cost<C, D>

Hitting cost.
Source§

fn movement(&self, prev_x: Config<T>, x: Config<T>, inverted: bool) -> N64

Movement cost.
Source§

fn objective_function<'a>(&self, xs: &Schedule<T>) -> Result<Cost<C, D>>
where T: Value<'a>,

Objective function. Calculates the cost of a schedule.
Source§

fn inverted_objective_function<'a>( &self, xs: &Schedule<T>, ) -> Result<Cost<C, D>>
where T: Value<'a>,

Inverted Objective function. Calculates the cost of a schedule. Pays the switching cost for powering down rather than powering up.
Source§

fn alpha_unfair_objective_function<'a>( &self, xs: &Schedule<T>, alpha: f64, ) -> Result<Cost<C, D>>
where T: Value<'a>,

$\alpha$-unfair Objective function. Calculates the cost of a schedule.
Source§

fn objective_function_with_default<'a>( &self, xs: &Schedule<T>, default: &Config<T>, ) -> Result<Cost<C, D>>
where T: Value<'a>,

Objective function starting from an initial configuration other than $\mathbf{0}$.
Source§

fn _objective_function_with_default<'a>( &self, xs: &Schedule<T>, default: &Config<T>, alpha: f64, inverted: bool, t_end: i32, ) -> Result<Cost<C, D>>
where T: Value<'a>,

Source§

fn total_movement<'a>(&self, xs: &Schedule<T>, inverted: bool) -> Result<N64>
where T: Value<'a>,

Movement in the decision space.
Source§

fn _default_config<'a>(&self) -> Config<T>
where T: Value<'a>,

Source§

impl<'a, T, C, D> Resettable<'a> for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Value<'a>, C: ModelOutputSuccess, D: ModelOutputFailure,

Source§

fn reset( &'a self, t_start: i32, ) -> SimplifiedSmoothedConvexOptimization<'a, T, C, D>

Shift object to some new initial time $t_start$. Here, $t_start$ is the time before first time slot (e.g., $t_start = 0$ is a no-op).
Source§

impl<'a, T, C, D> VerifiableProblem for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Value<'a>,

Source§

fn verify(&self) -> Result<()>

Auto Trait Implementations§

§

impl<'a, T, C, D> Freeze for SimplifiedSmoothedConvexOptimization<'a, T, C, D>

§

impl<'a, T, C, D> !RefUnwindSafe for SimplifiedSmoothedConvexOptimization<'a, T, C, D>

§

impl<'a, T, C, D> Send for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Send,

§

impl<'a, T, C, D> Sync for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Sync,

§

impl<'a, T, C, D> Unpin for SimplifiedSmoothedConvexOptimization<'a, T, C, D>
where T: Unpin,

§

impl<'a, T, C, D> !UnwindSafe for SimplifiedSmoothedConvexOptimization<'a, T, C, D>

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V