mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
More FPA exponent/siginficand order consistency
This commit is contained in:
parent
1610e4fbd0
commit
de3cb7e5dc
6 changed files with 246 additions and 218 deletions
|
@ -286,9 +286,9 @@ public:
|
|||
expr * args[] = { rm, t };
|
||||
return m().mk_app(m_fid, OP_FPA_TO_FP, 2, s->get_parameters(), 2, args);
|
||||
}
|
||||
app * mk_to_fp(sort * s, expr * rm, expr * sig, expr * exp) {
|
||||
app * mk_to_fp(sort * s, expr * rm, expr * exp, expr * sig) {
|
||||
SASSERT(is_float(s) && s->get_num_parameters() == 2);
|
||||
expr * args[] = { rm, sig, exp };
|
||||
expr * args[] = { rm, exp, sig};
|
||||
return m().mk_app(m_fid, OP_FPA_TO_FP, 2, s->get_parameters(), 3, args);
|
||||
}
|
||||
app * mk_to_fp_unsigned(sort * s, expr * rm, expr * t) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue