Exception thrown when a gradient check fail. More...
#include <roboptim/core/finite-difference-gradient.hh>
Public Member Functions | |
ROBOPTIM_DIFFERENTIABLE_FUNCTION_FWD_TYPEDEFS_ (GenericDifferentiableFunction< T >) | |
BadGradient (const vector_t &x, const gradient_t &analyticalGradient, const gradient_t &finiteDifferenceGradient, const value_type &threshold) | |
Default constructor. | |
virtual | ~BadGradient () throw () |
virtual std::ostream & | print (std::ostream &o) const throw () |
Display the exception on the specified output stream. | |
Public Attributes | |
vector_t | x_ |
Gradient has been computed for this point. | |
gradient_t | analyticalGradient_ |
Analytical gradient. | |
gradient_t | finiteDifferenceGradient_ |
Gradient computed through finite differences. | |
value_type | maxDelta_ |
Maximum error. | |
size_type | maxDeltaComponent_ |
Component containing the maximum error. | |
value_type | threshold_ |
Allowed threshold. |
Exception thrown when a gradient check fail.
roboptim::BadGradient< T >::BadGradient | ( | const vector_t & | x, |
const gradient_t & | analyticalGradient, | ||
const gradient_t & | finiteDifferenceGradient, | ||
const value_type & | threshold | ||
) |
Default constructor.
References roboptim::BadGradient< T >::maxDelta_, and roboptim::BadGradient< T >::maxDeltaComponent_.
roboptim::BadGradient< T >::~BadGradient | ( | ) | throw () [virtual] |
std::ostream & roboptim::BadGradient< T >::print | ( | std::ostream & | o | ) | const throw () [virtual] |
Display the exception on the specified output stream.
o | output stream used for display |
References roboptim::decindent(), roboptim::iendl(), and roboptim::incindent().
roboptim::BadGradient< T >::ROBOPTIM_DIFFERENTIABLE_FUNCTION_FWD_TYPEDEFS_ | ( | GenericDifferentiableFunction< T > | ) |
gradient_t roboptim::BadGradient< T >::analyticalGradient_ |
Analytical gradient.
gradient_t roboptim::BadGradient< T >::finiteDifferenceGradient_ |
Gradient computed through finite differences.
value_type roboptim::BadGradient< T >::maxDelta_ |
Maximum error.
Referenced by roboptim::BadGradient< T >::BadGradient().
size_type roboptim::BadGradient< T >::maxDeltaComponent_ |
Component containing the maximum error.
Referenced by roboptim::BadGradient< T >::BadGradient().
value_type roboptim::BadGradient< T >::threshold_ |
Allowed threshold.
vector_t roboptim::BadGradient< T >::x_ |
Gradient has been computed for this point.