mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
expose propagate created
This commit is contained in:
parent
e1ffaa7faf
commit
8ca023d541
12 changed files with 67 additions and 33 deletions
|
@ -87,12 +87,12 @@ zstring::zstring(char const* s) {
|
|||
|
||||
string_encoding zstring::get_encoding() {
|
||||
if (gparams::get_value("encoding") == "unicode")
|
||||
return unicode;
|
||||
return string_encoding::unicode;
|
||||
if (gparams::get_value("encoding") == "bmp")
|
||||
return bmp;
|
||||
return string_encoding::bmp;
|
||||
if (gparams::get_value("encoding") == "ascii")
|
||||
return ascii;
|
||||
return unicode;
|
||||
return string_encoding::ascii;
|
||||
return string_encoding::unicode;
|
||||
}
|
||||
|
||||
bool zstring::well_formed() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue