3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 09:48:05 +00:00

numeral helper functions

This commit is contained in:
Jakob Rath 2022-08-01 12:14:06 +02:00 committed by Nikolaj Bjorner
parent e31926d132
commit 6eae27ffad
6 changed files with 27 additions and 4 deletions

View file

@ -88,6 +88,8 @@ public:
void neg(mpf & o);
void neg(mpf const & x, mpf & o);
void swap(mpf& a, mpf& b) { a.swap(b); }
bool is_zero(mpf const & x);
bool is_neg(mpf const & x);