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 37a8720 commit f1cfdd8Copy full SHA for f1cfdd8
src/util/simplify_expr.cpp
@@ -30,6 +30,7 @@ Author: Daniel Kroening, [email protected]
30
// #define DEBUGX
31
32
#ifdef DEBUGX
33
+#include "format_expr.h"
34
#include <iostream>
35
#endif
36
@@ -2233,8 +2234,8 @@ bool simplify_exprt::simplify_node(exprt &expr)
2233
2234
2235
)
2236
{
- std::cout << "===== " << format(old) << "\n ---> " << format(expr)
2237
- << "\n";
+ std::cout << "===== " << old.id() << ": " << format(old) << '\n'
2238
+ << " ---> " << format(expr) << '\n';
2239
}
2240
2241
0 commit comments