summaryrefslogtreecommitdiff
path: root/src/theory/arith/cut_log.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-09-04 12:51:02 -0500
committerGitHub <noreply@github.com>2019-09-04 12:51:02 -0500
commit054ed31cd3ff5a24322c465189879374dee0b1ca (patch)
tree5ca8fb44dcd725fde577b088ed45adfe3dbc1b7d /src/theory/arith/cut_log.h
parentad521125586f437693410dd78275044d0174a927 (diff)
Fixes related to destructing null (#3231)
Diffstat (limited to 'src/theory/arith/cut_log.h')
-rw-r--r--src/theory/arith/cut_log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/cut_log.h b/src/theory/arith/cut_log.h
index 44553a15b..a5a729f58 100644
--- a/src/theory/arith/cut_log.h
+++ b/src/theory/arith/cut_log.h
@@ -91,11 +91,11 @@ protected:
* the cut is stored in exact precision in d_exactPrecision.
* If the cut has not yet been proven, this is null.
*/
- DenseVector* d_exactPrecision;
+ std::unique_ptr<DenseVector> d_exactPrecision;
- ConstraintCPVec* d_explanation;
+ std::unique_ptr<ConstraintCPVec> d_explanation;
-public:
+ public:
CutInfo(CutInfoKlass kl, int cutid, int ordinal);
virtual ~CutInfo();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback