update expected test

This commit is contained in:
Simon Cruanes 2022-02-14 11:20:59 -05:00
parent 98c30bf0cc
commit fb552ba8b2
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -2,10 +2,8 @@
(true := true)
(false := false)
(a := 5/3)
(_sk_lra__le0 := 5)
((to_real _sk_lra__le0) := 5)
((= 5 (to_real _sk_lra__le0)) := true)
(((to_real _sk_lra__le0) >= 5) := true)
(((to_real _sk_lra__le0) <= 5) := true)
((a <= 5/3) := true)
((a >= 5/3) := true))
((* 3 a) := 5)
(5 := 5)
((= (* 3 a) 5) := true)
((<= (* 3 a) 5) := true)
((>= (* 3 a) 5) := true))