39 std::string options_()
const {
40 std::string options(
"");
42 options +=
"--threads 6";
45 options +=
" --time-limit 1";
52 ged_method_{ged_method} {}
54 std::string name()
const {
55 std::stringstream name;
57 name <<
"BRANCHCOMPACT";
69 name <<
"BRANCHTIGHT";
78 double & classification_coefficient_lb,
double & classification_coefficient_ub)
const {
85 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
86 std::size_t num_intra_class_runs{0};
87 std::size_t num_inter_class_runs{0};
88 double largest_lb{0.0};
89 double avg_intra_class_lb{0.0};
90 double avg_inter_class_lb{0.0};
91 double largest_ub{0.0};
92 double avg_intra_class_ub{0.0};
93 double avg_inter_class_ub{0.0};
112 num_intra_class_runs++;
117 num_inter_class_runs++;
119 progress_bar.increment();
120 std::cout <<
"\r\t" << name() <<
": " << progress_bar << std::flush;
123 avg_lb /=
static_cast<double>(num_runs);
124 avg_ub /=
static_cast<double>(num_runs);
125 avg_runtime /=
static_cast<double>(num_runs);
126 avg_intra_class_lb /=
static_cast<double>(num_intra_class_runs);
127 avg_intra_class_ub /=
static_cast<double>(num_intra_class_runs);
128 avg_inter_class_lb /=
static_cast<double>(num_inter_class_runs);
129 avg_inter_class_ub /=
static_cast<double>(num_inter_class_runs);
130 if (largest_lb > 0) {
131 classification_coefficient_lb = (avg_inter_class_lb - avg_intra_class_lb) / largest_lb;
134 classification_coefficient_lb = 0;
136 if (largest_ub > 0) {
137 classification_coefficient_ub = (avg_inter_class_ub - avg_intra_class_ub) / largest_ub;
140 classification_coefficient_ub = 0;
147 void test_on_dataset(
const std::string & dataset) {
150 std::cout <<
"\n=== " << dataset <<
" ===\n";
151 std::cout <<
"\tInitializing the environment ...\n";
153 util::setup_environment(dataset,
false, env);
157 std::vector<Method> methods;
158 for (
auto ged_method : ged_methods) {
159 methods.emplace_back(ged_method);
163 std::string result_filename(
"../results/");
164 result_filename += dataset +
"__misc_methods.csv";
165 std::ofstream result_file(result_filename.c_str());
166 result_file <<
"method;avg_lb;avg_ub;avg_runtime;classification_coefficient_lb;classification_coefficient_ub\n";
170 double avg_runtime{0};
171 double classification_coefficient_lb{0};
172 double classification_coefficient_ub{0};
173 for (
auto & method : methods) {
174 method.run_on_dataset(dataset, env, avg_lb, avg_ub, avg_runtime, classification_coefficient_lb, classification_coefficient_ub);
175 result_file.open(result_filename.c_str(),std::ios_base::app);
176 result_file << method.name() <<
";" << avg_lb <<
";" << avg_ub <<
";" << avg_runtime <<
";" << classification_coefficient_lb <<
";" << classification_coefficient_ub <<
"\n";
181 int main(
int argc,
char* argv[]) {
182 std::vector<std::string> datasets;
183 for (
int i{1}; i < argc; i++) {
184 datasets.push_back(std::string(argv[i]));
185 util::check_dataset(datasets.back());
187 if (datasets.empty()) {
188 util::setup_datasets(datasets);
190 for (
auto dataset : datasets) {
192 test_on_dataset(dataset);
194 catch (
const std::exception & error) {
195 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.
Selects ged::BranchTight.
double get_runtime(GEDGraph::GraphID g_id, GEDGraph::GraphID h_id) const
Returns runtime.
Selects ged::SimulatedAnnealing.
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.
Selects ged::BranchCompact.