Rev 7676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 7676 | Rev 8177 | ||
---|---|---|---|
Line 21... | Line 21... | ||
21 | 21 | ||
22 | #define MAX_POINTS 32 /* cannot exceed number of bits in long */ |
22 | #define MAX_POINTS 32 /* cannot exceed number of bits in long */ |
23 | #define MAX_DIM 10 /* dimension limit */ |
23 | #define MAX_DIM 10 /* dimension limit */ |
24 | #define MAX_SHORT 20 /* limit of registered shortest paths */ |
24 | #define MAX_SHORT 20 /* limit of registered shortest paths */ |
25 | 25 | ||
26 | #include "../config.h" |
- | |
- | 26 | ||
27 | #include <stdio.h> |
27 | #include <stdio.h> |
28 | #include <stdlib.h> |
28 | #include <stdlib.h> |
29 | #include <string.h> |
29 | #include <string.h> |
30 | #include <math.h> |
30 | #include <math.h> |
31 | #include <ctype.h> |
31 | #include <ctype.h> |
- | 32 | #include "../config.h" |
|
32 | 33 | ||
33 | int pointcnt,dimension,first,last,count,shortcnt; |
34 | int pointcnt,dimension,first,last,count,shortcnt; |
34 | /* style = 0: loop to the start |
35 | /* style = 0: loop to the start |
35 | * 1: arbitrary open path |
36 | * 1: arbitrary open path |
36 | * 2: open path with fixed start |
37 | * 2: open path with fixed start |