27 #ifndef SRC_METHODS_RING_HPP_ 28 #define SRC_METHODS_RING_HPP_ 50 template<
class UserNodeLabel,
class UserEdgeLabel>
61 enum LEDMethod_ {LSAPE_OPTIMAL, LSAPE_GREEDY, GAMMA};
63 enum SortMethod_ {STD, COUNTING};
66 Layer_(std::size_t level);
70 std::vector<LabelID> node_labels;
72 std::vector<LabelID> inner_edge_labels;
74 std::vector<LabelID> outer_edge_labels;
80 std::vector<Layer_> layers;
83 class Evaluator_ :
public NOMAD::Evaluator {
89 bool eval_x(NOMAD::Eval_Point & x,
const NOMAD::Double & h_max,
bool & count_eval)
const;
95 typedef std::map<GEDGraph::NodeID, Ring_> NodeRingMap_;
97 std::map<GEDGraph::GraphID, NodeRingMap_> rings_;
99 LEDMethod_ led_method_;
101 SortMethod_ sort_method_;
103 std::size_t num_layers_;
105 std::vector<double> alpha_;
107 std::vector<double> lambda_;
111 std::size_t num_evals_;
113 std::size_t num_x0s_;
117 std::string outfile_;
125 virtual bool lsape_parse_option_(
const std::string & option,
const std::string & arg)
final;
139 void populate_instance_with_params_(
const GEDGraph & g,
const GEDGraph & h,
const vector<double> & alpha,
const vector<double> & lambda,
DMatrix & lsape_instance)
const;
141 void set_num_layers_();
143 void build_rings_(
const GEDGraph & graph);
147 void init_x0s_(std::vector<NOMAD::Point> & x0s)
const;
149 void nomad_point_to_params_(
const NOMAD::Point & x, std::vector<double> & alpha, std::vector<double> & lambda)
const;
151 void normalize_params_();
153 void eval_x_(NOMAD::Eval_Point & x)
const;
155 bool load_config_file_()
const;
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;
160 double compute_substitution_cost_(
const Ring_ & ring_i,
const Ring_ & ring_k,
const std::vector<double> & alpha, std::size_t level)
const;
162 double compute_deletion_cost_(
const Ring_ & ring,
const std::vector<double> & alpha, std::size_t level)
const;
164 double compute_insertion_cost_(
const Ring_ & ring,
const std::vector<double> & alpha, std::size_t level)
const;
166 double compute_layer_distance_(
const Layer_ & lhs,
const Layer_ & rhs,
const std::vector<double> & alpha)
const;
168 double lsape_multiset_cost_(
const std::vector<LabelID> & lhs,
const std::vector<LabelID> & rhs,
bool node_labels)
const;
170 double gamma_multiset_cost_(
const std::vector<LabelID> & lhs,
const std::vector<LabelID> & rhs,
bool node_labels)
const;
172 void write_params_to_file_()
const;
174 void read_params_from_file_();
virtual void lsape_init_() final
Initializes the method after initializing the global variables for the graphs.
Contains the standardized input data along with basic functionality.
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...
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.
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...
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:...
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.
virtual void lsape_default_post_graph_init_() final
Default initializes the method at runtime after initializing the global variables for the graphs...
Global namespace for GEDLIB.
virtual void lsape_init_graph_(const GEDGraph &graph) final
Initializes global variables for one graph.
Computes an upper bound for general edit costs.
std::size_t NodeID
Internally used vertex ID type.
virtual void lsape_populate_instance_(const GEDGraph &g, const GEDGraph &h, DMatrix &master_problem) final
Populates the LSAPE instance.