1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Adjust comments previously moved to column 1 by pgident.

This commit is contained in:
Bruce Momjian
2004-10-07 15:21:58 +00:00
parent 9da50e1f53
commit a5d7ba773d
22 changed files with 45 additions and 47 deletions

View File

@@ -6,7 +6,7 @@
* OX2 operator according to Syswerda
* (The Genetic Algorithms Handbook, ed L Davis)
*
* $PostgreSQL: pgsql/src/backend/optimizer/geqo/geqo_ox2.c,v 1.9 2003/11/29 22:39:49 pgsql Exp $
* $PostgreSQL: pgsql/src/backend/optimizer/geqo/geqo_ox2.c,v 1.10 2004/10/07 15:21:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -102,7 +102,7 @@ ox2(Gene *tour1, Gene *tour2, Gene *offspring, int num_gene, City *city_table)
select++; /* next city in the select list */
}
else
/* city isn't used yet, so inherit from tour2 */
/* city isn't used yet, so inherit from tour2 */
offspring[k] = tour2[k];
}