3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 03:31:23 +00:00

move to unicode as stand-alone theory

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-01-27 05:46:45 -08:00
parent ecba26beae
commit d0f1d8f59e
12 changed files with 115 additions and 58 deletions

View file

@ -93,3 +93,8 @@ app* char_decl_plugin::mk_char(unsigned u) {
expr* char_decl_plugin::get_some_value(sort* s) {
return mk_char(0);
}
app* char_decl_plugin::mk_le(expr* a, expr* b) {
expr* es[2] = { a, b};
return m_manager->mk_app(m_family_id, OP_CHAR_LE, 2, es);
}