File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ BUILD_ENV = AUTO
55ifeq ($(BUILD_ENV ), MSVC )
66 # CXXFLAGS += /Wall /WX
77else
8- CXXFLAGS += -Wall -pedantic - Werror
8+ CXXFLAGS += -Wall -Werror - Wno - parentheses
99endif
1010
1111# Select optimisation or debug info
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ void satcheck_glucose_baset<T>::lcnf(const bvt &bv)
115115template <typename T>
116116propt::resultt satcheck_glucose_baset<T>::prop_solve()
117117{
118- assert (status!=ERROR);
118+ assert (status!=statust:: ERROR);
119119
120120 // We start counting at 1, thus there is one variable fewer.
121121 {
@@ -155,8 +155,8 @@ propt::resultt satcheck_glucose_baset<T>::prop_solve()
155155 messaget::status () <<
156156 " SAT checker: instance is SATISFIABLE" << eom;
157157 assert (solver->model .size ()!=0 );
158- status=SAT;
159- return P_SATISFIABLE;
158+ status=statust:: SAT;
159+ return resultt:: P_SATISFIABLE;
160160 }
161161 else
162162 {
@@ -166,8 +166,8 @@ propt::resultt satcheck_glucose_baset<T>::prop_solve()
166166 }
167167 }
168168
169- status=UNSAT;
170- return P_UNSATISFIABLE;
169+ status=statust:: UNSAT;
170+ return resultt:: P_UNSATISFIABLE;
171171}
172172
173173template <typename T>
You can’t perform that action at this time.
0 commit comments