summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/skolemize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/skolemize.cpp')
-rw-r--r--src/theory/quantifiers/skolemize.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/theory/quantifiers/skolemize.cpp b/src/theory/quantifiers/skolemize.cpp
index 90e780c44..c9234db2c 100644
--- a/src/theory/quantifiers/skolemize.cpp
+++ b/src/theory/quantifiers/skolemize.cpp
@@ -102,7 +102,7 @@ TrustNode Skolemize::process(Node q)
bool Skolemize::getSkolemConstants(Node q, std::vector<Node>& skolems)
{
- std::unordered_map<Node, std::vector<Node>, NodeHashFunction>::iterator it =
+ std::unordered_map<Node, std::vector<Node>>::iterator it =
d_skolem_constants.find(q);
if (it != d_skolem_constants.end())
{
@@ -114,7 +114,7 @@ bool Skolemize::getSkolemConstants(Node q, std::vector<Node>& skolems)
Node Skolemize::getSkolemConstant(Node q, unsigned i)
{
- std::unordered_map<Node, std::vector<Node>, NodeHashFunction>::iterator it =
+ std::unordered_map<Node, std::vector<Node>>::iterator it =
d_skolem_constants.find(q);
if (it != d_skolem_constants.end())
{
@@ -326,8 +326,7 @@ Node Skolemize::mkSkolemizedBody(Node f,
Node Skolemize::getSkolemizedBody(Node f)
{
Assert(f.getKind() == FORALL);
- std::unordered_map<Node, Node, NodeHashFunction>::iterator it =
- d_skolem_body.find(f);
+ std::unordered_map<Node, Node>::iterator it = d_skolem_body.find(f);
if (it == d_skolem_body.end())
{
std::vector<TypeNode> fvTypes;
@@ -381,8 +380,7 @@ bool Skolemize::isInductionTerm(Node n)
void Skolemize::getSkolemTermVectors(
std::map<Node, std::vector<Node> >& sks) const
{
- std::unordered_map<Node, std::vector<Node>, NodeHashFunction>::const_iterator
- itk;
+ std::unordered_map<Node, std::vector<Node>>::const_iterator itk;
for (const auto& p : d_skolemized)
{
Node q = p.first;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback