21 is_velocity_initialized =
false;
22 is_candidate_initialized =
false;
26 void init_can(
int numvar,
int fit_size);
29 void update_cont(
double *input);
30 void update_vel(
double *input);
32 void update_global(
double *input);
35 void read_cont(
double *output);
36 void read_vel(
double *output);
37 void read_best(
double *output);
38 void read_global(
double *output);
40 void write_contfit(
double *fit,
int tt);
41 void write_bestfit(
double *fit);
42 void write_globalfit(
double *fit);
68 bool is_velocity_initialized;
69 bool is_candidate_initialized;
Candidate()
Definition: candidate.h:20
int read_bestt()
Definition: candidate.h:53
double read_contfit(int i)
Definition: candidate.h:44
double read_globalfit(int i)
Definition: candidate.h:50
Candidate class contains arrays to be used by optimization algorithm to store data of a solution cand...
Definition: candidate.h:11
double read_bestfit(int i)
Definition: candidate.h:47
int num_fit
Definition: mpi_optalg.h:72
int num
Definition: mpi_optalg.h:71
OptAlg class contains the functions that can be used to contruct an optimization algorithm in the mai...
Definition: mpi_optalg.h:17