-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_runner.cpp
53 lines (48 loc) · 1.74 KB
/
benchmark_runner.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
#include <string>
#include <iostream>
#include <fstream>
#include <dirent.h>
#include "dimacs.h"
#include "solver.h"
#include "solver_runner.h"
bool ends_with(const std::string& string, const std::string& ending) {
if (string.length() < ending.length())
return false;
return string.compare(string.length() - ending.length(), ending.length(), ending) == 0;
}
#define measure_time(result, x) {\
auto start = std::chrono::steady_clock::now();\
{x}\
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - start);\
result = duration.count();\
}
int main(int argc, char* argv[]) {
if (argc < 3) {
std::cout << "Usage: SATSolverBenchmark [folder with .cnf files] [log-file]" << std::endl;
return 1;
}
auto folder_name = argv[1];
auto log_file = argv[2];
std::ofstream fout(log_file);
DIR* dir;
dirent* ent;
if ((dir = opendir(folder_name)) != nullptr) {
while ((ent = readdir(dir)) != nullptr) {
std::string filename(ent->d_name, ent->d_namlen);
if (ends_with(filename, ".cnf")) {
fout << filename << "... \t";
size_t elapsed_time;
sat_result result;
measure_time(elapsed_time,
solver_runner runner(folder_name + ("/" + filename));
result = runner.solve(
/*preprocess = */true,
/*timeout = */std::chrono::seconds {1000}
);
)
fout << (result == SAT ? "SAT" : (result == UNSAT ? "UNSAT" : "TIMEOUT")) << ", time: " << elapsed_time / 1000 << " seconds" << std::endl;
}
}
closedir(dir);
}
}