We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4063203 commit 37b43c7Copy full SHA for 37b43c7
src/solvers/flattening/boolbv_equality.cpp
@@ -17,9 +17,9 @@ Author: Daniel Kroening, [email protected]
17
18
literalt boolbvt::convert_equality(const equal_exprt &expr)
19
{
20
- const bool is_base_type_eq = expr.lhs().type() == expr.rhs().type();
+ const bool equality_types_match = expr.lhs().type() == expr.rhs().type();
21
DATA_INVARIANT_WITH_DIAGNOSTICS(
22
- is_base_type_eq,
+ equality_types_match,
23
"types of expressions on each side of equality should match",
24
irep_pretty_diagnosticst{expr.lhs()},
25
irep_pretty_diagnosticst{expr.rhs()});
0 commit comments