PostgreSQL Source Code git master
Loading...
Searching...
No Matches
geqo_copy.c File Reference
#include "postgres.h"
#include "optimizer/geqo_copy.h"
Include dependency graph for geqo_copy.c:

Go to the source code of this file.

Functions

void geqo_copy (PlannerInfo *root, Chromosome *chromo1, Chromosome *chromo2, int string_length)
 

Function Documentation

◆ geqo_copy()

void geqo_copy ( PlannerInfo root,
Chromosome chromo1,
Chromosome chromo2,
int  string_length 
)

Definition at line 45 of file geqo_copy.c.

47{
48 int i;
49
50 for (i = 0; i < string_length; i++)
51 chromo1->string[i] = chromo2->string[i];
52
53 chromo1->worth = chromo2->worth;
54}
int i
Definition isn.c:77
static int fb(int x)

References fb(), and i.

Referenced by geqo_selection(), and spread_chromo().