3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

remove a test

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-04-16 14:06:49 -07:00
parent be5170fc3b
commit 14f00b3749
4 changed files with 1 additions and 72 deletions

View file

@ -2194,26 +2194,7 @@ bool core:: no_lemmas_hold() const {
return true;
}
void core::test_factorization(unsigned /*mon_index*/, unsigned /*number_of_factorizations*/) {
// vector<ineq> lemma;
// unsigned_vector vars = m_monomials[mon_index].vars();
// factorization_factory_imp fc(vars, // 0 is the index of "abcde"
// *this);
// std::cout << "factorizations = of "; print_monomial(m_monomials[mon_index], std::cout) << "\n";
// unsigned found_factorizations = 0;
// for (auto f : fc) {
// if (f.is_empty()) continue;
// found_factorizations ++;
// print_factorization(f, std::cout);
// std::cout << std::endl;
// }
// SASSERT(found_factorizations == number_of_factorizations);
}
lbool core:: test_check(
lbool core::test_check(
vector<lemma>& l) {
m_lar_solver.set_status(lp::lp_status::OPTIMAL);
return check(l);

View file

@ -354,8 +354,6 @@ struct core {
bool no_lemmas_hold() const;
void test_factorization(unsigned /*mon_index*/, unsigned /*number_of_factorizations*/);
lbool test_check(vector<lemma>& l);
}; // end of core
} // end of namespace nla