-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDlFormula.cpp
39 lines (32 loc) · 935 Bytes
/
DlFormula.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "DlFormula.h"
#include "../tree/TreeNode.h"
#include "DlCore.h"
using namespace std;
using namespace xamidi::helper;
namespace xamidi {
namespace logic {
string dlFormulaHash::representativeString(const shared_ptr<DlFormula>& f) {
stringstream ss;
const vector<shared_ptr<DlFormula>>& children = f->getChildren();
const string& value = f->getValue()->value;
string str_children;
for (size_t i = 0; i < children.size(); i++) {
if (i)
str_children += ",";
str_children += representativeString(children[i]);
}
if (!str_children.empty())
ss << value << "[" << str_children << "]";
else
ss << value;
return ss.str();
}
size_t dlFormulaHash::operator()(const shared_ptr<DlFormula>& f) const {
hash<string> stringHash;
return stringHash.operator()(representativeString(f));
}
bool dlFormulaEqual::operator()(const shared_ptr<DlFormula>& f, const shared_ptr<DlFormula>& g) const {
return *f == *g;
}
}
}