3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 17:07:07 -07:00
parent f3b51db891
commit bf14444f7d

View file

@ -20,7 +20,7 @@ Author:
Revision History: Revision History:
--*/ --*/
#ifndef MPFF_H_ #pragma once
#include "util/id_gen.h" #include "util/id_gen.h"
#include "util/util.h" #include "util/util.h"
@ -439,6 +439,7 @@ public:
void to_mpz(mpff const & n, synch_mpz_manager & m, mpz & t); void to_mpz(mpff const & n, synch_mpz_manager & m, mpz & t);
#endif #endif
/** /**
\brief Convert n into a mpq numeral. \brief Convert n into a mpq numeral.
@ -446,14 +447,12 @@ public:
*/ */
void to_mpq(mpff const & n, unsynch_mpq_manager & m, mpq & t); void to_mpq(mpff const & n, unsynch_mpq_manager & m, mpq & t);
#pragma once
/** /**
\brief Convert n into a mpq numeral. \brief Convert n into a mpq numeral.
\remark if exponent(n) is too big, we may run out of memory. \remark if exponent(n) is too big, we may run out of memory.
*/ */
void to_mpq(mpff const & n, synch_mpq_manager & m, mpq & t); void to_mpq(mpff const & n, synch_mpq_manager & m, mpq & t);
#endif
/** /**
\brief Return n as an int64. \brief Return n as an int64.