summaryrefslogtreecommitdiff
path: root/tests/fstar-split/arrays/Arrays.Clauses.fst
diff options
context:
space:
mode:
authorSon HO2024-03-08 16:51:40 +0100
committerGitHub2024-03-08 16:51:40 +0100
commit169d011cbfa83d853d0148bbf6b946e6ccbe4c4c (patch)
treeed8953634d14313d5b7d6ad204343d64eb990baf /tests/fstar-split/arrays/Arrays.Clauses.fst
parentb604bb9935007a1f0e9c7f556f8196f0e14c85ce (diff)
parent873deb005b394aca3090497e6c21ab9f8c2676be (diff)
Merge pull request #83 from AeneasVerif/son/backs
Remove the option to split the forward/backward functions
Diffstat (limited to 'tests/fstar-split/arrays/Arrays.Clauses.fst')
-rw-r--r--tests/fstar-split/arrays/Arrays.Clauses.fst19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/fstar-split/arrays/Arrays.Clauses.fst b/tests/fstar-split/arrays/Arrays.Clauses.fst
deleted file mode 100644
index aca328c2..00000000
--- a/tests/fstar-split/arrays/Arrays.Clauses.fst
+++ /dev/null
@@ -1,19 +0,0 @@
-(** [arrays]: decreases clauses *)
-module Arrays.Clauses
-open Primitives
-open Arrays.Types
-open FStar.List.Tot
-
-#set-options "--z3rlimit 50 --fuel 1 --ifuel 1"
-
-(** [arrays::sum]: decreases clause *)
-unfold
-let sum_loop_decreases (s : slice u32) (sum : u32) (i : usize) : nat =
- if i < length s then length s - i else 0
-
-(** [arrays::sum2]: decreases clause *)
-unfold
-let sum2_loop_decreases (s : slice u32) (s2 : slice u32) (sum : u32)
- (i : usize) : nat =
- if i < length s then length s - i else 0
-