mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
bugfix to rational and working on adaptive sorting
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a554ebb835
commit
5965515385
3 changed files with 164 additions and 36 deletions
|
@ -104,7 +104,7 @@ public:
|
|||
}
|
||||
|
||||
bool is_int32() const {
|
||||
if (is_small()) return true;
|
||||
if (is_small() && is_int()) return true;
|
||||
// we don't assume that if it is small, then it is int32.
|
||||
if (!is_int64()) return false;
|
||||
int64 v = get_int64();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue