diff options
| author | Alasdair Armstrong | 2018-04-11 14:33:46 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2018-04-11 14:33:46 +0100 |
| commit | 6286c2d026c4e707098fe52807d125b248e360fc (patch) | |
| tree | b29ab1e812c123b59f5e84df36b37dbcc41074d3 /lib/flow.sail | |
| parent | 1f8aafca4b8d57b4bd9fe29348c06894309d8841 (diff) | |
Fix neq_range in flow.sail
Diffstat (limited to 'lib/flow.sail')
| -rw-r--r-- | lib/flow.sail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/flow.sail b/lib/flow.sail index ad5f8760..ef213ada 100644 --- a/lib/flow.sail +++ b/lib/flow.sail @@ -30,7 +30,7 @@ val eq_int = {ocaml: "eq_int", lem: "eq", c: "eq_int"} : (int, int) -> bool val eq_bool = {ocaml: "eq_bool", lem: "eq", c: "eq_bool"} : (bool, bool) -> bool val neq_range = {lem: "neq"} : forall 'n 'm 'o 'p. (range('n, 'm), range('o, 'p)) -> bool -function neq_range (x, y) = not_bool(neq_range(x, y)) +function neq_range (x, y) = not_bool(eq_range(x, y)) val neq_int = {lem: "neq"} : (int, int) -> bool function neq_int (x, y) = not_bool(eq_int(x, y)) |
