mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 16:38:45 +00:00
Corrected unspecified behavior of fp.min/fp.max corner cases in fpa2bv_converter and in theory_fpa.
Fixes #68
This commit is contained in:
parent
8a026c355f
commit
de39173f6f
7 changed files with 90 additions and 20 deletions
|
@ -84,6 +84,9 @@ namespace smt {
|
|||
virtual void mk_const(func_decl * f, expr_ref & result);
|
||||
virtual void mk_rm_const(func_decl * f, expr_ref & result);
|
||||
virtual void mk_uninterpreted_function(func_decl * f, unsigned num, expr * const * args, expr_ref & result);
|
||||
|
||||
virtual expr_ref mk_min_unspecified(func_decl * f, expr * x, expr * y);
|
||||
virtual expr_ref mk_max_unspecified(func_decl * f, expr * x, expr * y);
|
||||
};
|
||||
|
||||
class fpa_value_proc : public model_value_proc {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue