f_schwefel.c File Reference
Implementation of the Schwefel function and problem. More...
#include <stdio.h>
#include <assert.h>
#include <math.h>
#include "coco.h"
#include "coco_problem.c"
#include "suite_bbob_legacy_code.c"
#include "transform_vars_conditioning.c"
#include "transform_obj_shift.c"
#include "transform_vars_scale.c"
#include "transform_vars_affine.c"
#include "transform_vars_shift.c"
#include "transform_vars_z_hat.c"
#include "transform_vars_x_hat.c"
Functions | |
static double | f_schwefel_raw (const double *x, const size_t number_of_variables) |
Implements the Schwefel function without connections to any COCO structures. More... | |
static void | f_schwefel_evaluate (coco_problem_t *problem, const double *x, double *y) |
Uses the raw function to evaluate the COCO problem. More... | |
static coco_problem_t * | f_schwefel_allocate (const size_t number_of_variables) |
Allocates the basic Schwefel problem. More... | |
static coco_problem_t * | f_schwefel_bbob_problem_allocate (const size_t function, const size_t dimension, const size_t instance, const long rseed, const char *problem_id_template, const char *problem_name_template) |
Creates the BBOB Schwefel problem. More... | |
Detailed Description
Implementation of the Schwefel function and problem.
Function Documentation
|
static |
Allocates the basic Schwefel problem.
|
static |
Creates the BBOB Schwefel problem.
|
static |
Uses the raw function to evaluate the COCO problem.
|
static |
Implements the Schwefel function without connections to any COCO structures.