We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32bb577 commit 837b2fdCopy full SHA for 837b2fd
src/manthan.cpp
@@ -1858,13 +1858,6 @@ bool Manthan::get_counterexample(sample& ctx) {
1858
if (ret == l_True) {
1859
verb_print(2, COLYEL "[manthan] *** Counterexample found ***");
1860
ctx = cex_solver.get_model();
1861
- cout << "ctx: ";
1862
- for(auto v : ctx) {
1863
- if (v == l_Undef) cout << "U ";
1864
- else if (v == l_True) cout << "T ";
1865
- else cout << "F ";
1866
- }
1867
- cout << endl;
1868
compute_needs_repair(ctx);
1869
assert(!needs_repair.empty() && "If we found a counterexample, there must be something to repair!");
1870
return false;
0 commit comments