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

work on horner's heuristic

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-29 11:41:48 -07:00
parent 8670e09269
commit 1a7a537834
7 changed files with 183 additions and 46 deletions

View file

@ -149,8 +149,8 @@ bool basics::basic_sign_lemma(bool derived) {
return basic_sign_lemma_model_based();
std::unordered_set<unsigned> explored;
for (lpvar i : c().m_to_refine){
if (basic_sign_lemma_on_mon(i, explored))
for (lpvar j : c().m_to_refine){
if (basic_sign_lemma_on_mon(j, explored))
return true;
}
return false;