Skip to content

Commit

Permalink
rlimit bump on a pure lemma in Quicksort.Base
Browse files Browse the repository at this point in the history
  • Loading branch information
nikswamy committed Feb 19, 2024
1 parent e54dc0d commit 248a967
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions share/pulse/examples/Quicksort.Base.fst
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ let transfer_larger_slice
assert (forall (k: int). l - shift <= k /\ k < r - shift ==> (lb <= Seq.index s k));
()

#push-options "--z3rlimit_factor 4 --split_queries no"
let transfer_smaller_slice
(s : Seq.seq int)
(shift : nat)
Expand All @@ -321,6 +322,7 @@ let transfer_smaller_slice
assert (forall (k: int). l - shift <= k /\ k < r - shift ==> (Seq.index s k <= rb));
()
#pop-options
#pop-options

let transfer_equal_slice
(s : Seq.seq int)
Expand Down

0 comments on commit 248a967

Please sign in to comment.