|
std::ostream & | operator<< (std::ostream &out_, const best_value &bv_) |
|
compare_score_type | compare_relative (double x_, double y_, double epsilon_) |
|
compare_score_type | compare_absolute (double x_, double y_, double epsilon_) |
|
bool | approximately_equal (double x_, double y_, double epsilon_) |
|
bool | essentially_equal (double x_, double b, double epsilon_) |
|
bool | definitely_greater_than (double x_, double y_, double epsilon_) |
|
bool | definitely_less_than (double x_, double b, double epsilon_) |
|
bool | nearly_equal (double x_, double y_, double epsilon_) |
|
std::ostream & | ostream_odouble (std::ostream &os_, const double &x_) |
|
OstreamManipulator< double > | odouble (const double &x_) |
|
std::istream & | istream_idouble (std::istream &is_, double &x_) |
|
IstreamManipulatorRef< double > | idouble (double &x_) |
|
bool | linear_system_2x2_solve (double a1_, double b1_, double c1_, double a2_, double b2_, double c2_, double &x_, double &y_) |
|
void | basic_plain_function_registration (plain_function_dict_type &dict_) |
|
void | register_plain_function_simple (plain_function_dict_type &dict_, const std::string &name_, const plain_function_type &func_) |
|
void | register_plain_function_with_params (plain_function_dict_type &dict_, const std::string &name_, const plain_function_with_parameters_type &func_with_params_) |
|
void | tree_dump (const plain_function_dict_type &dict_, std::ostream &out_=std::clog, const std::string &title_="", const std::string &indent_="") |
|
plain_function_dict_type & | grab_plain_function_dict () |
|
const plain_function_dict_type & | get_plain_function_dict () |
|
bool | plain_function_is_known (const std::string &name_) |
|
bool | is_plain_function_simple (const std::string &name_) |
|
bool | is_plain_function_with_params (const std::string &name_) |
|
plain_function_type | get_simple_function (const std::string &name_) |
|
double | derivative_central (const i_unary_function &eval_, double x_, double h_, double &abserr_) |
|
double | derivative_central (const i_unary_function &eval_, double x_, double h_) |
|
double | derivative_forward (const i_unary_function &eval_, double x_, double h_, double &abserr_) |
|
double | derivative_forward (const i_unary_function &eval_, double x_, double h_) |
|
double | derivative_backward (const i_unary_function &eval_, double x_, double h_, double &abserr_) |
|
double | derivative_backward (const i_unary_function &eval_, double x_, double h_) |
|
double | derivative (const i_unary_function &eval_, double x_, const interval &domain_, double &abserr_) |
|
double | derivative (const i_unary_function &eval_, double x_, const interval &domain_) |
|
double | derivative_central_regular_sampled_2 (double f_1_, double f1_, double h_) |
|
double | derivative_central_regular_sampled_4 (double f_2_, double f_1_, double f1_, double f2_, double h_) |
|
double | second_derivative_central_regular_sampled_2 (double f_1_, double f0_, double f1_, double h_) |
|
double | second_derivative_central_regular_sampled_4 (double f_2_, double f_1_, double f0_, double f1_, double f2_, double h_) |
|
double | derivative_forward_regular_sampled_1 (double f0_, double f1_, double h_) |
|
double | derivative_forward_regular_sampled_2 (double f0_, double f1_, double f2_, double h_) |
|
double | derivative_forward_regular_sampled_3 (double f0_, double f1_, double f2_, double f3_, double h_) |
|
double | derivative_forward_regular_sampled_4 (double f0_, double f1_, double f2_, double f3_, double f4_, double h_) |
|
double | second_derivative_forward_regular_sampled_1 (double f0_, double f1_, double f2_, double h_) |
|
double | second_derivative_forward_regular_sampled_2 (double f0_, double f1_, double f2_, double f3_, double h_) |
|
double | derivative_backward_regular_sampled_1 (double f_1_, double f0_, double h_) |
|
double | derivative_backward_regular_sampled_2 (double f_2_, double f_1_, double f0_, double h_) |
|
double | derivative_backward_regular_sampled_3 (double f_3_, double f_2_, double f_1_, double f0_, double h_) |
|
double | derivative_backward_regular_sampled_4 (double f_4_, double f_3_, double f_2_, double f_1_, double f0_, double h_) |
|
double | second_derivative_backward_regular_sampled_1 (double f_2_, double f_1_, double f0_, double h_) |
|
double | second_derivative_backward_regular_sampled_2 (double f_3_, double f_2_, double f_1_, double f_0_, double h_) |
|