41 #define GXL_GEDLIB_SHARED 42 #include "../../../src/env/ged_env.hpp" 44 void learn_depth_for_dataset(
const std::string & dataset) {
47 std::cout <<
"\n=== " << dataset <<
" ===\n";
48 std::cout <<
"\tInitializing the environment ...\n";
50 std::vector<ged::GEDGraph::GraphID> graph_ids(env.
load_gxl_graphs(std::string(
"../../../data/datasets/") + dataset +
"/", std::string(
"../collections/") + dataset +
"_50.xml"));
51 if (dataset ==
"GREC") {
64 int main(
int argc,
char* argv[]) {
65 std::vector<std::string> datasets{
"mao",
"pah",
"alkane",
"acyclic"};
66 for (
auto dataset : datasets) {
68 learn_depth_for_dataset(dataset);
70 catch (
const std::exception & error) {
71 std::cerr << error.what() <<
". " <<
"Error on " << dataset <<
"\n";
void init(Options::InitType init_type=Options::InitType::EAGER_WITHOUT_SHUFFLED_COPIES)
Initializes the environment.
std::vector< GEDGraph::GraphID > load_gxl_graphs(const std::string &graph_dir, const std::string &collection_file, Options::GXLNodeEdgeType node_type=Options::GXLNodeEdgeType::LABELED, Options::GXLNodeEdgeType edge_type=Options::GXLNodeEdgeType::LABELED, const std::unordered_set< std::string > &irrelevant_node_attributes=std::unordered_set< std::string >(), const std::unordered_set< std::string > &irrelevant_edge_attributes=std::unordered_set< std::string >())
Loads graphs given in the GXL file format.
void set_edit_costs(Options::EditCosts edit_costs, std::initializer_list< double > edit_cost_constants={})
Sets the edit costs to one of the predefined edit costs.
void init_method()
Initializes the method specified by call to set_method().
void set_method(Options::GEDMethod method, const std::string &options=std::string(""))
Sets the GEDMethod to be used by run_method().
Provides the API of GEDLIB.