summaryrefslogtreecommitdiff
path: root/tests/misc/BetreePolonius.fst
diff options
context:
space:
mode:
authorSon Ho2022-11-11 16:05:56 +0100
committerSon Ho2022-11-11 16:05:56 +0100
commitb6676f6dc3b1471317cce8e04e9cb7203168f75c (patch)
tree29954f1730a9bf2a4dfda30f32c7291383815a67 /tests/misc/BetreePolonius.fst
parent61740913f8af53f0c1054375482b980ccb12f089 (diff)
Make minor modifications to the tests and regenerate the .fst files
Diffstat (limited to 'tests/misc/BetreePolonius.fst')
-rw-r--r--tests/misc/BetreePolonius.fst41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/misc/BetreePolonius.fst b/tests/misc/BetreePolonius.fst
deleted file mode 100644
index 2bac07b6..00000000
--- a/tests/misc/BetreePolonius.fst
+++ /dev/null
@@ -1,41 +0,0 @@
-(** THIS FILE WAS AUTOMATICALLY GENERATED BY AENEAS *)
-(** [betree_polonius] *)
-module BetreePolonius
-open Primitives
-
-#set-options "--z3rlimit 50 --fuel 1 --ifuel 1"
-
-(** [betree_polonius::List] *)
-type list_t (t : Type0) =
-| ListCons : t -> list_t t -> list_t t
-| ListNil : list_t t
-
-(** [betree_polonius::get_list_at_x] *)
-let rec get_list_at_x_fwd (ls : list_t u32) (x : u32) : result (list_t u32) =
- begin match ls with
- | ListCons hd tl ->
- if hd = x
- then Return (ListCons hd tl)
- else
- begin match get_list_at_x_fwd tl x with
- | Fail -> Fail
- | Return l -> Return l
- end
- | ListNil -> Return ListNil
- end
-
-(** [betree_polonius::get_list_at_x] *)
-let rec get_list_at_x_back
- (ls : list_t u32) (x : u32) (ret : list_t u32) : result (list_t u32) =
- begin match ls with
- | ListCons hd tl ->
- if hd = x
- then Return ret
- else
- begin match get_list_at_x_back tl x ret with
- | Fail -> Fail
- | Return tl0 -> Return (ListCons hd tl0)
- end
- | ListNil -> Return ret
- end
-