ROL
|
Provides the interface to implement any functional that maps a random variable to a (extended) real number. More...
#include <ROL_RandVarFunctional.hpp>
Public Member Functions | |
virtual | ~RandVarFunctional () |
RandVarFunctional (void) | |
weight_ (0) | |
void | useStorage (bool storage) |
void | useHessVecStorage (bool storage) |
virtual void | setStorage (const Ptr< ScalarController< Real >> &value_storage, const Ptr< VectorController< Real >> &gradient_storage) |
virtual void | setHessVecStorage (const Ptr< ScalarController< Real >> &gradvec_storage, const Ptr< VectorController< Real >> &hessvec_storage) |
virtual void | resetStorage (bool flag=true) |
Reset internal storage. More... | |
virtual void | resetStorage (UpdateType type) |
virtual void | initialize (const Vector< Real > &x) |
Initialize temporary variables. More... | |
virtual void | setSample (const std::vector< Real > &point, const Real weight) |
virtual Real | computeStatistic (const Ptr< const std::vector< Real >> &xstat) const |
Compute statistic. More... | |
virtual void | updateValue (Objective< Real > &obj, const Vector< Real > &x, const std::vector< Real > &xstat, Real &tol) |
Update internal storage for value computation. More... | |
virtual void | updateGradient (Objective< Real > &obj, const Vector< Real > &x, const std::vector< Real > &xstat, Real &tol) |
Update internal risk measure storage for gradient computation. More... | |
virtual void | updateHessVec (Objective< Real > &obj, const Vector< Real > &v, const std::vector< Real > &vstat, const Vector< Real > &x, const std::vector< Real > &xstat, Real &tol) |
Update internal risk measure storage for Hessian-time-a-vector computation. More... | |
virtual Real | getValue (const Vector< Real > &x, const std::vector< Real > &xstat, SampleGenerator< Real > &sampler) |
Return risk measure value. More... | |
virtual void | getGradient (Vector< Real > &g, std::vector< Real > &gstat, const Vector< Real > &x, const std::vector< Real > &xstat, SampleGenerator< Real > &sampler) |
Return risk measure (sub)gradient. More... | |
virtual void | getHessVec (Vector< Real > &hv, std::vector< Real > &hvstat, const Vector< Real > &v, const std::vector< Real > &vstat, const Vector< Real > &x, const std::vector< Real > &xstat, SampleGenerator< Real > &sampler) |
Return risk measure Hessian-times-a-vector. More... | |
Protected Member Functions | |
Real | computeValue (Objective< Real > &obj, const Vector< Real > &x, Real &tol) |
void | computeGradient (Vector< Real > &g, Objective< Real > &obj, const Vector< Real > &x, Real &tol) |
Real | computeGradVec (Vector< Real > &g, Objective< Real > &obj, const Vector< Real > &v, const Vector< Real > &x, Real &tol) |
void | computeHessVec (Vector< Real > &hv, Objective< Real > &obj, const Vector< Real > &v, const Vector< Real > &x, Real &tol) |
Protected Attributes | |
Real | val_ |
Real | gv_ |
Ptr< Vector< Real > > | g_ |
Ptr< Vector< Real > > | hv_ |
Ptr< Vector< Real > > | dualVector_ |
bool | firstReset_ |
std::vector< Real > | point_ |
Real | weight_ |
Private Attributes | |
bool | storage_ |
bool | storage_hessvec_ |
Ptr< ScalarController< Real > > | value_storage_ |
Ptr< VectorController< Real > > | gradient_storage_ |
Ptr< ScalarController< Real > > | gradvec_storage_ |
Ptr< VectorController< Real > > | hessvec_storage_ |
Provides the interface to implement any functional that maps a random variable to a (extended) real number.
Let \((\Omega,\mathcal{F},\mathbb{P})\) be a probability space. Here, \(\Omega\) is the set of outcomes, \(\mathcal{F}\subseteq 2^\Omega\) is a \(\sigma\)-algebra of events and \(\mathbb{P}:\mathcal{F}\to[0,1]\) is a probability measure. Moreover, let \(\mathcal{X}\) be a class of random variables. A ``random variable functional'' is an extended real-valued functional that associates numerical values to random variables, i.e., \(\mathcal{R}:\mathcal{X}\to\mathbb{R}\cup\{+\infty\}\). In most cases, \(\mathcal{X} = L^p(\Omega,\mathcal{F},\mathbb{P})\) for some \(1\le p\le \infty\).
ROL's random variable functional base class is written in a way to exploit parallel sampling. General risk measures may depend on global information such as the expected value of a random variable, \(\mathbb{E}[X]\). Thus, ROL::RandVarFunctional contains functions to update intermediate information and to compute desired quantities such as values, gradients and Hessians applied to vectors.
Definition at line 47 of file ROL_RandVarFunctional.hpp.
|
inlinevirtual |
Definition at line 139 of file ROL_RandVarFunctional.hpp.
|
inline |
Definition at line 141 of file ROL_RandVarFunctional.hpp.
|
inlineprotected |
Definition at line 68 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::point_, ROL::Objective< Real >::setParameter(), ROL::RandVarFunctional< Real >::storage_, ROL::Objective< Real >::value(), and ROL::RandVarFunctional< Real >::value_storage_.
Referenced by ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::SmoothedPOE< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::QuantileRadius< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MixedCVaR< Real >::updateGradient(), ROL::MeanSemiDeviation< Real >::updateGradient(), ROL::HMCR< Real >::updateGradient(), ROL::MeanVarianceFromTarget< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviationFromTarget< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), ROL::MeanDeviationFromTarget< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateValue(), ROL::SmoothedPOE< Real >::updateValue(), ROL::BPOE< Real >::updateValue(), ROL::EntropicRisk< Real >::updateValue(), ROL::ExpectationQuadError< Real >::updateValue(), ROL::ExpectationQuadRegret< Real >::updateValue(), ROL::ExpectationQuadRisk< Real >::updateValue(), ROL::ExpectationQuadDeviation< Real >::updateValue(), ROL::PD_BPOE< Real >::updateValue(), ROL::QuantileRadius< Real >::updateValue(), ROL::PD_MeanSemiDeviation< Real >::updateValue(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::PD_CVaR< Real >::updateValue(), ROL::MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::CVaR< Real >::updateValue(), ROL::KLDivergence< Real >::updateValue(), ROL::PD_HMCR2< Real >::updateValue(), ROL::MixedCVaR< Real >::updateValue(), ROL::MeanSemiDeviation< Real >::updateValue(), ROL::HMCR< Real >::updateValue(), ROL::MeanVarianceFromTarget< Real >::updateValue(), ROL::FDivergence< Real >::updateValue(), ROL::MeanVariance< Real >::updateValue(), ROL::MeanDeviationFromTarget< Real >::updateValue(), ROL::MeanDeviation< Real >::updateValue(), and ROL::RandVarFunctional< Real >::updateValue().
|
inlineprotected |
Definition at line 86 of file ROL_RandVarFunctional.hpp.
References ROL::Objective< Real >::gradient(), ROL::RandVarFunctional< Real >::gradient_storage_, ROL::RandVarFunctional< Real >::point_, ROL::Objective< Real >::setParameter(), and ROL::RandVarFunctional< Real >::storage_.
Referenced by ROL::RandVarFunctional< Real >::computeGradVec(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::SmoothedPOE< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::QuantileRadius< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MixedCVaR< Real >::updateGradient(), ROL::MeanSemiDeviation< Real >::updateGradient(), ROL::HMCR< Real >::updateGradient(), ROL::MeanVarianceFromTarget< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviationFromTarget< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), and ROL::RandVarFunctional< Real >::updateGradient().
|
inlineprotected |
Definition at line 102 of file ROL_RandVarFunctional.hpp.
References ROL::Vector< Real >::apply(), ROL::RandVarFunctional< Real >::computeGradient(), ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::point_, and ROL::RandVarFunctional< Real >::storage_hessvec_.
Referenced by ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), and ROL::MeanDeviationFromTarget< Real >::updateHessVec().
|
inlineprotected |
Definition at line 122 of file ROL_RandVarFunctional.hpp.
References ROL::Objective< Real >::hessVec(), ROL::RandVarFunctional< Real >::hessvec_storage_, ROL::RandVarFunctional< Real >::point_, ROL::Objective< Real >::setParameter(), and ROL::RandVarFunctional< Real >::storage_hessvec_.
Referenced by ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), ROL::MeanDeviationFromTarget< Real >::updateHessVec(), and ROL::RandVarFunctional< Real >::updateHessVec().
|
inline |
Definition at line 147 of file ROL_RandVarFunctional.hpp.
|
inline |
Definition at line 149 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradient_storage_, ROL::RandVarFunctional< Real >::storage_, and ROL::RandVarFunctional< Real >::value_storage_.
Referenced by ROL::RandVarFunctional< Real >::setStorage(), and ROL::RandVarFunctional< Real >::useHessVecStorage().
|
inline |
Definition at line 161 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::hessvec_storage_, ROL::RandVarFunctional< Real >::storage_hessvec_, and ROL::RandVarFunctional< Real >::useStorage().
Referenced by ROL::RandVarFunctional< Real >::setHessVecStorage().
|
inlinevirtual |
Reimplemented in ROL::MeanDeviation< Real >, ROL::SpectralRisk< Real >, ROL::MeanVariance< Real >, ROL::MeanSemiDeviation< Real >, ROL::PD_RandVarFunctional< Real >, ROL::PD_CVaR< Real >, ROL::PD_HMCR2< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviation< Real >, and ROL::PD_BPOE< Real >.
Definition at line 174 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradient_storage_, ROL::RandVarFunctional< Real >::useStorage(), and ROL::RandVarFunctional< Real >::value_storage_.
Referenced by ROL::ConvexCombinationRiskMeasure< Real >::initializeCCRM(), ROL::MeanVariance< Real >::initializeMV(), ROL::PD_MeanSemiDeviation< Real >::initializeStorage(), ROL::PD_BPOE< Real >::initializeStorage(), ROL::PD_MeanSemiDeviationFromTarget< Real >::initializeStorage(), ROL::PD_CVaR< Real >::initializeStorage(), ROL::PD_HMCR2< Real >::initializeStorage(), ROL::MeanSemiDeviation< Real >::initializeStorage(), ROL::MeanDeviation< Real >::initializeStorage(), ROL::PD_RandVarFunctional< Real >::setStorage(), ROL::MeanSemiDeviation< Real >::setStorage(), ROL::MeanVariance< Real >::setStorage(), ROL::SpectralRisk< Real >::setStorage(), and ROL::MeanDeviation< Real >::setStorage().
|
inlinevirtual |
Reimplemented in ROL::MeanDeviation< Real >, ROL::MeanVariance< Real >, ROL::SpectralRisk< Real >, ROL::MeanSemiDeviation< Real >, ROL::PD_RandVarFunctional< Real >, ROL::PD_CVaR< Real >, ROL::PD_HMCR2< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviation< Real >, and ROL::PD_BPOE< Real >.
Definition at line 181 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::hessvec_storage_, and ROL::RandVarFunctional< Real >::useHessVecStorage().
Referenced by ROL::ConvexCombinationRiskMeasure< Real >::initializeCCRM(), ROL::MeanVariance< Real >::initializeMV(), ROL::PD_MeanSemiDeviation< Real >::initializeStorage(), ROL::PD_BPOE< Real >::initializeStorage(), ROL::PD_MeanSemiDeviationFromTarget< Real >::initializeStorage(), ROL::PD_CVaR< Real >::initializeStorage(), ROL::PD_HMCR2< Real >::initializeStorage(), ROL::MeanSemiDeviation< Real >::initializeStorage(), ROL::MeanDeviation< Real >::initializeStorage(), ROL::PD_RandVarFunctional< Real >::setHessVecStorage(), ROL::MeanSemiDeviation< Real >::setHessVecStorage(), ROL::MeanVariance< Real >::setHessVecStorage(), ROL::SpectralRisk< Real >::setHessVecStorage(), and ROL::MeanDeviation< Real >::setHessVecStorage().
|
inlinevirtual |
Reset internal storage.
[in] | x | is a vector used for initializing storage |
Reimplemented in ROL::SpectralRisk< Real >, and ROL::ConvexCombinationRiskMeasure< Real >.
Definition at line 192 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradient_storage_, ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::hessvec_storage_, ROL::RandVarFunctional< Real >::storage_, ROL::RandVarFunctional< Real >::storage_hessvec_, and ROL::RandVarFunctional< Real >::value_storage_.
Referenced by ROL::ConvexCombinationRiskMeasure< Real >::resetStorage(), and ROL::SpectralRisk< Real >::resetStorage().
|
inlinevirtual |
Reimplemented in ROL::SpectralRisk< Real >, and ROL::ConvexCombinationRiskMeasure< Real >.
Definition at line 204 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::gradient_storage_, ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::hessvec_storage_, ROL::RandVarFunctional< Real >::storage_, ROL::RandVarFunctional< Real >::storage_hessvec_, and ROL::RandVarFunctional< Real >::value_storage_.
|
inlinevirtual |
Initialize temporary variables.
[in] | x | is a vector used for initializing storage |
Reimplemented in ROL::MeanDeviation< Real >, ROL::SpectralRisk< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::FDivergence< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::HMCR< Real >, ROL::MeanSemiDeviation< Real >, ROL::PD_RandVarFunctional< Real >, ROL::MixedCVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::PD_CVaR< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::PD_BPOE< Real >, ROL::QuantileRadius< Real >, ROL::BPOE< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 219 of file ROL_RandVarFunctional.hpp.
References ROL::Vector< Real >::dual(), ROL::RandVarFunctional< Real >::dualVector_, ROL::RandVarFunctional< Real >::firstReset_, ROL::RandVarFunctional< Real >::g_, ROL::RandVarFunctional< Real >::gradvec_storage_, ROL::RandVarFunctional< Real >::gv_, ROL::RandVarFunctional< Real >::hessvec_storage_, ROL::RandVarFunctional< Real >::hv_, ROL::RandVarFunctional< Real >::storage_hessvec_, ROL::RandVarFunctional< Real >::val_, and zero.
Referenced by ROL::CoherentEntropicRisk< Real >::initialize(), ROL::BPOE< Real >::initialize(), ROL::QuantileRadius< Real >::initialize(), ROL::KLDivergence< Real >::initialize(), ROL::MixedCVaR< Real >::initialize(), ROL::PD_RandVarFunctional< Real >::initialize(), ROL::MeanSemiDeviation< Real >::initialize(), ROL::HMCR< Real >::initialize(), ROL::ConvexCombinationRiskMeasure< Real >::initialize(), ROL::FDivergence< Real >::initialize(), ROL::MeanDeviationFromTarget< Real >::initialize(), ROL::SpectralRisk< Real >::initialize(), and ROL::MeanDeviation< Real >::initialize().
|
inlinevirtual |
Reimplemented in ROL::SpectralRisk< Real >, and ROL::ConvexCombinationRiskMeasure< Real >.
Definition at line 237 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::point_, and ROL::RandVarFunctional< Real >::weight_.
Referenced by ROL::ConvexCombinationRiskMeasure< Real >::setSample(), and ROL::SpectralRisk< Real >::setSample().
|
inlinevirtual |
Compute statistic.
[in] | xstat | is a ROL::Ptr to a std::vector containing the statistic vector |
Reimplemented in ROL::SpectralRisk< Real >, ROL::MixedCVaR< Real >, and ROL::QuantileRadius< Real >.
Definition at line 247 of file ROL_RandVarFunctional.hpp.
|
inlinevirtual |
Update internal storage for value computation.
[in] | val | is the value of the random variable objective function at the current sample point |
[in] | weight | is the weight associated with the current sample point |
Reimplemented in ROL::MeanDeviation< Real >, ROL::SpectralRisk< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::MeanVariance< Real >, ROL::FDivergence< Real >, ROL::MeanVarianceFromTarget< Real >, ROL::HMCR< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::MeanSemiDeviation< Real >, ROL::MixedCVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::CVaR< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::PD_CVaR< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::PD_BPOE< Real >, ROL::QuantileRadius< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::ExpectationQuadError< Real >, ROL::ExpectationQuadRegret< Real >, ROL::ExpectationQuadRisk< Real >, ROL::EntropicRisk< Real >, ROL::BPOE< Real >, ROL::SmoothedPOE< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 262 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::computeValue(), ROL::RandVarFunctional< Real >::val_, and ROL::RandVarFunctional< Real >::weight_.
|
inlinevirtual |
Update internal risk measure storage for gradient computation.
[in] | val | is the value of the random variable objective function at the current sample point |
[in] | g | is the gradient of the random variable objective function at the current sample point |
[in] | weight | is the weight associated with the current sample point |
Reimplemented in ROL::MeanDeviation< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::MeanVariance< Real >, ROL::SpectralRisk< Real >, ROL::FDivergence< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::MeanVarianceFromTarget< Real >, ROL::HMCR< Real >, ROL::MeanSemiDeviation< Real >, ROL::MixedCVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::CVaR< Real >, ROL::PD_CVaR< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_BPOE< Real >, ROL::QuantileRadius< Real >, ROL::BPOE< Real >, ROL::SmoothedPOE< Real >, ROL::EntropicRisk< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::ExpectationQuadRisk< Real >, ROL::ExpectationQuadError< Real >, ROL::ExpectationQuadRegret< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 279 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::computeGradient(), ROL::RandVarFunctional< Real >::dualVector_, ROL::RandVarFunctional< Real >::g_, and ROL::RandVarFunctional< Real >::weight_.
|
inlinevirtual |
Update internal risk measure storage for Hessian-time-a-vector computation.
[in] | val | is the value of the random variable objective function at the current sample point |
[in] | g | is the gradient of the random variable objective function at the current sample point |
[in] | gv | is the gradient of the random variable objective function at the current sample point applied to the vector v0 |
[in] | hv | is the Hessian of the random variable objective function at the current sample point applied to the vector v0 |
[in] | weight | is the weight associated with the current sample point |
Reimplemented in ROL::MeanDeviationFromTarget< Real >, ROL::MeanDeviation< Real >, ROL::MeanVariance< Real >, ROL::FDivergence< Real >, ROL::HMCR< Real >, ROL::SpectralRisk< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::MeanSemiDeviation< Real >, ROL::MeanVarianceFromTarget< Real >, ROL::MixedCVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::PD_CVaR< Real >, ROL::PD_BPOE< Real >, ROL::BPOE< Real >, ROL::QuantileRadius< Real >, ROL::CVaR< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::SmoothedPOE< Real >, ROL::EntropicRisk< Real >, ROL::CoherentEntropicRisk< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::ExpectationQuadRisk< Real >, ROL::ExpectationQuadError< Real >, and ROL::ExpectationQuadRegret< Real >.
Definition at line 302 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::computeHessVec(), ROL::RandVarFunctional< Real >::dualVector_, ROL::RandVarFunctional< Real >::hv_, and ROL::RandVarFunctional< Real >::weight_.
|
inlinevirtual |
Return risk measure value.
[in] | sampler | is the ROL::SampleGenerator used to sample the objective function |
Upon return, getValue returns \(\mathcal{R}(f(x_0))\) where \(f(x_0)\) denotes the random variable objective function evaluated at \(x_0\).
Reimplemented in ROL::MeanDeviation< Real >, ROL::SpectralRisk< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::MeanVariance< Real >, ROL::FDivergence< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::HMCR< Real >, ROL::CVaR< Real >, ROL::MixedCVaR< Real >, ROL::MeanSemiDeviation< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::ExpectationQuadRisk< Real >, ROL::ExpectationQuadError< Real >, ROL::ExpectationQuadRegret< Real >, ROL::PD_CVaR< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::PD_BPOE< Real >, ROL::QuantileRadius< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::BPOE< Real >, ROL::SmoothedPOE< Real >, ROL::EntropicRisk< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 320 of file ROL_RandVarFunctional.hpp.
References ROL::SampleGenerator< Real >::sumAll(), and ROL::RandVarFunctional< Real >::val_.
|
inlinevirtual |
Return risk measure (sub)gradient.
[out] | g | is the (sub)gradient of the risk measure |
[in] | sampler | is the ROL::SampleGenerator used to sample the objective function |
Upon return, getGradient returns \(\theta\in\partial\mathcal{R}(f(x_0))\) where \(f(x_0)\) denotes the random variable objective function evaluated at \(x_0\) and \(\partial\mathcal{R}(X)\) denotes the subdifferential of \(\mathcal{R}\) at \(X\).
Reimplemented in ROL::MeanDeviation< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::SpectralRisk< Real >, ROL::MeanVariance< Real >, ROL::FDivergence< Real >, ROL::HMCR< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::MixedCVaR< Real >, ROL::MeanSemiDeviation< Real >, ROL::CVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::PD_CVaR< Real >, ROL::ExpectationQuadRisk< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::PD_BPOE< Real >, ROL::ExpectationQuadError< Real >, ROL::ExpectationQuadRegret< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::QuantileRadius< Real >, ROL::BPOE< Real >, ROL::SmoothedPOE< Real >, ROL::EntropicRisk< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 339 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::g_, and ROL::SampleGenerator< Real >::sumAll().
|
inlinevirtual |
Return risk measure Hessian-times-a-vector.
[out] | hv | is the Hessian-times-a-vector of the risk measure |
[in] | sampler | is the ROL::SampleGenerator used to sample the objective function |
Upon return, getHessVec returns \(\nabla^2 \mathcal{R}(f(x_0))v_0\) (if available) where \(f(x_0)\) denotes the random variable objective function evaluated at \(x_0\).
Reimplemented in ROL::MeanDeviation< Real >, ROL::MeanDeviationFromTarget< Real >, ROL::MeanVariance< Real >, ROL::HMCR< Real >, ROL::FDivergence< Real >, ROL::SpectralRisk< Real >, ROL::ConvexCombinationRiskMeasure< Real >, ROL::MeanSemiDeviation< Real >, ROL::MixedCVaR< Real >, ROL::PD_HMCR2< Real >, ROL::KLDivergence< Real >, ROL::CVaR< Real >, ROL::PD_CVaR< Real >, ROL::PD_MeanSemiDeviation< Real >, ROL::BPOE< Real >, ROL::PD_BPOE< Real >, ROL::QuantileRadius< Real >, ROL::PD_MeanSemiDeviationFromTarget< Real >, ROL::MeanSemiDeviationFromTarget< Real >, ROL::ExpectationQuadRisk< Real >, ROL::ExpectationQuadDeviation< Real >, ROL::SmoothedPOE< Real >, ROL::ExpectationQuadError< Real >, ROL::ExpectationQuadRegret< Real >, ROL::EntropicRisk< Real >, and ROL::CoherentEntropicRisk< Real >.
Definition at line 358 of file ROL_RandVarFunctional.hpp.
References ROL::RandVarFunctional< Real >::hv_, and ROL::SampleGenerator< Real >::sumAll().
|
private |
Definition at line 49 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeGradient(), ROL::RandVarFunctional< Real >::computeValue(), ROL::RandVarFunctional< Real >::resetStorage(), and ROL::RandVarFunctional< Real >::useStorage().
|
private |
Definition at line 50 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeGradVec(), ROL::RandVarFunctional< Real >::computeHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::RandVarFunctional< Real >::resetStorage(), and ROL::RandVarFunctional< Real >::useHessVecStorage().
|
private |
Definition at line 51 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeValue(), ROL::RandVarFunctional< Real >::resetStorage(), ROL::RandVarFunctional< Real >::setStorage(), and ROL::RandVarFunctional< Real >::useStorage().
|
private |
Definition at line 52 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeGradient(), ROL::RandVarFunctional< Real >::resetStorage(), ROL::RandVarFunctional< Real >::setStorage(), and ROL::RandVarFunctional< Real >::useStorage().
|
private |
Definition at line 53 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeGradVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::RandVarFunctional< Real >::resetStorage(), ROL::RandVarFunctional< Real >::setHessVecStorage(), and ROL::RandVarFunctional< Real >::useHessVecStorage().
|
private |
Definition at line 54 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::RandVarFunctional< Real >::resetStorage(), ROL::RandVarFunctional< Real >::setHessVecStorage(), and ROL::RandVarFunctional< Real >::useHessVecStorage().
|
protected |
Definition at line 57 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::CoherentEntropicRisk< Real >::getGradient(), ROL::EntropicRisk< Real >::getGradient(), ROL::BPOE< Real >::getGradient(), ROL::PD_BPOE< Real >::getGradient(), ROL::ExpectationQuadDeviation< Real >::getGradient(), ROL::PD_MeanSemiDeviation< Real >::getGradient(), ROL::ExpectationQuadRisk< Real >::getGradient(), ROL::PD_CVaR< Real >::getGradient(), ROL::KLDivergence< Real >::getGradient(), ROL::PD_HMCR2< Real >::getGradient(), ROL::CVaR< Real >::getGradient(), ROL::MeanSemiDeviation< Real >::getGradient(), ROL::FDivergence< Real >::getGradient(), ROL::MeanVariance< Real >::getGradient(), ROL::MeanDeviation< Real >::getGradient(), ROL::CoherentEntropicRisk< Real >::getHessVec(), ROL::EntropicRisk< Real >::getHessVec(), ROL::ExpectationQuadDeviation< Real >::getHessVec(), ROL::ExpectationQuadRisk< Real >::getHessVec(), ROL::PD_BPOE< Real >::getHessVec(), ROL::PD_MeanSemiDeviation< Real >::getHessVec(), ROL::PD_CVaR< Real >::getHessVec(), ROL::CVaR< Real >::getHessVec(), ROL::KLDivergence< Real >::getHessVec(), ROL::PD_HMCR2< Real >::getHessVec(), ROL::MeanSemiDeviation< Real >::getHessVec(), ROL::FDivergence< Real >::getHessVec(), ROL::MeanVariance< Real >::getHessVec(), ROL::MeanDeviation< Real >::getHessVec(), ROL::CoherentEntropicRisk< Real >::getValue(), ROL::EntropicRisk< Real >::getValue(), ROL::SmoothedPOE< Real >::getValue(), ROL::BPOE< Real >::getValue(), ROL::PD_MeanSemiDeviation< Real >::getValue(), ROL::QuantileRadius< Real >::getValue(), ROL::PD_BPOE< Real >::getValue(), ROL::PD_MeanSemiDeviationFromTarget< Real >::getValue(), ROL::MeanSemiDeviationFromTarget< Real >::getValue(), ROL::PD_CVaR< Real >::getValue(), ROL::ExpectationQuadRegret< Real >::getValue(), ROL::ExpectationQuadError< Real >::getValue(), ROL::ExpectationQuadRisk< Real >::getValue(), ROL::ExpectationQuadDeviation< Real >::getValue(), ROL::KLDivergence< Real >::getValue(), ROL::PD_HMCR2< Real >::getValue(), ROL::MeanSemiDeviation< Real >::getValue(), ROL::MixedCVaR< Real >::getValue(), ROL::CVaR< Real >::getValue(), ROL::HMCR< Real >::getValue(), ROL::FDivergence< Real >::getValue(), ROL::MeanVariance< Real >::getValue(), ROL::MeanDeviationFromTarget< Real >::getValue(), ROL::MeanDeviation< Real >::getValue(), ROL::RandVarFunctional< Real >::getValue(), ROL::RandVarFunctional< Real >::initialize(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MeanSemiDeviation< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateValue(), ROL::BPOE< Real >::updateValue(), ROL::SmoothedPOE< Real >::updateValue(), ROL::EntropicRisk< Real >::updateValue(), ROL::ExpectationQuadRisk< Real >::updateValue(), ROL::ExpectationQuadRegret< Real >::updateValue(), ROL::ExpectationQuadDeviation< Real >::updateValue(), ROL::ExpectationQuadError< Real >::updateValue(), ROL::PD_BPOE< Real >::updateValue(), ROL::PD_MeanSemiDeviation< Real >::updateValue(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::PD_CVaR< Real >::updateValue(), ROL::MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::CVaR< Real >::updateValue(), ROL::KLDivergence< Real >::updateValue(), ROL::PD_HMCR2< Real >::updateValue(), ROL::MixedCVaR< Real >::updateValue(), ROL::MeanSemiDeviation< Real >::updateValue(), ROL::HMCR< Real >::updateValue(), ROL::MeanVarianceFromTarget< Real >::updateValue(), ROL::FDivergence< Real >::updateValue(), ROL::MeanVariance< Real >::updateValue(), ROL::MeanDeviationFromTarget< Real >::updateValue(), ROL::MeanDeviation< Real >::updateValue(), and ROL::RandVarFunctional< Real >::updateValue().
|
protected |
Definition at line 58 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::CoherentEntropicRisk< Real >::getGradient(), ROL::BPOE< Real >::getGradient(), ROL::PD_HMCR2< Real >::getGradient(), ROL::CoherentEntropicRisk< Real >::getHessVec(), ROL::EntropicRisk< Real >::getHessVec(), ROL::PD_MeanSemiDeviation< Real >::getHessVec(), ROL::KLDivergence< Real >::getHessVec(), ROL::PD_HMCR2< Real >::getHessVec(), ROL::MeanSemiDeviation< Real >::getHessVec(), ROL::MeanVariance< Real >::getHessVec(), ROL::MeanDeviation< Real >::getHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), and ROL::MeanDeviation< Real >::updateHessVec().
|
protected |
Definition at line 59 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::CoherentEntropicRisk< Real >::getGradient(), ROL::EntropicRisk< Real >::getGradient(), ROL::SmoothedPOE< Real >::getGradient(), ROL::BPOE< Real >::getGradient(), ROL::QuantileRadius< Real >::getGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::getGradient(), ROL::ExpectationQuadError< Real >::getGradient(), ROL::ExpectationQuadRegret< Real >::getGradient(), ROL::MeanSemiDeviationFromTarget< Real >::getGradient(), ROL::PD_BPOE< Real >::getGradient(), ROL::ExpectationQuadDeviation< Real >::getGradient(), ROL::PD_MeanSemiDeviation< Real >::getGradient(), ROL::ExpectationQuadRisk< Real >::getGradient(), ROL::PD_CVaR< Real >::getGradient(), ROL::KLDivergence< Real >::getGradient(), ROL::PD_HMCR2< Real >::getGradient(), ROL::CVaR< Real >::getGradient(), ROL::MeanSemiDeviation< Real >::getGradient(), ROL::MixedCVaR< Real >::getGradient(), ROL::ConvexCombinationRiskMeasure< Real >::getGradient(), ROL::HMCR< Real >::getGradient(), ROL::FDivergence< Real >::getGradient(), ROL::MeanVariance< Real >::getGradient(), ROL::MeanDeviationFromTarget< Real >::getGradient(), ROL::MeanDeviation< Real >::getGradient(), ROL::RandVarFunctional< Real >::getGradient(), ROL::CoherentEntropicRisk< Real >::getHessVec(), ROL::EntropicRisk< Real >::getHessVec(), ROL::BPOE< Real >::getHessVec(), ROL::PD_MeanSemiDeviation< Real >::getHessVec(), ROL::KLDivergence< Real >::getHessVec(), ROL::PD_HMCR2< Real >::getHessVec(), ROL::HMCR< Real >::getHessVec(), ROL::MeanVariance< Real >::getHessVec(), ROL::MeanDeviation< Real >::getHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::SmoothedPOE< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::QuantileRadius< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MixedCVaR< Real >::updateGradient(), ROL::HMCR< Real >::updateGradient(), ROL::MeanVarianceFromTarget< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviationFromTarget< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), ROL::RandVarFunctional< Real >::updateGradient(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), and ROL::MeanDeviationFromTarget< Real >::updateHessVec().
|
protected |
Definition at line 60 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::PD_MeanSemiDeviation< Real >::getGradient(), ROL::HMCR< Real >::getGradient(), ROL::CoherentEntropicRisk< Real >::getHessVec(), ROL::EntropicRisk< Real >::getHessVec(), ROL::ExpectationQuadError< Real >::getHessVec(), ROL::ExpectationQuadRegret< Real >::getHessVec(), ROL::SmoothedPOE< Real >::getHessVec(), ROL::ExpectationQuadDeviation< Real >::getHessVec(), ROL::ExpectationQuadRisk< Real >::getHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::getHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::getHessVec(), ROL::QuantileRadius< Real >::getHessVec(), ROL::PD_BPOE< Real >::getHessVec(), ROL::BPOE< Real >::getHessVec(), ROL::PD_MeanSemiDeviation< Real >::getHessVec(), ROL::PD_CVaR< Real >::getHessVec(), ROL::CVaR< Real >::getHessVec(), ROL::KLDivergence< Real >::getHessVec(), ROL::PD_HMCR2< Real >::getHessVec(), ROL::MixedCVaR< Real >::getHessVec(), ROL::MeanSemiDeviation< Real >::getHessVec(), ROL::ConvexCombinationRiskMeasure< Real >::getHessVec(), ROL::FDivergence< Real >::getHessVec(), ROL::HMCR< Real >::getHessVec(), ROL::MeanVariance< Real >::getHessVec(), ROL::MeanDeviationFromTarget< Real >::getHessVec(), ROL::MeanDeviation< Real >::getHessVec(), ROL::RandVarFunctional< Real >::getHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::HMCR< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviationFromTarget< Real >::updateHessVec(), and ROL::RandVarFunctional< Real >::updateHessVec().
|
protected |
Definition at line 61 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::PD_MeanSemiDeviation< Real >::getGradient(), ROL::MeanSemiDeviation< Real >::getGradient(), ROL::HMCR< Real >::getGradient(), ROL::MeanVariance< Real >::getGradient(), ROL::MeanDeviationFromTarget< Real >::getGradient(), ROL::MeanDeviation< Real >::getGradient(), ROL::CoherentEntropicRisk< Real >::getHessVec(), ROL::EntropicRisk< Real >::getHessVec(), ROL::PD_MeanSemiDeviation< Real >::getHessVec(), ROL::KLDivergence< Real >::getHessVec(), ROL::PD_HMCR2< Real >::getHessVec(), ROL::MeanSemiDeviation< Real >::getHessVec(), ROL::HMCR< Real >::getHessVec(), ROL::MeanVariance< Real >::getHessVec(), ROL::MeanDeviationFromTarget< Real >::getHessVec(), ROL::MeanDeviation< Real >::getHessVec(), ROL::RandVarFunctional< Real >::initialize(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::SmoothedPOE< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::QuantileRadius< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MixedCVaR< Real >::updateGradient(), ROL::MeanSemiDeviation< Real >::updateGradient(), ROL::HMCR< Real >::updateGradient(), ROL::MeanVarianceFromTarget< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviationFromTarget< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), ROL::RandVarFunctional< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), ROL::MeanDeviationFromTarget< Real >::updateHessVec(), and ROL::RandVarFunctional< Real >::updateHessVec().
|
protected |
Definition at line 62 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::initialize().
|
protected |
Definition at line 64 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::computeGradient(), ROL::RandVarFunctional< Real >::computeGradVec(), ROL::RandVarFunctional< Real >::computeHessVec(), ROL::RandVarFunctional< Real >::computeValue(), ROL::RandVarFunctional< Real >::setSample(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateValue(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::PD_CVaR< Real >::updateValue(), and ROL::PD_HMCR2< Real >::updateValue().
|
protected |
Definition at line 65 of file ROL_RandVarFunctional.hpp.
Referenced by ROL::RandVarFunctional< Real >::setSample(), ROL::CoherentEntropicRisk< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateGradient(), ROL::ExpectationQuadRegret< Real >::updateGradient(), ROL::ExpectationQuadRisk< Real >::updateGradient(), ROL::ExpectationQuadDeviation< Real >::updateGradient(), ROL::EntropicRisk< Real >::updateGradient(), ROL::SmoothedPOE< Real >::updateGradient(), ROL::BPOE< Real >::updateGradient(), ROL::QuantileRadius< Real >::updateGradient(), ROL::PD_BPOE< Real >::updateGradient(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::MeanSemiDeviationFromTarget< Real >::updateGradient(), ROL::PD_CVaR< Real >::updateGradient(), ROL::PD_MeanSemiDeviation< Real >::updateGradient(), ROL::CVaR< Real >::updateGradient(), ROL::KLDivergence< Real >::updateGradient(), ROL::PD_HMCR2< Real >::updateGradient(), ROL::MixedCVaR< Real >::updateGradient(), ROL::MeanSemiDeviation< Real >::updateGradient(), ROL::HMCR< Real >::updateGradient(), ROL::MeanVarianceFromTarget< Real >::updateGradient(), ROL::FDivergence< Real >::updateGradient(), ROL::MeanVariance< Real >::updateGradient(), ROL::MeanDeviationFromTarget< Real >::updateGradient(), ROL::MeanDeviation< Real >::updateGradient(), ROL::RandVarFunctional< Real >::updateGradient(), ROL::ExpectationQuadError< Real >::updateHessVec(), ROL::ExpectationQuadRegret< Real >::updateHessVec(), ROL::ExpectationQuadRisk< Real >::updateHessVec(), ROL::ExpectationQuadDeviation< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateHessVec(), ROL::SmoothedPOE< Real >::updateHessVec(), ROL::EntropicRisk< Real >::updateHessVec(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::CVaR< Real >::updateHessVec(), ROL::MeanSemiDeviationFromTarget< Real >::updateHessVec(), ROL::QuantileRadius< Real >::updateHessVec(), ROL::BPOE< Real >::updateHessVec(), ROL::PD_BPOE< Real >::updateHessVec(), ROL::PD_CVaR< Real >::updateHessVec(), ROL::PD_MeanSemiDeviation< Real >::updateHessVec(), ROL::KLDivergence< Real >::updateHessVec(), ROL::PD_HMCR2< Real >::updateHessVec(), ROL::MixedCVaR< Real >::updateHessVec(), ROL::MeanVarianceFromTarget< Real >::updateHessVec(), ROL::MeanSemiDeviation< Real >::updateHessVec(), ROL::HMCR< Real >::updateHessVec(), ROL::FDivergence< Real >::updateHessVec(), ROL::MeanVariance< Real >::updateHessVec(), ROL::MeanDeviation< Real >::updateHessVec(), ROL::MeanDeviationFromTarget< Real >::updateHessVec(), ROL::RandVarFunctional< Real >::updateHessVec(), ROL::CoherentEntropicRisk< Real >::updateValue(), ROL::BPOE< Real >::updateValue(), ROL::SmoothedPOE< Real >::updateValue(), ROL::EntropicRisk< Real >::updateValue(), ROL::ExpectationQuadError< Real >::updateValue(), ROL::ExpectationQuadRisk< Real >::updateValue(), ROL::ExpectationQuadRegret< Real >::updateValue(), ROL::ExpectationQuadDeviation< Real >::updateValue(), ROL::PD_BPOE< Real >::updateValue(), ROL::QuantileRadius< Real >::updateValue(), ROL::PD_MeanSemiDeviation< Real >::updateValue(), ROL::PD_MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::PD_CVaR< Real >::updateValue(), ROL::MeanSemiDeviationFromTarget< Real >::updateValue(), ROL::CVaR< Real >::updateValue(), ROL::KLDivergence< Real >::updateValue(), ROL::PD_HMCR2< Real >::updateValue(), ROL::MixedCVaR< Real >::updateValue(), ROL::MeanSemiDeviation< Real >::updateValue(), ROL::HMCR< Real >::updateValue(), ROL::MeanVarianceFromTarget< Real >::updateValue(), ROL::FDivergence< Real >::updateValue(), ROL::MeanVariance< Real >::updateValue(), ROL::MeanDeviationFromTarget< Real >::updateValue(), ROL::MeanDeviation< Real >::updateValue(), and ROL::RandVarFunctional< Real >::updateValue().