From e77ded9307cd64aaaa8fe79a28f9c715ece3794e Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Wed, 18 Jun 2014 00:10:38 -0400 Subject: [PATCH] Fix GLPK builds: correct access specifier on cut classes. --- src/theory/arith/cut_log.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/theory/arith/cut_log.h b/src/theory/arith/cut_log.h index bbd1b3694..237a4ce2b 100644 --- a/src/theory/arith/cut_log.h +++ b/src/theory/arith/cut_log.h @@ -126,10 +126,12 @@ public: std::ostream& operator<<(std::ostream& os, const CutInfo& ci); class BranchCutInfo : public CutInfo { +public: BranchCutInfo(int execOrd, int br, Kind dir, double val); }; class RowsDeleted : public CutInfo { +public: RowsDeleted(int execOrd, int nrows, const int num[]); }; -- 2.30.2