summaryrefslogtreecommitdiff
path: root/src/theory/uf/equality_engine.h
diff options
context:
space:
mode:
authorDejan Jovanovic <dejan@csl.sri.com>2013-07-19 14:27:40 -0700
committerDejan Jovanovic <dejan@csl.sri.com>2013-07-19 14:27:40 -0700
commit6587cf5f516f1ee632d06b13e0e1f874dfc96afb (patch)
treebe7dab9f1c3c63482eef94e0ecddfb58239e55fa /src/theory/uf/equality_engine.h
parente314cee5558babad33e5c8228c74701abc0106cc (diff)
possible fix for bug 521
Diffstat (limited to 'src/theory/uf/equality_engine.h')
-rw-r--r--src/theory/uf/equality_engine.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/uf/equality_engine.h b/src/theory/uf/equality_engine.h
index 206fb61c7..6962f0c69 100644
--- a/src/theory/uf/equality_engine.h
+++ b/src/theory/uf/equality_engine.h
@@ -211,11 +211,6 @@ public:
}
};/* struct EqualityEngine::statistics */
- /**
- * Store the application lookup, with enough information to backtrack
- */
- void storeApplicationLookup(FunctionApplication& funNormalized, EqualityNodeId funId);
-
private:
/** The context we are using */
@@ -254,6 +249,11 @@ private:
/** Number of application lookups, for backtracking. */
context::CDO<DefaultSizeType> d_applicationLookupsCount;
+ /**
+ * Store the application lookup, with enough information to backtrack
+ */
+ void storeApplicationLookup(FunctionApplication& funNormalized, EqualityNodeId funId);
+
/** Map from ids to the nodes (these need to be nodes as we pick up the operators) */
std::vector<Node> d_nodes;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback