mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
ML example; or' is deprecated, changed to
||'
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
eb72afabfb
commit
0465ad3ce6
|
@ -168,7 +168,7 @@ let basic_tests ( ctx : context ) =
|
||||||
let inum = (get_numerator rn) in
|
let inum = (get_numerator rn) in
|
||||||
let iden = get_denominator rn in
|
let iden = get_denominator rn in
|
||||||
Printf.printf "Numerator: %s Denominator: %s\n" (Real.to_string inum) (Real.to_string iden) ;
|
Printf.printf "Numerator: %s Denominator: %s\n" (Real.to_string inum) (Real.to_string iden) ;
|
||||||
if ((Real.to_string inum) <> "42" or (Real.to_string iden) <> "43") then
|
if ((Real.to_string inum) <> "42" || (Real.to_string iden) <> "43") then
|
||||||
raise (TestFailedException "")
|
raise (TestFailedException "")
|
||||||
else
|
else
|
||||||
Printf.printf "Test passed.\n"
|
Printf.printf "Test passed.\n"
|
||||||
|
|
Loading…
Reference in a new issue