summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/bv_gauss.h
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/preprocessing/passes/bv_gauss.h
parentffd7bb2069df08c31fd9d8a03d786f1e9fc7147c (diff)
Add std::hash overloads for Node, TNode and TypeNode. (#6534)
Eliminates NodeHashFunction, TNodeHashFunction and TypeNodeHashFunction.
Diffstat (limited to 'src/preprocessing/passes/bv_gauss.h')
-rw-r--r--src/preprocessing/passes/bv_gauss.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/preprocessing/passes/bv_gauss.h b/src/preprocessing/passes/bv_gauss.h
index a71f4ce3f..c7cec2cc0 100644
--- a/src/preprocessing/passes/bv_gauss.h
+++ b/src/preprocessing/passes/bv_gauss.h
@@ -96,9 +96,8 @@ class BVGauss : public PreprocessingPass
std::vector<Integer>& rhs,
std::vector<std::vector<Integer>>& lhs);
- static Result gaussElimRewriteForUrem(
- const std::vector<Node>& equations,
- std::unordered_map<Node, Node, NodeHashFunction>& res);
+ static Result gaussElimRewriteForUrem(const std::vector<Node>& equations,
+ std::unordered_map<Node, Node>& res);
static unsigned getMinBwExpr(Node expr);
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback