summaryrefslogtreecommitdiff
path: root/src/util/predicate.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-07 18:38:49 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-07 18:38:49 +0000
commitb0deae79d8bae5051a85dc15e43e7b83bc8cf9ab (patch)
treed73fa7f9fb37077853f824dcecd2a1b8e4d22837 /src/util/predicate.cpp
parentea5acaba821790dd240db779f2340fbe5fce0b8e (diff)
Some items from the CVC4 public interface review:
* rename DeclarationScope to SymbolTable * rename all HashStrategy -> HashFunction (which we often have anyways) * remove CDCircList (no one is currently using it)
Diffstat (limited to 'src/util/predicate.cpp')
-rw-r--r--src/util/predicate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/predicate.cpp b/src/util/predicate.cpp
index 1868f557d..748e818c3 100644
--- a/src/util/predicate.cpp
+++ b/src/util/predicate.cpp
@@ -49,7 +49,7 @@ operator<<(std::ostream& out, const Predicate& p) {
return out;
}
-size_t PredicateHashStrategy::hash(const Predicate& p) {
+size_t PredicateHashFunction::operator()(const Predicate& p) const {
ExprHashFunction h;
return h(p.d_witness) * 5039 + h(p.d_predicate);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback