From: Morgan Deters Date: Wed, 18 Jun 2014 04:10:38 +0000 (-0400) Subject: Fix GLPK builds: correct access specifier on cut classes. X-Git-Tag: cvc5-1.0.0~6770 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7bff213cbad334474b4db582d9965f7ef5ba9946;p=cvc5.git Fix GLPK builds: correct access specifier on cut classes. --- 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[]); };