Go to the source code of this file.
|
| | ABSL_FLAG (int, num_cities, 50, "Number of cities in random TSP.") |
| |
| | ABSL_FLAG (std::string, output, "", "Write a svg of the solution here, or to standard out if empty.") |
| |
| | ABSL_FLAG (bool, test_instance, false, "Solve the test TSP instead of a random instance.") |
| |
| | ABSL_FLAG (int, threads, 0, "How many threads to solve with, or solver default if <= 0.") |
| |
| | ABSL_FLAG (bool, solve_logs, false, "Have the solver print logs to standard out.") |
| |
| int | main (int argc, char **argv) |
| |
◆ ABSL_FLAG() [1/5]
| ABSL_FLAG |
( |
bool |
, |
|
|
solve_logs |
, |
|
|
false |
, |
|
|
"Have the solver print logs to standard out." |
|
|
) |
| |
◆ ABSL_FLAG() [2/5]
| ABSL_FLAG |
( |
bool |
, |
|
|
test_instance |
, |
|
|
false |
, |
|
|
"Solve the test TSP instead of a random instance." |
|
|
) |
| |
◆ ABSL_FLAG() [3/5]
| ABSL_FLAG |
( |
int |
, |
|
|
num_cities |
, |
|
|
50 |
, |
|
|
"Number of cities in random TSP." |
|
|
) |
| |
◆ ABSL_FLAG() [4/5]
| ABSL_FLAG |
( |
int |
, |
|
|
threads |
, |
|
|
0 |
, |
|
|
"How many threads to solve |
with, |
|
|
or solver default if<=0." |
|
|
) |
| |
◆ ABSL_FLAG() [5/5]
| ABSL_FLAG |
( |
std::string |
, |
|
|
output |
, |
|
|
"" |
, |
|
|
"Write a svg of the solution |
here, |
|
|
or to standard out if empty." |
|
|
) |
| |
◆ main()
| int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |