summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/inst_match_trie.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/inst_match_trie.h')
-rw-r--r--src/theory/quantifiers/inst_match_trie.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/theory/quantifiers/inst_match_trie.h b/src/theory/quantifiers/inst_match_trie.h
index a827ff697..961d1608c 100644
--- a/src/theory/quantifiers/inst_match_trie.h
+++ b/src/theory/quantifiers/inst_match_trie.h
@@ -164,12 +164,11 @@ class InstMatchTrie
/** print this class */
void print(std::ostream& out,
Node q,
- bool& firstTime,
bool useActive,
std::vector<Node>& active) const
{
std::vector<TNode> terms;
- print(out, q, terms, firstTime, useActive, active);
+ print(out, q, terms, useActive, active);
}
/** the data */
std::map<Node, InstMatchTrie> d_data;
@@ -181,7 +180,6 @@ class InstMatchTrie
void print(std::ostream& out,
Node q,
std::vector<TNode>& terms,
- bool& firstTime,
bool useActive,
std::vector<Node>& active) const;
/** helper for get instantiations
@@ -332,12 +330,11 @@ class CDInstMatchTrie
/** print this class */
void print(std::ostream& out,
Node q,
- bool& firstTime,
bool useActive,
std::vector<Node>& active) const
{
std::vector<TNode> terms;
- print(out, q, terms, firstTime, useActive, active);
+ print(out, q, terms, useActive, active);
}
private:
@@ -351,7 +348,6 @@ class CDInstMatchTrie
void print(std::ostream& out,
Node q,
std::vector<TNode>& terms,
- bool& firstTime,
bool useActive,
std::vector<Node>& active) const;
/** helper for get instantiations
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback