mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fixes for unicode
This commit is contained in:
parent
60cc9d8182
commit
6d99a8f0cc
3 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue