summaryrefslogtreecommitdiff
path: root/src/proof/array_proof.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2019-11-15 17:52:15 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2019-11-15 17:52:15 -0800
commitf45bad0112192abb47cd350abdb5414e385c38b1 (patch)
tree527136b5b49a1b2600e5ac3d9c96790c496ce12a /src/proof/array_proof.h
parent585682fbc2b622bc62db80578b76adf52709c7c7 (diff)
Remove staticrmStatic
Diffstat (limited to 'src/proof/array_proof.h')
-rw-r--r--src/proof/array_proof.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/proof/array_proof.h b/src/proof/array_proof.h
index 372ad1f67..9660fbe50 100644
--- a/src/proof/array_proof.h
+++ b/src/proof/array_proof.h
@@ -82,7 +82,9 @@ protected:
theory::TheoryId getTheoryId() override;
public:
- ArrayProof(theory::arrays::TheoryArrays* arrays, TheoryProofEngine* proofEngine);
+ ArrayProof(Environment* env,
+ theory::arrays::TheoryArrays* arrays,
+ TheoryProofEngine* proofEngine);
std::string skolemToLiteral(Expr skolem);
@@ -91,9 +93,12 @@ protected:
class LFSCArrayProof : public ArrayProof {
public:
- LFSCArrayProof(theory::arrays::TheoryArrays* arrays, TheoryProofEngine* proofEngine)
- : ArrayProof(arrays, proofEngine)
- {}
+ LFSCArrayProof(Environment* env,
+ theory::arrays::TheoryArrays* arrays,
+ TheoryProofEngine* proofEngine)
+ : ArrayProof(env, arrays, proofEngine)
+ {
+ }
void printOwnedTerm(Expr term,
std::ostream& os,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback