39 std::string options_()
const {
40 std::string options(
"--threads 6");
41 if (ged_method_ == ged::Options::GEDMethod::F2 or ged_method_ == ged::Options::GEDMethod::BLP_NO_EDGE_LABELS) {
42 options +=
" --relax TRUE";
49 ged_method_{ged_method} {}
51 std::string name()
const {
52 std::stringstream name;
62 else if (ged_method_ == ged::Options::GEDMethod::F2) {
65 else if (ged_method_ == ged::Options::GEDMethod::BLP_NO_EDGE_LABELS) {
84 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
95 progress_bar.increment();
96 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
99 avg_lb /=
static_cast<double>(num_runs);
100 avg_ub /=
static_cast<double>(num_runs);
101 avg_runtime /=
static_cast<double>(num_runs);
107 void test_on_dataset(
const std::string & dataset) {
110 std::cout <<
"\n=== " << dataset <<
" ===\n";
111 std::cout <<
"\tInitializing the environment ...\n";
115 std::vector<Method> methods;
116 for (
auto ged_method : ged_methods) {
117 methods.emplace_back(ged_method);
121 std::size_t max_max_size_div_10{0};
122 if (dataset ==
"AIDS") {
123 max_max_size_div_10 = 8;
125 else if (dataset ==
"Protein") {
126 max_max_size_div_10 = 6;
128 else if (dataset ==
"Mutagenicity") {
129 max_max_size_div_10 = 10;
133 std::string result_filename(
"../results/");
134 result_filename += dataset +
"__best_methods.csv";
135 std::ofstream result_file(result_filename.c_str());
136 for (
const auto & method : methods) {
137 result_file << method.name() +
"_avg_lb," + method.name() +
"_avg_ub," + method.name() +
"_avg_runtime,";
139 result_file <<
"avg_num_nodes\n";
142 for (std::size_t max_size_dev_10{1}; max_size_dev_10 <= max_max_size_div_10; max_size_dev_10++) {
144 util::setup_environment(dataset, max_size_dev_10, env);
147 double avg_runtime{0};
148 for (
auto & method : methods) {
149 method.run_on_dataset(dataset, env, avg_lb, avg_ub, avg_runtime);
150 result_file.open(result_filename.c_str(),std::ios_base::app);
151 result_file << avg_lb <<
"," << avg_ub <<
"," << avg_runtime <<
",";
154 result_file.open(result_filename.c_str(),std::ios_base::app);
160 int main(
int argc,
char* argv[]) {
161 std::vector<std::string> datasets;
162 for (
int i{1}; i < argc; i++) {
163 datasets.push_back(std::string(argv[i]));
164 util::check_dataset(datasets.back());
166 if (datasets.empty()) {
167 util::setup_size_test_datasets(datasets);
169 for (
auto dataset : datasets) {
171 test_on_dataset(dataset);
173 catch (
const std::exception & error) {
174 std::cerr << error.what() <<
". " <<
"Error on " << dataset <<
".\n";
Provides utility functions for tests of VLDB J. submission.
std::pair< GEDGraph::GraphID, GEDGraph::GraphID > graph_ids() const
Provides access to the IDs of the graphs contained in the environment.
std::vector< GEDGraph >::size_type GraphID
Type of internally used graph IDs.
void init_method()
Initializes the method specified by call to set_method().
GEDMethod
Selects the method.
double get_runtime(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id) const
Returns runtime.
double get_avg_num_nodes() const
Returns average number of nodes.
double get_upper_bound(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id) const
Returns upper bound for edit distance between the input graphs.
void run_method(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id)
Runs the GED method specified by call to set_method() between the graphs with IDs g_id and h_id...
void set_method(Options::GEDMethod method, const std::string &options=std::string(""))
Sets the GEDMethod to be used by run_method().
Selects ged::BranchUniform.
double get_lower_bound(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id) const
Returns lower bound for edit distance between the input graphs.
Provides the API of GEDLIB.