summaryrefslogtreecommitdiff
path: root/src/theory/uf/ho_extension.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-09-02 16:02:41 -0500
committerGitHub <noreply@github.com>2020-09-02 16:02:41 -0500
commit2d6d62b7bc0c15a44b38641a52ba389591ecc7f6 (patch)
treee11ae0a24c157cf01dbcf287727240b4e75b7b8a /src/theory/uf/ho_extension.h
parentdba70e10ef8ae0a991969cb7ca0cba2d0e9d9d4d (diff)
parent0f9fb31069d51e003a39b0e93f506324dec2bdac (diff)
Merge branch 'master' into fixCMSBuildPRfixCMSBuildPR
Diffstat (limited to 'src/theory/uf/ho_extension.h')
-rw-r--r--src/theory/uf/ho_extension.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/theory/uf/ho_extension.h b/src/theory/uf/ho_extension.h
index 25cb3623b..ceb8e9c12 100644
--- a/src/theory/uf/ho_extension.h
+++ b/src/theory/uf/ho_extension.h
@@ -21,6 +21,7 @@
#include "context/cdhashset.h"
#include "context/cdo.h"
#include "expr/node.h"
+#include "theory/theory_inference_manager.h"
#include "theory/theory_model.h"
#include "theory/theory_state.h"
@@ -51,7 +52,7 @@ class HoExtension
typedef context::CDHashMap<Node, Node, NodeHashFunction> NodeNodeMap;
public:
- HoExtension(TheoryUF& p, TheoryState& state);
+ HoExtension(TheoryState& state, TheoryInferenceManager& im);
/** expand definition
*
@@ -181,10 +182,10 @@ class HoExtension
private:
/** common constants */
Node d_true;
- /** the parent of this extension */
- TheoryUF& d_parent;
/** Reference to the state object */
TheoryState& d_state;
+ /** Reference to the inference manager */
+ TheoryInferenceManager& d_im;
/** extensionality has been applied to these disequalities */
NodeSet d_extensionality;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback