3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Fix some typos in identifiers. (#7118)

This commit is contained in:
Bruce Mitchener 2024-02-14 09:25:32 +07:00 committed by GitHub
parent dba2f788df
commit 155dfb10c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -99,7 +99,7 @@ namespace smt {
theory_var result = null_theory_var;
numeral range;
numeral new_range;
numeral small_range_thresold(1024);
numeral small_range_threshold(1024);
unsigned n = 0;
for (row const& row : m_rows) {
theory_var v = row.get_base_var();
@ -117,7 +117,7 @@ namespace smt {
numeral const & u = upper_bound(v).get_rational();
new_range = u;
new_range -= l;
if (new_range > small_range_thresold) {
if (new_range > small_range_threshold) {
//
}
else if (result == null_theory_var || new_range < range) {