summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-05-12 23:33:00 -0700
committerGitHub <noreply@github.com>2021-05-13 06:33:00 +0000
commit31242de4b423d7225174dd1672edb2dacb68f5b8 (patch)
tree657a453475affc67628b1391909af92f3346b411 /src/theory/theory_engine.cpp
parentffd7bb2069df08c31fd9d8a03d786f1e9fc7147c (diff)
Add std::hash overloads for Node, TNode and TypeNode. (#6534)
Eliminates NodeHashFunction, TNodeHashFunction and TypeNodeHashFunction.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 1acaca34f..abbca451a 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -1119,8 +1119,8 @@ theory::EqualityStatus TheoryEngine::getEqualityStatus(TNode a, TNode b) {
return d_sharedSolver->getEqualityStatus(a, b);
}
-const std::unordered_set<TNode, TNodeHashFunction>&
-TheoryEngine::getRelevantAssertions(bool& success)
+const std::unordered_set<TNode>& TheoryEngine::getRelevantAssertions(
+ bool& success)
{
// if we are not in SAT mode, or there is no relevance manager, we fail
if (!d_inSatMode || d_relManager == nullptr)
@@ -1203,10 +1203,9 @@ TrustNode TheoryEngine::getExplanation(TNode node)
struct AtomsCollect {
std::vector<TNode> d_atoms;
- std::unordered_set<TNode, TNodeHashFunction> d_visited;
-
-public:
+ std::unordered_set<TNode> d_visited;
+ public:
typedef void return_type;
bool alreadyVisited(TNode current, TNode parent) {
@@ -1508,7 +1507,7 @@ theory::TrustNode TheoryEngine::getExplanation(
// vector of trust nodes to explain at the end
std::vector<std::pair<TheoryId, TrustNode>> texplains;
// cache of nodes we have already explained by some theory
- std::unordered_map<Node, size_t, NodeHashFunction> cache;
+ std::unordered_map<Node, size_t> cache;
while (i < explanationVector.size()) {
// Get the current literal to explain
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback