mirror of
https://github.com/Z3Prover/z3
synced 2025-07-20 11:22:04 +00:00
remove bit-vector dependencies in theory_str_mc. See discussion #4939
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e4cec19f03
commit
47cb1d1207
3 changed files with 19 additions and 19 deletions
|
@ -1037,8 +1037,8 @@ app* seq_decl_plugin::mk_char(unsigned u) {
|
|||
return m_manager->mk_const(f);
|
||||
}
|
||||
else {
|
||||
UNREACHABLE();
|
||||
return nullptr;
|
||||
bv_util bv(*m_manager);
|
||||
return bv.mk_numeral(rational(u), 8);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1124,6 +1124,7 @@ expr* seq_decl_plugin::get_some_value(sort* s) {
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
app* seq_util::mk_skolem(symbol const& name, unsigned n, expr* const* args, sort* range) {
|
||||
SASSERT(range);
|
||||
parameter param(name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue