mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
port Grobner
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
4a87ca8b92
commit
69c89426da
|
@ -756,7 +756,7 @@ bool nla_grobner::push_calculation_forward(ptr_vector<equation>& eqs, unsigned &
|
|||
}
|
||||
|
||||
bool nla_grobner::try_to_modify_eqs(ptr_vector<equation>& eqs, unsigned& next_weight) {
|
||||
NOT_IMPLEMENTED_YET();
|
||||
// NOT_IMPLEMENTED_YET();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -2293,6 +2293,7 @@ template<typename Ext>
|
|||
bool theory_arith<Ext>::scan_for_linear(ptr_vector<grobner::equation>& eqs, grobner& gb) {
|
||||
bool result = false;
|
||||
if (m_params.m_nl_arith_gb_eqs) { // m_nl_arith_gb_eqs is false by default
|
||||
SASSERT(false);
|
||||
for (grobner::equation* eq : eqs) {
|
||||
if (!eq->is_linear_combination()) {
|
||||
TRACE("non_linear", tout << "processing new equality:\n"; gb.display_equation(tout, *eq););
|
||||
|
|
Loading…
Reference in a new issue