Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump rlimits #43

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/pulse/core/PulseCore.Heap2.fst
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@ let lift_action_ghost
)
);
p
#pop-options

let ni_erased a : non_informative (erased a) = fun x -> reveal x
let ni_unit : non_informative unit = fun x -> reveal x
Expand Down Expand Up @@ -690,6 +691,7 @@ let ghost_share

let ni_squash #a : non_informative (squash a) = fun x -> reveal x

#push-options "--fuel 0 --ifuel 0 --z3rlimit_factor 8 --retry 3" // flaky
let ghost_gather
(#a:Type)
(#pcm:pcm a)
Expand All @@ -703,3 +705,4 @@ let ghost_gather
= lift_erased #_ #(ni_squash ) #None
(Ghost.hide <|
lift_action_ghost ni_squash (H.gather_action #a #pcm r v0 v1))
#pop-options
2 changes: 1 addition & 1 deletion src/checker/Pulse.Typing.LN.fst
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ let close_proof_hint_ln (ht:proof_hint_type) (v:var) (i:index)
| WILD
| SHOW_PROOF_STATE _ -> ()

#push-options "--query_stats --fuel 2 --ifuel 2 --z3rlimit_factor 4 --split_queries no"
#push-options "--query_stats --fuel 2 --ifuel 2 --z3rlimit_factor 8 --split_queries no"
let rec close_st_term_ln' (t:st_term) (x:var) (i:index)
: Lemma
(requires ln_st' t (i - 1))
Expand Down
Loading