mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
rename
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
620204bbb4
commit
d0d06c288a
4 changed files with 13 additions and 8 deletions
|
@ -794,11 +794,11 @@ namespace arith {
|
|||
|
||||
lp::impq solver::get_ivalue(theory_var v) const {
|
||||
SASSERT(is_registered_var(v));
|
||||
return m_solver->get_ivalue(get_tv(v));
|
||||
return m_solver->get_tv_ivalue(get_tv(v));
|
||||
}
|
||||
|
||||
rational solver::get_value(theory_var v) const {
|
||||
return is_registered_var(v) ? m_solver->get_value(get_tv(v)) : rational::zero();
|
||||
return is_registered_var(v) ? m_solver->get_tv_value(get_tv(v)) : rational::zero();
|
||||
}
|
||||
|
||||
void solver::random_update() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue