GEDLIB  1.0
ring.hpp
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 
27 #ifndef SRC_METHODS_RING_HPP_
28 #define SRC_METHODS_RING_HPP_
29 
30 namespace ged {
31 
50 template<class UserNodeLabel, class UserEdgeLabel>
51 class Ring : public LSAPEBasedMethod<UserNodeLabel, UserEdgeLabel> {
52 
53 public:
54 
55  virtual ~Ring();
56 
58 
59 private:
60 
61  enum LEDMethod_ {LSAPE_OPTIMAL, LSAPE_GREEDY, GAMMA};
62 
63  enum SortMethod_ {STD, COUNTING};
64 
65  struct Layer_ {
66  Layer_(std::size_t level);
67 
68  std::size_t level;
69 
70  std::vector<LabelID> node_labels;
71 
72  std::vector<LabelID> inner_edge_labels;
73 
74  std::vector<LabelID> outer_edge_labels;
75  };
76 
77  struct Ring_ {
78  Ring_();
79 
80  std::vector<Layer_> layers;
81  };
82 
83  class Evaluator_ : public NOMAD::Evaluator {
84  public:
85  Evaluator_(const NOMAD::Parameters & param, Ring<UserNodeLabel, UserEdgeLabel> * ring);
86 
87  ~Evaluator_();
88 
89  bool eval_x(NOMAD::Eval_Point & x, const NOMAD::Double & h_max, bool & count_eval) const;
90 
91  private:
93  };
94 
95  typedef std::map<GEDGraph::NodeID, Ring_> NodeRingMap_;
96 
97  std::map<GEDGraph::GraphID, NodeRingMap_> rings_;
98 
99  LEDMethod_ led_method_;
100 
101  SortMethod_ sort_method_;
102 
103  std::size_t num_layers_;
104 
105  std::vector<double> alpha_;
106 
107  std::vector<double> lambda_;
108 
109  double mu_;
110 
111  std::size_t num_evals_;
112 
113  std::size_t num_x0s_;
114 
115  std::string infile_;
116 
117  std::string outfile_;
118 
119  // Member functions inherited from LSAPEBasedMethod.
120 
121  virtual void lsape_set_default_options_() final;
122 
123  virtual std::string lsape_valid_options_string_() const final;
124 
125  virtual bool lsape_parse_option_(const std::string & option, const std::string & arg) final;
126 
127  virtual void lsape_init_() final;
128 
129  virtual void lsape_init_graph_(const GEDGraph & graph) final;
130 
131  virtual void lsape_populate_instance_(const GEDGraph & g, const GEDGraph & h, DMatrix & master_problem) final;
132 
133  virtual void lsape_default_post_graph_init_() final;
134 
135  virtual void lsape_pre_graph_init_(bool called_at_runtime) final;
136 
137  // Private helper member functions.
138 
139  void populate_instance_with_params_(const GEDGraph & g, const GEDGraph & h, const vector<double> & alpha, const vector<double> & lambda, DMatrix & lsape_instance) const;
140 
141  void set_num_layers_();
142 
143  void build_rings_(const GEDGraph & graph);
144 
145  void build_ring_(const GEDGraph & graph, GEDGraph::NodeID root, NodeRingMap_ & rings);
146 
147  void init_x0s_(std::vector<NOMAD::Point> & x0s) const;
148 
149  void nomad_point_to_params_(const NOMAD::Point & x, std::vector<double> & alpha, std::vector<double> & lambda) const;
150 
151  void normalize_params_();
152 
153  void eval_x_(NOMAD::Eval_Point & x) const;
154 
155  bool load_config_file_() const;
156 
157  double compute_ring_distance_(const GEDGraph & g, const GEDGraph & h, const NodeRingMap_ & rings_g, const NodeRingMap_ & rings_h,
158  const std::vector<double> & alpha, const std::vector<double> & lambda, std::size_t row_in_master, std::size_t col_in_master) const;
159 
160  double compute_substitution_cost_(const Ring_ & ring_i, const Ring_ & ring_k, const std::vector<double> & alpha, std::size_t level) const;
161 
162  double compute_deletion_cost_(const Ring_ & ring, const std::vector<double> & alpha, std::size_t level) const;
163 
164  double compute_insertion_cost_(const Ring_ & ring, const std::vector<double> & alpha, std::size_t level) const;
165 
166  double compute_layer_distance_(const Layer_ & lhs, const Layer_ & rhs, const std::vector<double> & alpha) const;
167 
168  double lsape_multiset_cost_(const std::vector<LabelID> & lhs, const std::vector<LabelID> & rhs, bool node_labels) const;
169 
170  double gamma_multiset_cost_(const std::vector<LabelID> & lhs, const std::vector<LabelID> & rhs, bool node_labels) const;
171 
172  void write_params_to_file_() const;
173 
174  void read_params_from_file_();
175 };
176 
177 }
178 
179 #endif /* SRC_METHODS_RING_HPP_ */
virtual void lsape_init_() final
Initializes the method after initializing the global variables for the graphs.
Definition: ring.ipp:101
Contains the standardized input data along with basic functionality.
Definition: ged_data.hpp:55
virtual void lsape_pre_graph_init_(bool called_at_runtime) final
Initializes the method at runtime or during initialization before initializing the global variables f...
Definition: ring.ipp:77
virtual bool lsape_parse_option_(const std::string &option, const std::string &arg) final
Parses one option that is not among the ones shared by all derived classes of ged::LSAPEBasedMethod.
Definition: ring.ipp:205
virtual void lsape_set_default_options_() final
Sets all options that are not among the ones shared by all derived classes of ged::LSAPEBasedMethod t...
Definition: ring.ipp:66
virtual std::string lsape_valid_options_string_() const final
Returns string of all valid options that are not among the ones shared by all derived classes of ged:...
Definition: ring.ipp:198
Abstract class for methods that use lossy transformations to LSAPE for approximating the graph edit d...
The normalized input graphs used by GEDLIB. All labels are integers.
Definition: ged_graph.hpp:104
virtual void lsape_default_post_graph_init_() final
Default initializes the method at runtime after initializing the global variables for the graphs...
Definition: ring.ipp:86
Global namespace for GEDLIB.
virtual void lsape_init_graph_(const GEDGraph &graph) final
Initializes global variables for one graph.
Definition: ring.ipp:59
Computes an upper bound for general edit costs.
Definition: ring.hpp:51
std::size_t NodeID
Internally used vertex ID type.
Definition: ged_graph.hpp:108
virtual void lsape_populate_instance_(const GEDGraph &g, const GEDGraph &h, DMatrix &master_problem) final
Populates the LSAPE instance.
Definition: ring.ipp:283