GEDLIB  1.0
learn_ring_params.cpp
Go to the documentation of this file.
1 /***************************************************************************
2 * *
3 * Copyright (C) 2018 by David B. Blumenthal *
4 * *
5 * This file is part of GEDLIB. *
6 * *
7 * GEDLIB is free software: you can redistribute it and/or modify it *
8 * under the terms of the GNU Lesser General Public License as published *
9 * by the Free Software Foundation, either version 3 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * GEDLIB is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU Lesser General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License along with GEDLIB. If not, see <http://www.gnu.org/licenses/>. *
19 * *
20 ***************************************************************************/
21 
40 #define GXL_GEDLIB_SHARED
41 #include "../../../src/env/ged_env.hpp"
42 
43 void init_rings_on_dataset(const std::string & dataset, const std::vector<std::string> & led_methods) {
44  // Initialize environment.
45  std::cout << "\n=== " << dataset << " ===\n";
46  std::cout << "\tInitializing the environment ...\n";
48  std::vector<ged::GEDGraph::GraphID> graph_ids(env.load_gxl_graphs(std::string("../../../data/datasets/") + dataset + "/", std::string("../collections/") + dataset + "_50.xml"));
49  if (dataset == "GREC") {
51  }
52  else {
54  }
55  env.init();
56 
57  // Initialize the methods.
58  for (auto led_method : led_methods) {
59  std::cout << "\n=== " << led_method << " ===\n";
60  env.set_method(ged::Options::GEDMethod::RING, std::string("--threads 11 --led-method ") + led_method + " --init-initial-solutions 100 --save ../output/" + dataset + "_ring_" + led_method + ".ini");
61  env.init_method();
62  }
63 }
64 
65 
66 int main(int argc, char* argv[]) {
67  std::vector<std::string> led_methods{"GAMMA","LSAPE_GREEDY","LSAPE_OPTIMAL"};
68  std::vector<std::string> datasets{"mao","pah","alkane","acyclic"};
69  for (auto dataset : datasets) {
70  try {
71  init_rings_on_dataset(dataset, led_methods);
72  }
73  catch (const std::exception & error) {
74  std::cerr << error.what() << ". " << "Error on " << dataset << "\n";
75  }
76  }
77  return 0;
78 }
void init(Options::InitType init_type=Options::InitType::EAGER_WITHOUT_SHUFFLED_COPIES)
Initializes the environment.
Definition: ged_env.ipp:655
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.
Definition: ged_env.ipp:55
void init_method()
Initializes the method specified by call to set_method().
Definition: ged_env.ipp:521
void set_method(Options::GEDMethod method, const std::string &options=std::string(""))
Sets the GEDMethod to be used by run_method().
Definition: ged_env.ipp:384
Provides the API of GEDLIB.
Definition: ged_data.hpp:48