mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
make use of uninterpreted_sort shorthand
Signed-off-by: Nikolaj Bjorner <nbjorner@hotmail.com>
This commit is contained in:
parent
562ed61a24
commit
4f02d380aa
|
@ -1089,12 +1089,11 @@ class env {
|
|||
}
|
||||
|
||||
z3::sort mk_sort(char const* s) {
|
||||
z3::symbol sym = symbol(s);
|
||||
return mk_sort(sym);
|
||||
return m_context.uninterpreted_sort(s);
|
||||
}
|
||||
|
||||
z3::sort mk_sort(z3::symbol& s) {
|
||||
return z3::sort(m_context, Z3_mk_uninterpreted_sort(m_context, s));
|
||||
return m_context.uninterpreted_sort(s);
|
||||
}
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue