mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 20:38:43 +00:00
Bugfix for the FPA theory. Thanks to codeplex user smccamant for reporting this one.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
88530c8b90
commit
bcfefdd8ee
|
@ -463,7 +463,8 @@ namespace smt {
|
|||
switch (k) {
|
||||
case OP_FPA_TO_UBV:
|
||||
case OP_FPA_TO_SBV:
|
||||
case OP_FPA_TO_REAL: {
|
||||
case OP_FPA_TO_REAL:
|
||||
case OP_FPA_TO_IEEE_BV: {
|
||||
expr_ref conv(m);
|
||||
conv = convert(term);
|
||||
assert_cnstr(m.mk_eq(term, conv));
|
||||
|
|
Loading…
Reference in a new issue