3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 09:20:22 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-06-01 20:37:43 -07:00
parent 45adfc6a66
commit ab3b387076
2 changed files with 15 additions and 11 deletions

View file

@ -34,11 +34,11 @@ namespace lp {
class int_gcd_test {
struct parity {
mpq m_parity;
mpq m_offset;
mpq m_modulo;
const row_strip<mpq>* m_row = nullptr;
parity(mpq const& p, mpq const& m, row_strip<mpq> const& r):
m_parity(p),
m_offset(p),
m_modulo(m),
m_row(&r)
{}