-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmapd.cpp
145 lines (132 loc) · 4.31 KB
/
mapd.cpp
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
#include <getopt.h>
#include <default_params.hpp>
#include <iostream>
#include <pibt_mapd.hpp>
#include <problem.hpp>
#include <random>
#include <tp.hpp>
#include <vector>
void printHelp();
std::unique_ptr<MAPD_Solver> getSolver(const std::string solver_name,
MAPD_Instance* P, bool verbose, int argc,
char* argv[], bool use_distance_table);
int main(int argc, char* argv[])
{
std::string instance_file = "";
std::string output_file = DEFAULT_OUTPUT_FILE;
std::string solver_name;
bool verbose = false;
char* argv_copy[argc + 1];
for (int i = 0; i < argc; ++i) argv_copy[i] = argv[i];
struct option longopts[] = {
{"instance", required_argument, 0, 'i'},
{"output", required_argument, 0, 'o'},
{"solver", required_argument, 0, 's'},
{"verbose", no_argument, 0, 'v'},
{"help", no_argument, 0, 'h'},
{"time-limit", required_argument, 0, 'T'},
{"log-short", no_argument, 0, 'L'},
{"use-distance-table", no_argument, 0, 'd'},
{0, 0, 0, 0},
};
bool log_short = false;
int max_comp_time = -1;
bool use_distance_table = false;
// command line args
int opt, longindex;
opterr = 0; // ignore getopt error
while ((opt = getopt_long(argc, argv, "i:o:s:vhT:Ld", longopts,
&longindex)) != -1) {
switch (opt) {
case 'i':
instance_file = std::string(optarg);
break;
case 'o':
output_file = std::string(optarg);
break;
case 's':
solver_name = std::string(optarg);
break;
case 'v':
verbose = true;
break;
case 'h':
printHelp();
return 0;
case 'L':
log_short = true;
break;
case 'T':
max_comp_time = std::atoi(optarg);
break;
case 'd':
use_distance_table = true;
break;
default:
break;
}
}
if (instance_file.length() == 0) {
std::cout << "specify instance file using -i [INSTANCE-FILE], e.g.,"
<< std::endl;
std::cout << "> ./mapd -i ../instance/sample.txt" << std::endl;
return 0;
}
// set problem
auto P = MAPD_Instance(instance_file);
// set max computation time (otherwise, use param in instance_file)
if (max_comp_time != -1) P.setMaxCompTime(max_comp_time);
// solve
auto solver =
getSolver(solver_name, &P, verbose, argc, argv_copy, use_distance_table);
solver->setLogShort(log_short);
solver->solve();
if (solver->succeed() && !solver->getSolution().validate(&P)) {
std::cout << "error@mapd: invalid results" << std::endl;
return 0;
}
solver->printResult();
// output result
solver->makeLog(output_file);
if (verbose) {
std::cout << "save result as " << output_file << std::endl;
}
return 0;
}
std::unique_ptr<MAPD_Solver> getSolver(const std::string solver_name,
MAPD_Instance* P, bool verbose, int argc,
char* argv[], bool use_distance_table)
{
std::unique_ptr<MAPD_Solver> solver;
if (solver_name == "PIBT") {
solver = std::make_unique<PIBT_MAPD>(P, use_distance_table);
} else if (solver_name == "TP") {
solver = std::make_unique<TP>(P, use_distance_table);
} else {
std::cout << "warn@mapd: "
<< "unknown solver name, " + solver_name + ", continue by PIBT"
<< std::endl;
solver = std::make_unique<PIBT_MAPD>(P, use_distance_table);
}
solver->setParams(argc, argv);
solver->setVerbose(verbose);
return solver;
}
void printHelp()
{
std::cout
<< "\nUsage: ./mapd [OPTIONS] [SOLVER-OPTIONS]\n"
<< "\n**instance file is necessary to run MAPD simulator**\n\n"
<< " -i --instance [FILE_PATH] instance file path\n"
<< " -o --output [FILE_PATH] ouptut file path\n"
<< " -v --verbose print additional info\n"
<< " -h --help help\n"
<< " -d --use-distance-table use pre-computed distance table\n"
<< " -s --solver [SOLVER_NAME] solver, choose from the below\n"
<< " -T --time-limit [INT] max computation time (ms)\n"
<< " -L --log-short use short log\n"
<< "\nSolver Options:" << std::endl;
// each solver
PIBT_MAPD::printHelp();
TP::printHelp();
}