summaryrefslogtreecommitdiff
path: root/test/smt/lteq_int_antisym.unsat.sail
blob: 3c6dc028a25ee0f5148c6a6441411e44f8c9ca38 (plain)
1
2
3
4
5
6
7
8
default Order dec

$include <prelude.sail>

$property
function prop(x: int, y: int) -> bool = {
  if x <= y & y <= x then x == y else true
}