39 std::string options_()
const {
40 return "--threads 6 --relax TRUE";
45 ged_method_{ged_method} {}
47 std::string name()
const {
48 std::stringstream name;
49 if (ged_method_ == ged::Options::GEDMethod::F1) {
52 else if (ged_method_ == ged::Options::GEDMethod::F2) {
55 else if (ged_method_ == ged::Options::GEDMethod::COMPACT_MIP) {
58 else if (ged_method_ == ged::Options::GEDMethod::BLP_NO_EDGE_LABELS) {
65 double & classification_coefficient_lb,
double & classification_coefficient_ub)
const {
70 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
71 std::size_t num_intra_class_runs{0};
72 std::size_t num_inter_class_runs{0};
73 double largest_lb{0.0};
74 double avg_intra_class_lb{0.0};
75 double avg_inter_class_lb{0.0};
76 double largest_ub{0.0};
77 double avg_intra_class_ub{0.0};
78 double avg_inter_class_ub{0.0};
97 num_intra_class_runs++;
102 num_inter_class_runs++;
104 progress_bar.increment();
105 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
108 avg_lb /=
static_cast<double>(num_runs);
109 avg_ub /=
static_cast<double>(num_runs);
110 avg_runtime /=
static_cast<double>(num_runs);
111 avg_intra_class_lb /=
static_cast<double>(num_intra_class_runs);
112 avg_intra_class_ub /=
static_cast<double>(num_intra_class_runs);
113 avg_inter_class_lb /=
static_cast<double>(num_inter_class_runs);
114 avg_inter_class_ub /=
static_cast<double>(num_inter_class_runs);
115 if (largest_lb > 0) {
116 classification_coefficient_lb = (avg_inter_class_lb - avg_intra_class_lb) / largest_lb;
119 classification_coefficient_lb = 0;
121 if (largest_ub > 0) {
122 classification_coefficient_ub = (avg_inter_class_ub - avg_intra_class_ub) / largest_ub;
125 classification_coefficient_ub = 0;
132 void test_on_dataset(
const std::string & dataset) {
135 std::cout <<
"\n=== " << dataset <<
" ===\n";
136 std::cout <<
"\tInitializing the environment ...\n";
138 util::setup_environment(dataset,
false, env);
141 std::vector<ged::Options::GEDMethod> ged_methods{ged::Options::GEDMethod::F1, ged::Options::GEDMethod::F2, ged::Options::GEDMethod::COMPACT_MIP, ged::Options::GEDMethod::BLP_NO_EDGE_LABELS};
142 std::vector<Method> methods;
143 for (
auto ged_method : ged_methods) {
144 methods.emplace_back(ged_method);
148 std::string result_filename(
"../results/");
149 result_filename += dataset +
"__lp_based_methods.csv";
150 std::ofstream result_file(result_filename.c_str());
151 result_file <<
"method;avg_lb;avg_ub;avg_runtime;classification_coefficient_lb;classification_coefficient_ub\n";
155 double avg_runtime{0};
156 double classification_coefficient_lb{0};
157 double classification_coefficient_ub{0};
158 for (
auto & method : methods) {
159 method.run_on_dataset(dataset, env, avg_lb, avg_ub, avg_runtime, classification_coefficient_lb, classification_coefficient_ub);
160 result_file.open(result_filename.c_str(),std::ios_base::app);
161 result_file << method.name() <<
";" << avg_lb <<
";" << avg_ub <<
";" << avg_runtime <<
";" << classification_coefficient_lb <<
";" << classification_coefficient_ub <<
"\n";
166 int main(
int argc,
char* argv[]) {
167 std::vector<std::string> datasets;
168 for (
int i{1}; i < argc; i++) {
169 datasets.push_back(std::string(argv[i]));
170 util::check_dataset(datasets.back());
172 if (datasets.empty()) {
173 util::setup_datasets(datasets);
175 for (
auto dataset : datasets) {
177 test_on_dataset(dataset);
179 catch (
const std::exception & error) {
180 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.
const std::string & get_graph_class(GEDGraph::GraphID graph_id) const
Returns the graph class.
double get_runtime(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id) const
Returns runtime.
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().
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.