-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.cpp
137 lines (124 loc) · 3.8 KB
/
app.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
#include <getopt.h>
#include <default_params.hpp>
#include <flow_network.hpp>
#include <iostream>
#include <naive_tswap.hpp>
#include <problem.hpp>
#include <random>
#include <tswap.hpp>
#include <util.hpp>
#include <vector>
void printHelp();
std::unique_ptr<Solver> getSolver(const std::string solver_name, Problem *P,
bool verbose, int argc, char *argv[]);
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'},
{"make-scen", no_argument, 0, 'P'},
{0, 0, 0, 0},
};
bool make_scen = false;
// command line args
int opt, longindex;
opterr = 0; // ignore getopt error
while ((opt = getopt_long(argc, argv, "i:o:s:vhP", 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 'P':
make_scen = true;
break;
default:
break;
}
}
if (instance_file.length() == 0) {
std::cout << "specify instance file using -i [INSTANCE-FILE], e.g.,"
<< std::endl;
std::cout << "> ./app -i ../instance/sample.txt" << std::endl;
std::cout << "\nor check \n"
<< "> ./app --help" << std::endl;
return 0;
}
// set problem
Problem P = Problem(instance_file);
// create scenario
if (make_scen) {
P.makeScenFile(output_file);
return 0;
}
// solve
std::unique_ptr<Solver> solver =
getSolver(solver_name, &P, verbose, argc, argv_copy);
solver->solve();
if (solver->succeed() && !solver->getSolution().validate(&P)) {
halt("invalid results");
}
solver->printResult();
// output result
solver->makeLog(output_file);
if (verbose) {
std::cout << "save result as " << output_file << std::endl;
}
return 0;
}
std::unique_ptr<Solver> getSolver(const std::string solver_name, Problem *P,
bool verbose, int argc, char *argv[])
{
std::unique_ptr<Solver> solver;
if (solver_name == "FlowNetwork") {
solver = std::make_unique<FlowNetwork>(P);
} else if (solver_name == "NaiveTSWAP") {
solver = std::make_unique<NaiveTSWAP>(P);
} else if (solver_name == "TSWAP") {
solver = std::make_unique<TSWAP>(P);
} else {
warn("unknown solver name, " + solver_name + ", continue by TSWAP");
solver = std::make_unique<TSWAP>(P);
}
solver->setParams(argc, argv);
solver->setVerbose(verbose);
return solver;
}
void printHelp()
{
std::cout << "\nUsage: ./app [OPTIONS] [SOLVER-OPTIONS]\n"
<< "\n**instance file is necessary to run MAPF 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"
<< " -s --solver [SOLVER_NAME] solver, choose from the below\n"
<< " -P --make-scen make scenario file using "
"random starts/goals"
<< "\n\nSolver Options:" << std::endl;
// each solver
FlowNetwork::printHelp();
NaiveTSWAP::printHelp();
TSWAP::printHelp();
}