mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
Fix typos. (#6291)
This commit is contained in:
parent
706f7fbdc7
commit
6ba9ada1e2
10 changed files with 24 additions and 24 deletions
|
@ -37,7 +37,7 @@ namespace smt {
|
|||
return;
|
||||
|
||||
SASSERT(is_fixed(v));
|
||||
// WARNINING: it is not safe to use get_value(v) here, since
|
||||
// WARNING: it is not safe to use get_value(v) here, since
|
||||
// get_value(v) may not satisfy v bounds at this point.
|
||||
if (!lower_bound(v).is_rational())
|
||||
return;
|
||||
|
|
|
@ -711,7 +711,7 @@ namespace smt {
|
|||
for (; it != end; ++it) {
|
||||
if (!it->is_dead()) {
|
||||
if (is_fixed(it->m_var)) {
|
||||
// WARNINING: it is not safe to use get_value(it->m_var) here, since
|
||||
// WARNING: it is not safe to use get_value(it->m_var) here, since
|
||||
// get_value(it->m_var) may not satisfy it->m_var bounds at this point.
|
||||
numeral aux = lcm_den * it->m_coeff;
|
||||
consts += aux * lower_bound(it->m_var).get_rational();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue