3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-01 15:50:40 +00:00

use tuned gcd to compute mult inverse

This commit is contained in:
Nikolaj Bjorner 2024-02-20 01:40:27 -08:00
parent 4391c90960
commit 7dc4ce8259
5 changed files with 125 additions and 11 deletions

View file

@ -40,6 +40,7 @@ namespace bv {
bool_vector m_fixed; // expr-id -> is Boolean fixed
mutable svector<digit_t> m_tmp, m_tmp2, m_tmp3, m_tmp4, m_zero, m_one, m_minus_one;
svector<digit_t> m_a, m_b, m_nextb, m_nexta, m_aux;
using bvval = sls_valuation;