PandA-2024.02
DiscrepancyOpInfo.cpp
Go to the documentation of this file.
1 #include "DiscrepancyOpInfo.hpp"
2 
4 {
5  return (a.stg_fun_id != b.stg_fun_id) || (a.op_id != b.op_id);
6 }
7 
9 {
10  return !(a != b);
11 }
12 
14 {
15  if(a.stg_fun_id == b.stg_fun_id)
16  {
17  return a.op_id < b.op_id;
18  }
19  else
20  {
21  return a.stg_fun_id < b.stg_fun_id;
22  }
23 }
24 
26 {
27  return (a == b) || (a < b);
28 }
29 
31 {
32  if(a.stg_fun_id == b.stg_fun_id)
33  {
34  return a.op_id > b.op_id;
35  }
36  else
37  {
38  return a.stg_fun_id > b.stg_fun_id;
39  }
40 }
41 
43 {
44  return (a == b) || (a > b);
45 }
bool operator<(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)
bool operator>(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)
bool operator!=(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)
bool operator==(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)
bool operator<=(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)
bool operator>=(const DiscrepancyOpInfo &a, const DiscrepancyOpInfo &b)

Generated on Mon Feb 12 2024 13:02:55 for PandA-2024.02 by doxygen 1.8.13