summaryrefslogtreecommitdiff
path: root/tests/fstar-split/arrays/Arrays.Clauses.fst
diff options
context:
space:
mode:
authorSon Ho2024-03-08 16:13:19 +0100
committerSon Ho2024-03-08 16:13:19 +0100
commita4efda3fd27364316bd65f34bc3eac3fd2cbf87d (patch)
tree274d24c3931e5524401686cfb424c6b493a0a03e /tests/fstar-split/arrays/Arrays.Clauses.fst
parent78734dc530ee209b5a0946e82bf98b97e374bed0 (diff)
Remove the split test files for F*
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
-