From: Morgan Deters Date: Thu, 7 Oct 2010 22:58:17 +0000 (+0000) Subject: oops, reverting a change to a regression test that had intentionally caused a typeche... X-Git-Tag: cvc5-1.0.0~8820 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8572eb7eddcd373acb73a1f2718cfd8d5c8c6a01;p=cvc5.git oops, reverting a change to a regression test that had intentionally caused a typechecking violation --- diff --git a/test/regress/regress0/simple-rdl-definefun.smt2 b/test/regress/regress0/simple-rdl-definefun.smt2 index c04a1ed64..08e99867a 100644 --- a/test/regress/regress0/simple-rdl-definefun.smt2 +++ b/test/regress/regress0/simple-rdl-definefun.smt2 @@ -7,7 +7,7 @@ (define-sort F (x) (A Real Real)) (declare-fun x2 () (F Real)) (define-fun minus ((x Real) (z Real)) Real (- x z)) -(define-fun less ((x Real) (z Real)) Real (< x z)) +(define-fun less ((x Real) (z Real)) Bool (< x z)) (define-fun foo ((x Real) (z Real)) Bool (less x z)) (assert (not (=> (foo (minus x y) 0) (less x y)))) (check-sat)