3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +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

@ -4651,10 +4651,6 @@ namespace realclosure {
return compare(a.m_value, b.m_value);
}
void select(numeral const & prev, numeral const & next, numeral & result) {
// TODO
}
struct collect_algebraic_refs {
char_vector m_visited; // Set of visited algebraic extensions.
ptr_vector<algebraic> m_found; // vector/list of visited algebraic extensions.
@ -5129,11 +5125,6 @@ namespace realclosure {
return gt(a, _b);
}
void manager::select(numeral const & prev, numeral const & next, numeral & result) {
save_interval_ctx ctx(this);
m_imp->select(prev, next, result);
}
void manager::display(std::ostream & out, numeral const & a) const {
save_interval_ctx ctx(this);
m_imp->display(out, a);

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;