3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Remove select method

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-12 09:46:00 -08:00
parent a03a6e9bf6
commit d60f2db116
2 changed files with 0 additions and 16 deletions

View file

@ -251,13 +251,6 @@ namespace realclosure {
bool ge(numeral const & a, numeral const & b) { return !lt(a, b); }
bool ge(numeral const & a, mpq const & b) { return !lt(a, b); }
bool ge(numeral const & a, mpz const & b) { return !lt(a, b); }
/**
\brief Store in result a value in the interval (prev, next)
\pre lt(pre, next)
*/
void select(numeral const & prev, numeral const & next, numeral & result);
void display(std::ostream & out, numeral const & a) const;