summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlasdair2018-12-11 01:12:50 +0000
committerAlasdair2018-12-11 01:12:50 +0000
commitc0500a16891e57b2856e47a3c233cd0c1d247a70 (patch)
treec0ff320a30dc53904a697f6da31bc0611107ba39 /lib
parent5bc5f5dee8921f8d24260dae54177e00c291fcb1 (diff)
Fix most remaining tests on branch
Diffstat (limited to 'lib')
-rw-r--r--lib/flow.sail14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/flow.sail b/lib/flow.sail
index b9653828..5c182af2 100644
--- a/lib/flow.sail
+++ b/lib/flow.sail
@@ -44,18 +44,4 @@ overload operator < = {lt_int}
overload operator >= = {gteq_int}
overload operator > = {gt_int}
-$ifdef TEST
-
-val __flow_test : forall 'n 'm. (atom('n), atom('m)) -> unit
-
-function __flow_test (x, y) = {
- if lteq_atom(x, y) then {
- _prove(constraint('n <= 'm))
- } else {
- _prove(constraint('n > 'm))
- }
-}
-
-$endif
-
$endif