3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 21:16:02 +00:00

adding global lookahead variant to sls arith solver

This commit is contained in:
Nikolaj Bjorner 2025-01-09 16:47:33 -08:00
parent f9ce41bd2b
commit 847278fba8
6 changed files with 552 additions and 9 deletions

View file

@ -58,6 +58,7 @@ public:
static checked_int64 minus_one() { return ci(-1);}
int64_t get_int64() const { return m_value; }
double get_double() const { return (double)m_value; }
rational to_rational() const { return r64(m_value); }
checked_int64 abs() const {