Skip to content

Commit 9082547

Browse files
simplify
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 26c34c9 commit 9082547

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/smt/theory_arith_nl.h

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,15 +1232,10 @@ namespace smt {
12321232
else if (ctx.e_internalized(m)) {
12331233
ADD_OCC(m);
12341234
}
1235-
else if (!ctx.e_internalized(m)) {
1235+
else {
12361236
ctx.internalize(m, false);
12371237
ADD_OCC(m);
12381238
}
1239-
else {
1240-
TRACE("non_linear", tout << mk_pp(m, get_manager()) << "\n";);
1241-
UNREACHABLE();
1242-
return;
1243-
}
12441239
}
12451240

12461241
// Update the number of occurrences in the result vector.

0 commit comments

Comments
 (0)