File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ BUILD_ENV = AUTO
5
5
ifeq ($(BUILD_ENV ), MSVC )
6
6
# CXXFLAGS += /Wall /WX
7
7
else
8
- CXXFLAGS += -Wall -pedantic - Werror
8
+ CXXFLAGS += -Wall -Werror - Wno - parentheses
9
9
endif
10
10
11
11
# 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)
115
115
template <typename T>
116
116
propt::resultt satcheck_glucose_baset<T>::prop_solve()
117
117
{
118
- assert (status!=ERROR);
118
+ assert (status!=statust:: ERROR);
119
119
120
120
// We start counting at 1, thus there is one variable fewer.
121
121
{
@@ -155,8 +155,8 @@ propt::resultt satcheck_glucose_baset<T>::prop_solve()
155
155
messaget::status () <<
156
156
" SAT checker: instance is SATISFIABLE" << eom;
157
157
assert (solver->model .size ()!=0 );
158
- status=SAT;
159
- return P_SATISFIABLE;
158
+ status=statust:: SAT;
159
+ return resultt:: P_SATISFIABLE;
160
160
}
161
161
else
162
162
{
@@ -166,8 +166,8 @@ propt::resultt satcheck_glucose_baset<T>::prop_solve()
166
166
}
167
167
}
168
168
169
- status=UNSAT;
170
- return P_UNSATISFIABLE;
169
+ status=statust:: UNSAT;
170
+ return resultt:: P_UNSATISFIABLE;
171
171
}
172
172
173
173
template <typename T>
You can’t perform that action at this time.
0 commit comments