mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Final pgindent + perltidy run for v10.
This commit is contained in:
@ -46,7 +46,7 @@
|
||||
*/
|
||||
int
|
||||
cx(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring,
|
||||
int num_gene, City *city_table)
|
||||
int num_gene, City * city_table)
|
||||
{
|
||||
int i,
|
||||
start_pos,
|
||||
|
@ -45,7 +45,7 @@
|
||||
*/
|
||||
void
|
||||
ox1(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene,
|
||||
City *city_table)
|
||||
City * city_table)
|
||||
{
|
||||
int left,
|
||||
right,
|
||||
|
@ -44,7 +44,7 @@
|
||||
* position crossover
|
||||
*/
|
||||
void
|
||||
ox2(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene, City *city_table)
|
||||
ox2(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene, City * city_table)
|
||||
{
|
||||
int k,
|
||||
j,
|
||||
|
@ -45,7 +45,7 @@
|
||||
*/
|
||||
void
|
||||
px(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene,
|
||||
City *city_table)
|
||||
City * city_table)
|
||||
{
|
||||
int num_positions;
|
||||
int i,
|
||||
|
@ -84,7 +84,7 @@ alloc_city_table(PlannerInfo *root, int num_gene)
|
||||
* deallocate memory of city table
|
||||
*/
|
||||
void
|
||||
free_city_table(PlannerInfo *root, City *city_table)
|
||||
free_city_table(PlannerInfo *root, City * city_table)
|
||||
{
|
||||
pfree(city_table);
|
||||
}
|
||||
|
Reference in New Issue
Block a user