summaryrefslogtreecommitdiff
path: root/tests/hashmap/Hashmap.Clauses.fst
diff options
context:
space:
mode:
authorSon Ho2022-11-11 21:34:29 +0100
committerSon HO2022-11-14 14:21:04 +0100
commit6db835db88c4bcf0e00ce1a7a6bc396382b393c3 (patch)
tree3b2a9d46467cf313e3af641cd164e61af2a09541 /tests/hashmap/Hashmap.Clauses.fst
parentb191070501ceafdd49c999385c4410848249fe18 (diff)
Reorganize the project to prepare for new backends
Diffstat (limited to 'tests/hashmap/Hashmap.Clauses.fst')
-rw-r--r--tests/hashmap/Hashmap.Clauses.fst61
1 files changed, 0 insertions, 61 deletions
diff --git a/tests/hashmap/Hashmap.Clauses.fst b/tests/hashmap/Hashmap.Clauses.fst
deleted file mode 100644
index 4f3e37e9..00000000
--- a/tests/hashmap/Hashmap.Clauses.fst
+++ /dev/null
@@ -1,61 +0,0 @@
-(** [hashmap]: the decreases clauses *)
-module Hashmap.Clauses
-open Primitives
-open FStar.List.Tot
-open Hashmap.Types
-
-#set-options "--z3rlimit 50 --fuel 0 --ifuel 1"
-
-(** [hashmap::HashMap::allocate_slots]: decreases clause *)
-unfold
-let hash_map_allocate_slots_decreases (t : Type0) (slots : vec (list_t t))
- (n : usize) : nat = n
-
-(** [hashmap::HashMap::clear_slots]: decreases clause *)
-unfold
-let hash_map_clear_slots_decreases (t : Type0) (slots : vec (list_t t))
- (i : usize) : nat =
- if i < length slots then length slots - i else 0
-
-(** [hashmap::HashMap::insert_in_list]: decreases clause *)
-unfold
-let hash_map_insert_in_list_decreases (t : Type0) (key : usize) (value : t)
- (ls : list_t t) : list_t t =
- ls
-
-(** [hashmap::HashMap::move_elements_from_list]: decreases clause *)
-unfold
-let hash_map_move_elements_from_list_decreases (t : Type0)
- (ntable : hash_map_t t) (ls : list_t t) : list_t t =
- ls
-
-(** [hashmap::HashMap::move_elements]: decreases clause *)
-unfold
-let hash_map_move_elements_decreases (t : Type0) (ntable : hash_map_t t)
- (slots : vec (list_t t)) (i : usize) : nat =
- if i < length slots then length slots - i else 0
-
-(** [hashmap::HashMap::contains_key_in_list]: decreases clause *)
-unfold
-let hash_map_contains_key_in_list_decreases (t : Type0) (key : usize)
- (ls : list_t t) : list_t t =
- ls
-
-(** [hashmap::HashMap::get_in_list]: decreases clause *)
-unfold
-let hash_map_get_in_list_decreases (t : Type0) (key : usize) (ls : list_t t) :
- list_t t =
- ls
-
-(** [hashmap::HashMap::get_mut_in_list]: decreases clause *)
-unfold
-let hash_map_get_mut_in_list_decreases (t : Type0) (key : usize)
- (ls : list_t t) : list_t t =
- ls
-
-(** [hashmap::HashMap::remove_from_list]: decreases clause *)
-unfold
-let hash_map_remove_from_list_decreases (t : Type0) (key : usize)
- (ls : list_t t) : list_t t =
- ls
-