@@ -1638,8 +1638,6 @@ static std::pair<bool, std::vector<exprt>> check_axioms(
1638
1638
1639
1639
if (use_counter_example)
1640
1640
{
1641
- stream << " Adding counter-examples: " << eom;
1642
-
1643
1641
std::vector<exprt> lemmas;
1644
1642
1645
1643
for (const auto &v : violated)
@@ -1655,8 +1653,6 @@ static std::pair<bool, std::vector<exprt>> check_axioms(
1655
1653
binary_relation_exprt (from_integer (0 , val.type ()), ID_le, val));
1656
1654
replace_expr (axiom.univ_var (), val, bounds);
1657
1655
const implies_exprt counter (bounds, instance);
1658
-
1659
- stream << " - " << format (counter) << eom;
1660
1656
lemmas.push_back (counter);
1661
1657
}
1662
1658
@@ -1673,8 +1669,6 @@ static std::pair<bool, std::vector<exprt>> check_axioms(
1673
1669
indices.insert (std::pair<exprt, exprt>(comp_val, func_val));
1674
1670
const exprt counter=::instantiate_not_contains (
1675
1671
axiom, indices, generator)[0 ];
1676
-
1677
- stream << " - " << format (counter) << eom;
1678
1672
lemmas.push_back (counter);
1679
1673
}
1680
1674
return { false , lemmas };
0 commit comments