Skip to content

Commit 78d4b51

Browse files
authored
Merge branch 'main' into gebner_phase1_matcher
2 parents eeabb76 + 279382b commit 78d4b51

14 files changed

+17
-17
lines changed

share/pulse/examples/dice/cbor/CBOR.Spec.Map.fst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ let rec list_sorted_append_chunk_elim
335335
end
336336
| _ :: l1' -> list_sorted_append_chunk_elim order l1' l2 l3
337337

338-
#push-options "--query_stats --fuel 2 --ifuel 1 --z3rlimit_factor 4 --split_queries no"
338+
#push-options "--fuel 2 --ifuel 1 --z3rlimit_factor 4 --split_queries no"
339339
#restart-solver
340340
let rec map_sort_merge_correct
341341
(#t1 #t2: Type)
@@ -465,7 +465,7 @@ let list_memP_map_forall
465465
= Classical.forall_intro (fun y -> List.Tot.memP_map_elim f y l);
466466
Classical.forall_intro (fun x -> List.Tot.memP_map_intro f x l)
467467

468-
#push-options "--z3rlimit_factor 6 --split_queries no --query_stats"
468+
#push-options "--z3rlimit_factor 6 --split_queries no"
469469

470470
#restart-solver
471471
let rec map_sort_correct

share/pulse/examples/dice/dpe/DPE.Messages.Parse.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ let parse_dpe_cmd_post
226226
)
227227

228228

229-
#push-options "--z3rlimit_factor 2 --fuel 2 --ifuel 1 --query_stats"
229+
#push-options "--z3rlimit_factor 2 --fuel 2 --ifuel 1"
230230
#restart-solver
231231
fn parse_dpe_cmd (#s:erased (Seq.seq U8.t))
232232
(#p:perm)

src/checker/Pulse.Checker.Abs.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ let close_ascription (c:comp_ascription) (nv:nvar) : comp_ascription =
435435
subst_ascription c [RT.ND (snd nv) 0]
436436

437437
module R = FStar.Reflection.V2
438-
#push-options "--z3rlimit_factor 20 --fuel 0 --ifuel 1 --split_queries no --query_stats"
438+
#push-options "--z3rlimit_factor 20 --fuel 0 --ifuel 1 --split_queries no"
439439
#restart-solver
440440
let rec check_abs_core
441441
(g:env)

src/checker/Pulse.Checker.Base.fst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,6 @@ let return_in_ctxt (g:env) (y:var) (y_ppname:ppname) (u:universe) (ty:term) (ctx
613613

614614
#push-options "--z3rlimit_factor 4 --ifuel 1 --split_queries always"
615615
#restart-solver
616-
#show-options
617616
let match_comp_res_with_post_hint (#g:env) (#t:st_term) (#c:comp_st)
618617
(d:st_typing g t c)
619618
(post_hint:post_hint_opt g)

src/checker/Pulse.Checker.Bind.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Metatheory = Pulse.Typing.Metatheory
3131
module Abs = Pulse.Checker.Abs
3232
module RU = Pulse.Reflection.Util
3333

34-
#push-options "--z3rlimit_factor 8 --split_queries no --query_stats --fuel 0 --ifuel 1"
34+
#push-options "--z3rlimit_factor 8 --split_queries no --fuel 0 --ifuel 1"
3535
let check_bind_fn
3636
(g:env)
3737
(ctxt:slprop)

src/checker/Pulse.Checker.Match.fst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ let lemma_map_opt_dec_index (top:'z) (f : (x:'a{x << top}) -> option 'b) (xs : l
139139
(ensures forall i. f (xs `L.index` i) == Some (ys `L.index` i))
140140
= Classical.forall_intro (Classical.move_requires (__lemma_map_opt_dec_index top f xs ys))
141141

142-
#push-options "--fuel 2 --ifuel 2 --z3rlimit_factor 2 --query_stats"
142+
#push-options "--fuel 2 --ifuel 2 --z3rlimit_factor 2"
143143
#restart-solver
144144
let rec elab_readback_pat_x (rp : R.pattern) (p : pattern)
145145
: Lemma (requires readback_pat rp == Some p)
@@ -538,7 +538,7 @@ let check_branches
538538
let brs = List.Tot.map dfst checked_brs in
539539
let d : brs_typing g sc_u sc_ty sc brs c0 = check_branches_aux2 g sc_u sc_ty sc c0 checked_brs in
540540
(| brs, c0, d |)
541-
#push-options "--fuel 0 --ifuel 1 --z3rlimit_factor 4 --query_stats"
541+
#push-options "--fuel 0 --ifuel 1 --z3rlimit_factor 4"
542542
let check
543543
(g:env)
544544
(pre:term)

src/checker/Pulse.Checker.Return.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ let compute_tot_or_ghost_term_type_and_u (g:env) (e:term) (c:option ctag)
6969
let (| c, e, d |) = check_effect d c in
7070
R c e u ty ud d
7171

72-
#push-options "--z3rlimit_factor 16 --fuel 0 --ifuel 1 --query_stats --split_queries no --log_queries"
72+
#push-options "--z3rlimit_factor 16 --fuel 0 --ifuel 1 --split_queries no"
7373
#restart-solver
7474
let check_core
7575
(g:env)

src/checker/Pulse.Checker.While.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let while_body_comp_typing (#g:env) (u:universe) (x:ppname) (ty:term) (inv_body:
3838
: Dv (comp_typing_u g (comp_while_body x inv_body))
3939
= Metatheory.admit_comp_typing g (comp_while_body x inv_body)
4040

41-
#push-options "--fuel 0 --ifuel 0 --z3rlimit_factor 8 --query_stats"
41+
#push-options "--fuel 0 --ifuel 0 --z3rlimit_factor 8"
4242
#restart-solver
4343
let check
4444
(g:env)

src/checker/Pulse.Checker.WithInv.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ let withinv_post (#g:env) (#p:term) (#i:term) (#post:term)
236236
let (| post, _, post_typing |) = normalize_slprop_welltyped g post post_typing in
237237
__withinv_post #g #p #i #post p_typing i_typing post_typing
238238

239-
#push-options "--fuel 0 --ifuel 0 --query_stats"
239+
#push-options "--fuel 0 --ifuel 0"
240240
#restart-solver
241241
let mk_post_hint g returns_inv i p (ph:post_hint_opt g) rng
242242
: T.Tac (q:post_hint_for_env g { PostHint? ph ==> q == PostHint?.v ph })

src/checker/Pulse.Checker.WithLocal.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ let with_local_pre_typing (#g:env) (#pre:term) (pre_typing:tot_typing g pre tm_s
4646
tm_slprop
4747
= admit()
4848

49-
#push-options "--z3rlimit_factor 10 --fuel 0 --ifuel 0 --query_stats"
49+
#push-options "--z3rlimit_factor 10 --fuel 0 --ifuel 0"
5050

5151
let head_range (t:st_term {Tm_WithLocal? t.term}) : range =
5252
let Tm_WithLocal { initializer } = t.term in

0 commit comments

Comments
 (0)