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

fixes for unicode

This commit is contained in:
Nikolaj Bjorner 2021-01-31 14:55:52 -08:00
parent 60cc9d8182
commit 6d99a8f0cc
3 changed files with 11 additions and 3 deletions

View file

@ -15,6 +15,7 @@ Author:
--*/
#include "ast/ast_ll_pp.h"
#include "smt/theory_char.h"
#include "smt/smt_context.h"
#include "smt/smt_model_generator.h"
@ -241,7 +242,7 @@ namespace smt {
enforce_ackerman(u, v);
return false;
}
if (c >= seq.max_char()) {
if (c > seq.max_char()) {
enforce_value_bound(v);
return false;
}