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