Skip to content

Commit dc799e0

Browse files
Assert replaced by unreachable
1 parent 1bd9efd commit dc799e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/solvers/prop/prop_conv.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ Author: Daniel Kroening, [email protected]
2222
/// determine whether a variable is in the final conflict
2323
bool prop_convt::is_in_conflict(literalt l) const
2424
{
25-
assert(false);
25+
UNREACHABLE;
2626
return false;
2727
}
2828

2929
void prop_convt::set_assumptions(const bvt &)
3030
{
31-
assert(false);
31+
UNREACHABLE;
3232
}
3333

3434
void prop_convt::set_frozen(const literalt)
3535
{
36-
assert(false);
36+
UNREACHABLE;
3737
}
3838

3939
void prop_convt::set_frozen(const bvt &bv)

0 commit comments

Comments
 (0)