summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2017-10-11 16:01:32 -0700
committerAina Niemetz <aina.niemetz@gmail.com>2017-10-11 16:01:32 -0700
commit435d9f0118914c634defa509e6c54a57c7b954ce (patch)
treee2aeb1b0d1af01d25db25ba3eb81d40a88f7395e /src/theory/arrays
parent11f94aea79325423fd1ea864729be8a76d7099c0 (diff)
Cleaning up ProofArray class. (#1208)
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/theory_arrays.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/theory/arrays/theory_arrays.cpp b/src/theory/arrays/theory_arrays.cpp
index 2f5a9a14f..a17f506de 100644
--- a/src/theory/arrays/theory_arrays.cpp
+++ b/src/theory/arrays/theory_arrays.cpp
@@ -2247,10 +2247,8 @@ void TheoryArrays::conflict(TNode a, TNode b) {
if (d_proofsEnabled) {
proof->debug_print("pf::array");
- proof_array = new ProofArray( proof );
- proof_array->setRowMergeTag(d_reasonRow);
- proof_array->setRow1MergeTag(d_reasonRow1);
- proof_array->setExtMergeTag(d_reasonExt);
+ proof_array = new ProofArray(proof, /*row=*/d_reasonRow,
+ /*row1=*/d_reasonRow1, /*ext=*/d_reasonExt);
}
d_out->conflict(d_conflictNode, proof_array);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback