|
| | SoedingFunc () |
| |
| FuncOP | clone () const override |
| | returns a clone of this SoedingFunc More...
|
| |
| bool | operator== (Func const &other) const override |
| | Equality operator. Looks for strict equality. Floating-point comparison is the rule rather than the exception. More...
|
| |
| bool | same_type_as_me (Func const &other) const override |
| | Does the input Func, "other", have the same type as me? Necessary for the equality operator to function correctly. All derived Func classes must implement this function. More...
|
| |
| Real | compute_func (Real const x) const |
| |
| Real | func (Real const x) const override |
| | Returns the value of this SoedingFunc evaluated at distance x. More...
|
| |
| Real | dfunc (Real const x) const override |
| | Returns the value of the first derivative of this SoedingFunc at distance x. More...
|
| |
| void | show_definition (std::ostream &out) const override |
| | show the definition of this SoedingFunc to the specified output stream. More...
|
| |
| void | read_data (std::istream &in) override |
| | Initializes this SoedingFunc from the given istream. More...
|
| |
| | ~Func () override |
| | Automatically generated virtual destructor for class deriving directly from VirtualBase. More...
|
| |
| bool | operator!= (Func const &other) const |
| | inequality operator – simply the negation of the (virtual) equality operator More...
|
| |
| virtual Real | estimate_dfunc (Real const r) const |
| | Estimates the derivative of this function at a given radius by calculating the slope of the secant line from func(r) and func(r+1e-05). More...
|
| |
| virtual Real | estimate_dfunc (Real const r, Real const h) const |
| | Estimates the derivative of this function at a given radius by calculating the slope of the secant line from func(r) and func(r+h). More...
|
| |
| virtual void | show (std::ostream &out) const |
| | Prints out space-delimited columns for r, func, dfunc and dfunc_est. The values for func, dfunc and dfunc_est are plotted as a function of r, which is varied from 2-20 in steps of 0.5. The value for dfunc_est is the estimated by the method estimate_dfunc( r ). More...
|
| |
| virtual Size | show_violations (std::ostream &out, Real r, Size verbose_level, Real threshold=1) const |
| | show some sort of stringified representation of the violations for this constraint. More...
|
| |
Derived class of class Func representing a Soeding distribution with a user-specified mean and standard deviation.