GEDLIB  1.0
chem_1.ipp
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_EDIT_COSTS_CHEM_1_IPP_
28 #define SRC_EDIT_COSTS_CHEM_1_IPP_
29 
30 namespace ged {
31 
32 template<>
33 CHEM1<GXLLabel, GXLLabel>::
34 ~CHEM1() {}
35 
36 template<>
38 CHEM1(double node_ins_del_cost, double node_rel_cost, double edge_ins_del_cost, double edge_rel_cost) :
39 node_ins_del_cost_{node_ins_del_cost},
40 node_rel_cost_{node_rel_cost},
41 edge_ins_del_cost_{edge_ins_del_cost},
42 edge_rel_cost_{edge_rel_cost} {}
43 
44 template<>
45 double
47 node_ins_cost_fun(const GXLLabel & node_label) const {
48  return node_ins_del_cost_;
49 }
50 
51 template<>
52 double
54 node_del_cost_fun(const GXLLabel & node_label) const {
55  return node_ins_del_cost_;
56 }
57 
58 template<>
59 double
61 node_rel_cost_fun(const GXLLabel & node_label_1, const GXLLabel & node_label_2) const {
62  if (node_label_1.at("chem") != node_label_2.at("chem")) {
63  return node_rel_cost_;
64  }
65  return 0.0;
66 }
67 
68 template<>
69 double
71 edge_ins_cost_fun(const GXLLabel & edge_label) const {
72  return edge_ins_del_cost_;
73 }
74 
75 template<>
76 double
78 edge_del_cost_fun(const GXLLabel & edge_label) const {
79  return edge_ins_del_cost_;
80 }
81 
82 template<>
83 double
85 edge_rel_cost_fun(const GXLLabel & edge_label_1, const GXLLabel & edge_label_2) const {
86  if (edge_label_1.at("valence") != edge_label_2.at("valence")) {
87  return edge_rel_cost_;
88  }
89  return 0.0;
90 }
91 
92 }
93 
94 #endif /* SRC_EDIT_COSTS_CHEM_1_IPP_ */
CHEM1(double node_ins_del_cost=4, double node_rel_cost=2, double edge_ins_del_cost=1, double edge_rel_cost=1)
Constructor.
virtual double edge_ins_cost_fun(const UserEdgeLabel &edge_label) const final
Edge insertion cost function.
virtual double node_ins_cost_fun(const UserNodeLabel &node_label) const final
Node insertions cost function.
virtual double edge_rel_cost_fun(const UserEdgeLabel &edge_label_1, const UserEdgeLabel &edge_label_2) const final
Edge relabeling cost function.
virtual double edge_del_cost_fun(const UserEdgeLabel &edge_label) const final
Edge deletion cost function.
virtual double node_del_cost_fun(const UserNodeLabel &node_label) const final
Node deletion cost function.
virtual double node_rel_cost_fun(const UserNodeLabel &node_label_1, const UserNodeLabel &node_label_2) const final
Node relabeling cost function.
std::map< std::string, std::string > GXLLabel
Type of node and edge labels of graphs given in the .gxl file format.
Global namespace for GEDLIB.