Skip to content

Commit 959f618

Browse files
committed
Do not silently ignore mod over floats - fail instead
1 parent cd9d007 commit 959f618

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/solvers/flattening/boolbv_mod.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ Function: boolbvt::convert_mod
2222

2323
bvt boolbvt::convert_mod(const mod_exprt &expr)
2424
{
25+
#if 0
26+
// TODO
2527
if(expr.type().id()==ID_floatbv)
2628
{
27-
// TODO
2829
}
30+
#endif
2931

3032
if(expr.type().id()!=ID_unsignedbv &&
3133
expr.type().id()!=ID_signedbv)

0 commit comments

Comments
 (0)