3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-11 03:33:35 +00:00

remove printouts

This commit is contained in:
Lev Nachmanson 2024-08-08 14:50:17 -10:00 committed by Lev Nachmanson
parent 518a8b2bdb
commit f7905a5d69

View file

@ -1838,7 +1838,6 @@ namespace nlsat {
//#linxi begin symmetry check
void symmetry_check() {
std::cout << "sym called\n";
unsigned arith_num = m_is_int.size();
if (arith_num > 10000)
return ;
@ -1923,7 +1922,6 @@ namespace nlsat {
}
//#linxi begin Variable Ordering Strategy
else if (m_linxi_variable_ordering_strategy > 0) {
std::cout << "m_linxi_variable_ordering_strategy=" << m_linxi_variable_ordering_strategy << "\n";
run_variable_ordering_strategy();
reordered = true;
}