ROL
|
Bound constraints on optimization parameters. More...
#include <ROL_DiodeCircuit.hpp>
Public Member Functions | |
BoundConstraint_DiodeCircuit (Real scale, Real lo_Is, Real up_Is, Real lo_Rs, Real up_Rs) | |
void | project (Vector< Real > &x) |
Project optimization variables onto the bounds. More... | |
bool | isFeasible (const Vector< Real > &x) |
Check if the vector, v, is feasible. More... | |
void | pruneLowerActive (Vector< Real > &v, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the lower \(\epsilon\)-active set. More... | |
void | pruneUpperActive (Vector< Real > &v, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the upper \(\epsilon\)-active set. More... | |
void | pruneActive (Vector< Real > &v, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the \(\epsilon\)-active set. More... | |
void | pruneLowerActive (Vector< Real > &v, const Vector< Real > &g, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the lower \(\epsilon\)-binding set. More... | |
void | pruneUpperActive (Vector< Real > &v, const Vector< Real > &g, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the upper \(\epsilon\)-binding set. More... | |
void | pruneActive (Vector< Real > &v, const Vector< Real > &g, const Vector< Real > &x, Real eps) |
Set variables to zero if they correspond to the \(\epsilon\)-binding set. More... | |
void | setVectorToUpperBound (ROL::Vector< Real > &u) |
Set the input vector to the upper bound. More... | |
void | setVectorToLowerBound (ROL::Vector< Real > &l) |
Set the input vector to the lower bound. More... | |
![]() | |
virtual | ~BoundConstraint () |
BoundConstraint (void) | |
Default constructor. More... | |
virtual void | update (const Vector< Real > &x, bool flag=true, int iter=-1) |
Update bounds. More... | |
void | activate (void) |
Turn on bounds. More... | |
void | deactivate (void) |
Turn off bounds. More... | |
bool | isActivated (void) |
Check if bounds are on. More... | |
void | pruneInactive (Vector< Real > &v, const Vector< Real > &x, Real eps=0.0) |
Set variables to zero if they correspond to the \(\epsilon\)-inactive set. More... | |
void | pruneInactive (Vector< Real > &v, const Vector< Real > &g, const Vector< Real > &x, Real eps=0.0) |
Set variables to zero if they correspond to the \(\epsilon\)-nonbinding set. More... | |
void | computeProjectedGradient (Vector< Real > &g, const Vector< Real > &x) |
Compute projected gradient. More... | |
void | computeProjectedStep (Vector< Real > &v, const Vector< Real > &x) |
Compute projected step. More... | |
Private Attributes | |
std::vector< Real > | x_lo_ |
Vector of lower bounds. More... | |
std::vector< Real > | x_up_ |
Vector of upper bounds. More... | |
Real | min_diff_ |
Half of the minimum distance between upper and lower bounds. More... | |
Real | scale_ |
Scaling for the epsilon margin. More... | |
Bound constraints on optimization parameters.
Definition at line 736 of file ROL_DiodeCircuit.hpp.
|
inline |
|
inlinevirtual |
Project optimization variables onto the bounds.
This function implements the projection of \(x\) onto the bounds, i.e.,
\[ (P_{[a,b]}(x))(\xi) = \min\{b(\xi),\max\{a(\xi),x(\xi)\}\} \quad \text{for almost every }\xi\in\Xi. \]
[in,out] | x | is the optimization variable. |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 757 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Check if the vector, v, is feasible.
This function returns true if \(v = P_{[a,b]}(v)\).
[in] | v | is the vector to be checked. |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 763 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set variables to zero if they correspond to the lower \(\epsilon\)-active set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{A}^-_\epsilon(x)\). Here, the lower \(\epsilon\)-active set is defined as
\[ \mathcal{A}^-_\epsilon(x) = \{\,\xi\in\Xi\,:\,x(\xi) = a(\xi)+\epsilon\,\}. \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 769 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_.
|
inlinevirtual |
Set variables to zero if they correspond to the upper \(\epsilon\)-active set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{A}^+_\epsilon(x)\). Here, the upper \(\epsilon\)-active set is defined as
\[ \mathcal{A}^+_\epsilon(x) = \{\,\xi\in\Xi\,:\,x(\xi) = b(\xi)-\epsilon\,\}. \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 782 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set variables to zero if they correspond to the \(\epsilon\)-active set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{A}_\epsilon(x)\). Here, the \(\epsilon\)-active set is defined as
\[ \mathcal{A}_\epsilon(x) = \mathcal{A}^+_\epsilon(x)\cap\mathcal{A}^-_\epsilon(x). \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 795 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set variables to zero if they correspond to the lower \(\epsilon\)-binding set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{B}^-_\epsilon(x)\). Here, the lower \(\epsilon\)-binding set is defined as
\[ \mathcal{B}^-_\epsilon(x) = \{\,\xi\in\Xi\,:\,x(\xi) = a(\xi)+\epsilon,\; g(\xi) > 0 \,\}. \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | g | is the negative search direction. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 809 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_.
|
inlinevirtual |
Set variables to zero if they correspond to the upper \(\epsilon\)-binding set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{B}^+_\epsilon(x)\). Here, the upper \(\epsilon\)-binding set is defined as
\[ \mathcal{B}^+_\epsilon(x) = \{\,\xi\in\Xi\,:\,x(\xi) = b(\xi)-\epsilon,\; g(\xi) < 0 \,\}. \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | g | is the negative search direction. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 824 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set variables to zero if they correspond to the \(\epsilon\)-binding set.
This function sets \(v(\xi)=0\) if \(\xi\in\mathcal{B}_\epsilon(x)\). Here, the \(\epsilon\)-binding set is defined as
\[ \mathcal{B}^+_\epsilon(x) = \mathcal{B}^+_\epsilon(x)\cap\mathcal{B}^-_\epsilon(x). \]
[out] | v | is the variable to be pruned. |
[in] | x | is the current optimization variable. |
[in] | g | is the negative search direction. |
[in] | eps | is the active-set tolerance \(\epsilon\). |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 839 of file ROL_DiodeCircuit.hpp.
References ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::min_diff_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::scale_, ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_, and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set the input vector to the upper bound.
This function sets the input vector \(u\) to the upper bound \(b\).
[out] | u | is the vector to be set to the upper bound. |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 856 of file ROL_DiodeCircuit.hpp.
References ROL::Vector< Real >::set(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_up_.
|
inlinevirtual |
Set the input vector to the lower bound.
This function sets the input vector \(l\) to the lower bound \(a\).
[out] | l | is the vector to be set to the lower bound. |
Reimplemented from ROL::BoundConstraint< Real >.
Definition at line 863 of file ROL_DiodeCircuit.hpp.
References ROL::Vector< Real >::set(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::x_lo_.
|
private |
Vector of lower bounds.
Definition at line 739 of file ROL_DiodeCircuit.hpp.
Referenced by ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::BoundConstraint_DiodeCircuit(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::isFeasible(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::project(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneActive(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneLowerActive(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::setVectorToLowerBound().
|
private |
Vector of upper bounds.
Definition at line 741 of file ROL_DiodeCircuit.hpp.
Referenced by ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::BoundConstraint_DiodeCircuit(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::isFeasible(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::project(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneActive(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneUpperActive(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::setVectorToUpperBound().
|
private |
Half of the minimum distance between upper and lower bounds.
Definition at line 743 of file ROL_DiodeCircuit.hpp.
Referenced by ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::BoundConstraint_DiodeCircuit(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneActive(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneLowerActive(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneUpperActive().
|
private |
Scaling for the epsilon margin.
Definition at line 745 of file ROL_DiodeCircuit.hpp.
Referenced by ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::BoundConstraint_DiodeCircuit(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneActive(), ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneLowerActive(), and ROL::ZOO::BoundConstraint_DiodeCircuit< Real >::pruneUpperActive().