forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
649 lines (544 loc) · 20.1 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
/****************************************************************
*
* MODULE: v.net.salesman
*
* AUTHOR(S): Radim Blazek, Markus Metz
* Stepan Turek <stepan.turek seznam.cz> (turns support)
*
* PURPOSE: Create a cycle connecting given nodes.
*
* COPYRIGHT: (C) 2001-2011,2014 by the GRASS Development Team
*
* This program is free software under the
* GNU General Public License (>=v2).
* Read the file COPYING that comes with GRASS
* for details.
*
****************************************************************/
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <grass/gis.h>
#include <grass/vector.h>
#include <grass/dbmi.h>
#include <grass/glocale.h>
/* TODO: Use some better algorithm */
typedef struct {
int city;
double cost;
} COST;
int ncities; /* number of cities */
int nnodes; /* number of nodes */
int *cities; /* array of cities */
int *cused; /* city is in cycle */
/* pointer to array of pointers to arrays of sorted forward costs */
COST **costs;
/* pointer to array of pointers to arrays of sorted backward costs */
COST **bcosts;
int *cycle; /* path */
int ncyc = 0; /* number of cities in cycle */
int debug_level;
int cmp(const void *, const void *);
int cnode(int city)
{
return (cities[city]);
}
void add_city(int city, int after)
{ /* index !!! to cycle, after which to put it */
int i, j;
if (after == -1) {
cycle[0] = city;
}
else {
/* for a large number of cities this will become slow */
for (j = ncyc - 1; j > after; j--)
cycle[j + 1] = cycle[j];
cycle[after + 1] = city;
}
cused[city] = 1;
ncyc++;
if (debug_level >= 2) {
G_debug(2, "Cycle:");
for (i = 0; i < ncyc; i++) {
G_debug(2, "%d: %d: %d", i, cycle[i], cities[cycle[i]]);
}
}
}
/* like Vect_list_append(), but allows duplicates */
int tsp_list_append(struct ilist *list, int val)
{
size_t size;
if (list == NULL)
return 1;
if (list->n_values == list->alloc_values) {
size = (list->n_values + 1000) * sizeof(int);
list->value = (int *)G_realloc((void *)list->value, size);
list->alloc_values = list->n_values + 1000;
}
list->value[list->n_values] = val;
list->n_values++;
return 0;
}
int main(int argc, char **argv)
{
int i, j, k, ret, city, city1;
int nlines, type, ltype, afield, nfield, tfield, tucfield, geo, cat;
int node, node1, node2, line;
double **
cost_cache; /* pointer to array of pointers to arrays of cached costs */
struct Option *map, *output, *afield_opt, *nfield_opt, *afcol, *abcol, *seq,
*type_opt, *term_opt, *tfield_opt, *tucfield_opt;
struct Flag *geo_f, *turntable_f;
struct GModule *module;
struct Map_info Map, Out;
struct ilist *TList; /* list of terminal nodes */
struct ilist *List;
struct ilist *StArcs; /* list of arcs on Steiner tree */
struct ilist *StNodes; /* list of nodes on Steiner tree */
double cost, tmpcost, tcost;
struct cat_list *Clist;
struct line_cats *Cats;
struct line_pnts *Points;
const char *dstr;
const char *seqname;
int seq2stdout;
FILE *fp;
/* Initialize the GIS calls */
G_gisinit(argv[0]);
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("network"));
G_add_keyword(_("salesman"));
module->label = _(
"Creates a cycle connecting given nodes (Traveling salesman problem).");
module->description =
_("Note that TSP is NP-hard, heuristic algorithm is used by "
"this module and created cycle may be sub optimal");
map = G_define_standard_option(G_OPT_V_INPUT);
output = G_define_standard_option(G_OPT_V_OUTPUT);
term_opt = G_define_standard_option(G_OPT_V_CATS);
term_opt->key = "center_cats";
term_opt->required = YES;
term_opt->description = _("Categories of points ('cities') on nodes "
"(layer is specified by nlayer)");
afield_opt = G_define_standard_option(G_OPT_V_FIELD);
afield_opt->key = "arc_layer";
afield_opt->answer = "1";
afield_opt->required = YES;
afield_opt->label = _("Arc layer");
type_opt = G_define_standard_option(G_OPT_V_TYPE);
type_opt->key = "arc_type";
type_opt->options = "line,boundary";
type_opt->answer = "line,boundary";
type_opt->required = YES;
type_opt->label = _("Arc type");
nfield_opt = G_define_standard_option(G_OPT_V_FIELD);
nfield_opt->key = "node_layer";
nfield_opt->answer = "2";
nfield_opt->required = YES;
nfield_opt->label = _("Node layer (used for cities)");
afcol = G_define_option();
afcol->key = "arc_column";
afcol->type = TYPE_STRING;
afcol->required = NO;
afcol->description =
_("Arc forward/both direction(s) cost column (number)");
afcol->guisection = _("Cost");
abcol = G_define_option();
abcol->key = "arc_backward_column";
abcol->type = TYPE_STRING;
abcol->required = NO;
abcol->required = NO;
abcol->description =
_("EXPERIMENTAL: Arc backward direction cost column (number)");
abcol->guisection = _("Cost");
turntable_f = G_define_flag();
turntable_f->key = 't';
turntable_f->description = _("Use turntable");
turntable_f->guisection = _("Turntable");
tfield_opt = G_define_standard_option(G_OPT_V_FIELD);
tfield_opt->key = "turn_layer";
tfield_opt->answer = "3";
tfield_opt->label = _("Layer with turntable");
tfield_opt->description = _("Relevant only with -t flag");
tfield_opt->guisection = _("Turntable");
tucfield_opt = G_define_standard_option(G_OPT_V_FIELD);
tucfield_opt->key = "turn_cat_layer";
tucfield_opt->answer = "4";
tucfield_opt->label = _("Layer with unique categories used in turntable");
tucfield_opt->description = _("Relevant only with -t flag");
tucfield_opt->guisection = _("Turntable");
seq = G_define_standard_option(G_OPT_F_OUTPUT);
seq->key = "sequence";
seq->type = TYPE_STRING;
seq->required = NO;
seq->description =
_("Name for output file holding node sequence (\"-\" for stdout)");
geo_f = G_define_flag();
geo_f->key = 'g';
geo_f->description =
_("Use geodesic calculation for longitude-latitude projects");
if (G_parser(argc, argv))
exit(EXIT_FAILURE);
Cats = Vect_new_cats_struct();
Points = Vect_new_line_struct();
type = Vect_option_to_types(type_opt);
TList = Vect_new_list();
List = Vect_new_list();
StArcs = Vect_new_list();
StNodes = Vect_new_list();
Clist = Vect_new_cat_list();
Vect_str_to_cat_list(term_opt->answer, Clist);
dstr = G_getenv_nofatal("DEBUG");
if (dstr != NULL)
debug_level = atoi(dstr);
else
debug_level = 0;
if (debug_level >= 1) {
G_debug(1, "Input categories:");
for (i = 0; i < Clist->n_ranges; i++) {
G_debug(1, "%d - %d", Clist->min[i], Clist->max[i]);
}
}
if (geo_f->answer)
geo = 1;
else
geo = 0;
Vect_check_input_output_name(map->answer, output->answer, G_FATAL_EXIT);
Vect_set_open_level(2);
if (Vect_open_old(&Map, map->answer, "") < 0)
G_fatal_error(_("Unable to open vector map <%s>"), map->answer);
afield = Vect_get_field_number(&Map, afield_opt->answer);
nfield = Vect_get_field_number(&Map, nfield_opt->answer);
tfield = Vect_get_field_number(&Map, tfield_opt->answer);
tucfield = Vect_get_field_number(&Map, tucfield_opt->answer);
nnodes = Vect_get_num_nodes(&Map);
nlines = Vect_get_num_lines(&Map);
/* Create list of terminals based on list of categories */
for (i = 1; i <= nlines; i++) {
ltype = Vect_get_line_type(&Map, i);
if (!(ltype & GV_POINT))
continue;
Vect_read_line(&Map, Points, Cats, i);
if (!(Vect_cat_get(Cats, nfield, &cat)))
continue;
if (Vect_cat_in_cat_list(cat, Clist)) {
node = Vect_find_node(&Map, Points->x[0], Points->y[0],
Points->z[0], 0, 0);
if (!node) {
G_warning(_("Point is not connected to the network"));
}
else
tsp_list_append(TList, node);
}
}
ncities = TList->n_values;
G_message(_("Number of cities: %d"), ncities);
if (ncities < 2)
G_fatal_error(_("Not enough cities (< 2)"));
/* Alloc memory */
cities = (int *)G_malloc(ncities * sizeof(int));
cused = (int *)G_malloc(ncities * sizeof(int));
for (i = 0; i < ncities; i++) {
G_debug(1, "%d", TList->value[i]);
cities[i] = TList->value[i];
cused[i] = 0; /* not in cycle */
}
costs = (COST **)G_malloc(ncities * sizeof(COST *));
for (i = 0; i < ncities; i++) {
costs[i] = (COST *)G_malloc(ncities * sizeof(COST));
}
cost_cache = (double **)G_malloc(ncities * sizeof(double *));
for (i = 0; i < ncities; i++) {
cost_cache[i] = (double *)G_malloc(ncities * sizeof(double));
}
if (abcol->answer) {
bcosts = (COST **)G_malloc(ncities * sizeof(COST *));
for (i = 0; i < ncities; i++) {
bcosts[i] = (COST *)G_malloc(ncities * sizeof(COST));
}
}
else
bcosts = NULL;
cycle = (int *)G_malloc((ncities + 1) *
sizeof(int)); /* + 1 is for output cycle */
/* Build graph */
if (turntable_f->answer)
Vect_net_ttb_build_graph(&Map, type, afield, 0, tfield, tucfield,
afcol->answer, abcol->answer, NULL, geo, 0);
else
Vect_net_build_graph(&Map, type, afield, 0, afcol->answer,
abcol->answer, NULL, geo, 0);
/* Create sorted lists of costs */
/* for a large number of cities this will become very slow, can not be fixed
*/
G_message(_("Creating cost cache..."));
for (i = 0; i < ncities; i++) {
G_percent(i, ncities, 2);
k = 0;
for (j = 0; j < ncities; j++) {
cost_cache[i][j] = 0.0;
if (i == j)
continue;
if (turntable_f->answer)
ret = Vect_net_ttb_shortest_path(&Map, cities[i], 0, cities[j],
0, tucfield, NULL, &cost);
else
ret = Vect_net_shortest_path(&Map, cities[i], cities[j], NULL,
&cost);
if (ret == -1) {
double coor_x, coor_y, coor_z;
int cat1, cat2;
Vect_get_node_coor(&Map, cities[i], &coor_x, &coor_y, &coor_z);
line = Vect_find_line(&Map, coor_x, coor_y, coor_z, GV_POINT, 0,
0, 0);
if (!line)
G_fatal_error(_("No point at node %d"), cities[i]);
Vect_read_line(&Map, Points, Cats, line);
if (!(Vect_cat_get(Cats, nfield, &cat1)))
G_fatal_error(_("No category for point at node %d"),
cities[i]);
Vect_get_node_coor(&Map, cities[j], &coor_x, &coor_y, &coor_z);
line = Vect_find_line(&Map, coor_x, coor_y, coor_z, GV_POINT, 0,
0, 0);
if (!line)
G_fatal_error(_("No point at node %d"), cities[j]);
Vect_read_line(&Map, Points, Cats, line);
if (!(Vect_cat_get(Cats, nfield, &cat2)))
G_fatal_error(_("No category for point at node %d"),
cities[j]);
G_fatal_error(_("Destination node [cat %d] is unreachable "
"from node [cat %d]"),
cat1, cat2);
}
/* add to directional cost cache: from, to, cost */
costs[i][k].city = j;
costs[i][k].cost = cost;
cost_cache[i][j] = cost;
k++;
}
qsort((void *)costs[i], k, sizeof(COST), cmp);
}
G_percent(1, 1, 2);
if (bcosts) {
for (i = 0; i < ncities; i++) {
/* this should be fast, no need for G_percent() */
k = 0;
for (j = 0; j < ncities; j++) {
if (i == j)
continue;
bcosts[i][k].city = j;
bcosts[i][k].cost = cost_cache[j][i];
k++;
}
qsort((void *)bcosts[i], k, sizeof(COST), cmp);
}
}
if (debug_level >= 2) {
/* debug: print sorted */
for (i = 0; i < ncities; i++) {
for (j = 0; j < ncities - 1; j++) {
city = costs[i][j].city;
G_debug(2, "%d -> %d = %f", cities[i], cities[city],
costs[i][j].cost);
}
}
}
G_message(_("Searching for the shortest cycle..."));
/* find 2 cities with largest distance */
cost = city = -1;
for (i = 0; i < ncities; i++) {
tmpcost = costs[i][ncities - 2].cost;
if (tmpcost > cost) {
cost = tmpcost;
city = i;
}
}
G_debug(2, "biggest costs %d - %d", city, costs[city][ncities - 2].city);
/* add these 2 cities to array */
add_city(city, -1);
add_city(costs[city][ncities - 2].city, 0);
/* In each step, find not used city, with biggest cost to any used city, and
* insert into cycle between 2 nearest nodes */
/* for a large number of cities this will become very slow, can be fixed */
for (i = 0; i < ncities - 2; i++) {
G_percent(i, ncities - 3, 1);
cost = -1;
G_debug(2, "---- city %d ----", i);
for (j = 0; j < ncities; j++) {
if (cused[j] == 1)
continue;
tmpcost = 0;
for (k = 0; k < ncities - 1; k++) {
G_debug(2, "forward? %d (%d) - %d (%d)", j, cnode(j),
costs[j][k].city, cnode(costs[j][k].city));
if (!cused[costs[j][k].city])
continue; /* only used */
/* directional costs j -> k */
tmpcost += costs[j][k].cost;
break; /* first nearest */
}
/* forward/backward: tmpcost = min(fcost) + min(bcost) */
if (bcosts) {
for (k = 0; k < ncities - 1; k++) {
G_debug(2, "backward? %d (%d) - %d (%d)", j, cnode(j),
bcosts[j][k].city, cnode(bcosts[j][k].city));
if (!cused[bcosts[j][k].city])
continue; /* only used */
/* directional costs k -> j */
tmpcost += bcosts[j][k].cost;
break; /* first nearest */
}
}
G_debug(2, " cost = %f x %f", tmpcost, cost);
if (tmpcost > cost) {
cost = tmpcost;
city = j;
}
}
G_debug(2, "add city %d", city);
/* add to cycle on lowest costs */
cycle[ncyc] = cycle[0]; /* temporarily close the cycle */
cost = PORT_DOUBLE_MAX;
city1 = 0;
for (j = 0; j < ncyc; j++) {
/* cost from j to j + 1 (directional) */
/* get cost from directional cost cache */
tcost = cost_cache[cycle[j]][cycle[j + 1]];
tmpcost = -tcost;
/* check insertion of city between j and j + 1 */
/* cost from j to city (directional) */
/* get cost from directional cost cache */
tcost = cost_cache[cycle[j]][city];
tmpcost += tcost;
/* cost from city to j + 1 (directional) */
/* get cost from directional cost cache */
tcost = cost_cache[city][cycle[j + 1]];
tmpcost += tcost;
/* tmpcost must always be > 0 */
G_debug(2, "? %d - %d cost = %f x %f", cities[cycle[j]],
cities[cycle[j + 1]], tmpcost, cost);
/* always true for j = 0 */
if (tmpcost < cost) {
city1 = j;
cost = tmpcost;
}
}
add_city(city, city1);
}
/* TODO: optimize tour (some Lin-Kernighan method) */
if (debug_level >= 2) {
/* debug print */
G_debug(2, "Cycle:");
for (i = 0; i < ncities; i++) {
G_debug(2, "%d: %d: %d", i, cycle[i], cities[cycle[i]]);
}
}
/* Create list of arcs */
cycle[ncities] = cycle[0]; /* close the cycle */
cost = 0.0;
for (i = 0; i < ncities; i++) {
node1 = cities[cycle[i]];
node2 = cities[cycle[i + 1]];
G_debug(2, " %d -> %d", node1, node2);
if (turntable_f->answer)
ret = Vect_net_ttb_shortest_path(&Map, node1, 0, node2, 0, tucfield,
List, NULL);
else
ret = Vect_net_shortest_path(&Map, node1, node2, List, NULL);
cost += cost_cache[cycle[i]][cycle[i + 1]];
for (j = 0; j < List->n_values; j++) {
line = abs(List->value[j]);
/* Vect_list_append() appends only if value not yet present !!!
* this breaks the correct sequence */
tsp_list_append(StArcs, line);
Vect_get_line_nodes(&Map, line, &node1, &node2);
tsp_list_append(StNodes, node1);
tsp_list_append(StNodes, node2);
}
}
/* Write arcs to new map */
if (Vect_open_new(&Out, output->answer, Vect_is_3d(&Map)) < 0)
G_fatal_error(_("Unable to create vector map <%s>"), output->answer);
Vect_hist_command(&Out);
G_verbose_message(_("Cycle with total cost %.3f"), cost);
G_debug(2, "Arcs' categories (layer %d, %d arcs):", afield,
StArcs->n_values);
for (i = 0; i < StArcs->n_values; i++) {
line = StArcs->value[i];
ltype = Vect_read_line(&Map, Points, Cats, line);
Vect_write_line(&Out, ltype, Points, Cats);
Vect_cat_get(Cats, afield, &cat);
G_debug(2, "%d. arc: cat %d", i + 1, cat);
}
seq2stdout = 0;
seqname = NULL;
if (seq->answer) {
if (strcmp(seq->answer, "-")) {
seqname = seq->answer;
}
else {
seqname = G_tempfile();
seq2stdout = 1;
}
fp = fopen(seqname, "w");
if (!fp)
G_fatal_error(_("Unable to open file '%s' for writing"), seqname);
fprintf(fp, "sequence;category;cost_to_next\n");
}
else
fp = NULL;
k = 0;
/* this writes out only user-selected nodes, not all visited nodes */
G_debug(2, "Nodes' categories (layer %d, %d nodes):", nfield, ncities);
for (i = 0; i < ncities; i++) {
double coor_x, coor_y, coor_z;
node = cities[cycle[i]];
Vect_get_node_coor(&Map, node, &coor_x, &coor_y, &coor_z);
line = Vect_find_line(&Map, coor_x, coor_y, coor_z, GV_POINT, 0, 0, 0);
if (!line)
continue;
ltype = Vect_read_line(&Map, Points, Cats, line);
if (!(ltype & GV_POINT))
continue;
if (!(Vect_cat_get(Cats, nfield, &cat)))
continue;
Vect_write_line(&Out, ltype, Points, Cats);
k++;
if (fp) {
fprintf(fp, "%d;%d;%.3f\n", k, cat,
cost_cache[cycle[i]][cycle[i + 1]]);
}
G_debug(2, "%d. node: cat %d", k, cat);
}
Vect_build(&Out);
/* Free, ... */
Vect_destroy_list(StArcs);
Vect_destroy_list(StNodes);
Vect_close(&Map);
Vect_close(&Out);
if (fp) {
fclose(fp);
if (seq2stdout) {
char buf[2000];
/* spacer to previous output to stderr */
G_message(" ");
fp = fopen(seqname, "r");
while (G_getl2(buf, 2000, fp) != 0)
fprintf(stdout, "%s\n", buf);
fclose(fp);
remove(seqname);
}
}
exit(EXIT_SUCCESS);
}
int cmp(const void *pa, const void *pb)
{
COST *p1 = (COST *)pa;
COST *p2 = (COST *)pb;
if (p1->cost < p2->cost)
return -1;
if (p1->cost > p2->cost)
return 1;
return 0;
}