package coq-core
The Coq Proof Assistant -- Core Binaries and Tools
Install
Dune Dependency
Authors
Maintainers
Sources
coq-8.19.2.tar.gz
md5=5d1187d5e44ed0163f76fb12dabf012e
sha512=91bc81530fa4f6498961583ad51eac5001f139881788b88e360a866ad8e2a6e2c5bce86d1a580ab4cd4782bf49d48318767df82471ce33ba3ac143e5569ad33c
doc/src/coq-core.kernel/conversion.ml.html
Source file conversion.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************) (* Created under Benjamin Werner account by Bruno Barras to implement a call-by-value conversion algorithm and a lazy reduction machine with sharing, Nov 1996 *) (* Addition of zeta-reduction (let-in contraction) by Hugo Herbelin, Oct 2000 *) (* Irreversibility of opacity by Bruno Barras *) (* Cleaning and lightening of the kernel by Bruno Barras, Nov 2001 *) (* Equal inductive types by Jacek Chrzaszcz as part of the module system, Aug 2002 *) open CErrors open Util open Names open Constr open Declarations open Environ open CClosure open Esubst let rec is_empty_stack = function [] -> true | Zupdate _::s -> is_empty_stack s | Zshift _::s -> is_empty_stack s | _ -> false (* Compute the lift to be performed on a term placed in a given stack *) let el_stack el stk = let n = List.fold_left (fun i z -> match z with Zshift n -> i+n | _ -> i) 0 stk in el_shft n el let compare_stack_shape stk1 stk2 = let rec compare_rec bal stk1 stk2 = match (stk1,stk2) with ([],[]) -> Int.equal bal 0 | ((Zupdate _|Zshift _)::s1, _) -> compare_rec bal s1 stk2 | (_, (Zupdate _|Zshift _)::s2) -> compare_rec bal stk1 s2 | (Zapp l1::s1, _) -> compare_rec (bal+Array.length l1) s1 stk2 | (_, Zapp l2::s2) -> compare_rec (bal-Array.length l2) stk1 s2 | (Zproj _::s1, Zproj _::s2) -> Int.equal bal 0 && compare_rec 0 s1 s2 | (ZcaseT(_c1,_,_,_,_,_)::s1, ZcaseT(_c2,_,_,_,_,_)::s2) -> Int.equal bal 0 (* && c1.ci_ind = c2.ci_ind *) && compare_rec 0 s1 s2 | (Zfix(_,a1)::s1, Zfix(_,a2)::s2) -> Int.equal bal 0 && compare_rec 0 a1 a2 && compare_rec 0 s1 s2 | Zprimitive(op1,_,rargs1, _kargs1)::s1, Zprimitive(op2,_,rargs2, _kargs2)::s2 -> bal=0 && op1=op2 && List.length rargs1=List.length rargs2 && compare_rec 0 s1 s2 | [], _ :: _ | (Zproj _ | ZcaseT _ | Zfix _ | Zprimitive _) :: _, _ -> false in compare_rec 0 stk1 stk2 type lft_fconstr = lift * fconstr type lft_constr_stack_elt = Zlapp of (lift * fconstr) array | Zlproj of Projection.Repr.t * lift | Zlfix of (lift * fconstr) * lft_constr_stack | Zlcase of case_info * lift * UVars.Instance.t * constr array * case_return * case_branch array * usubs | Zlprimitive of CPrimitives.t * pconstant * lft_fconstr list * lft_fconstr next_native_args and lft_constr_stack = lft_constr_stack_elt list let rec zlapp v = function Zlapp v2 :: s -> zlapp (Array.append v v2) s | s -> Zlapp v :: s (** Hand-unrolling of the map function to bypass the call to the generic array allocation. Type annotation is required to tell OCaml that the array does not contain floats. *) let map_lift (l : lift) (v : fconstr array) = match v with | [||] -> assert false | [|c0|] -> [|(l, c0)|] | [|c0; c1|] -> [|(l, c0); (l, c1)|] | [|c0; c1; c2|] -> [|(l, c0); (l, c1); (l, c2)|] | [|c0; c1; c2; c3|] -> [|(l, c0); (l, c1); (l, c2); (l, c3)|] | v -> Array.Fun1.map (fun l t -> (l, t)) l v let pure_stack lfts stk = let rec pure_rec lfts stk = match stk with [] -> (lfts,[]) | zi::s -> (match (zi,pure_rec lfts s) with (Zupdate _,lpstk) -> lpstk | (Zshift n,(l,pstk)) -> (el_shft n l, pstk) | (Zapp a, (l,pstk)) -> (l,zlapp (map_lift l a) pstk) | (Zproj (p,_), (l,pstk)) -> (l, Zlproj (p,l)::pstk) | (Zfix(fx,a),(l,pstk)) -> let (lfx,pa) = pure_rec l a in (l, Zlfix((lfx,fx),pa)::pstk) | (ZcaseT(ci,u,pms,p,br,e),(l,pstk)) -> (l,Zlcase(ci,l,u,pms,p,br,e)::pstk) | (Zprimitive(op,c,rargs,kargs),(l,pstk)) -> (l,Zlprimitive(op,c,List.map (fun t -> (l,t)) rargs, List.map (fun (k,t) -> (k,(l,t))) kargs)::pstk)) in snd (pure_rec lfts stk) (********************************************************************) (* Conversion *) (********************************************************************) (* Conversion utility functions *) (* functions of this type are called from the kernel *) type 'a kernel_conversion_function = env -> 'a -> 'a -> unit (* functions of this type can be called from outside the kernel *) type 'a extended_conversion_function = ?l2r:bool -> ?reds:TransparentState.t -> env -> ?evars:constr evar_handler -> 'a -> 'a -> unit exception NotConvertible (* Convertibility of sorts *) (* The sort cumulativity is Prop <= Set <= Type 1 <= ... <= Type i <= ... and this holds whatever Set is predicative or impredicative *) type conv_pb = | CONV | CUMUL type 'a universe_compare = { (* Might raise NotConvertible *) compare_sorts : env -> conv_pb -> Sorts.t -> Sorts.t -> 'a -> 'a; compare_instances: flex:bool -> UVars.Instance.t -> UVars.Instance.t -> 'a -> 'a; compare_cumul_instances : conv_pb -> UVars.Variance.t array -> UVars.Instance.t -> UVars.Instance.t -> 'a -> 'a; } type 'a universe_state = 'a * 'a universe_compare type 'b generic_conversion_function = 'b universe_state -> constr -> constr -> 'b type 'a infer_conversion_function = env -> 'a -> 'a -> Univ.Constraints.t let sort_cmp_universes env pb s0 s1 (u, check) = (check.compare_sorts env pb s0 s1 u, check) (* [flex] should be true for constants, false for inductive types and constructors. *) let convert_instances ~flex u u' (s, check) = (check.compare_instances ~flex u u' s, check) exception MustExpand let convert_instances_cumul pb var u u' (s, check) = (check.compare_cumul_instances pb var u u' s, check) let get_cumulativity_constraints cv_pb variance u u' = match cv_pb with | CONV -> UVars.enforce_eq_variance_instances variance u u' Sorts.QUConstraints.empty | CUMUL -> UVars.enforce_leq_variance_instances variance u u' Sorts.QUConstraints.empty let inductive_cumulativity_arguments (mind,ind) = mind.Declarations.mind_nparams + mind.Declarations.mind_packets.(ind).Declarations.mind_nrealargs let convert_inductives_gen cmp_instances cmp_cumul cv_pb (mind,ind) nargs u1 u2 s = match mind.Declarations.mind_variance with | None -> cmp_instances u1 u2 s | Some variances -> let num_param_arity = inductive_cumulativity_arguments (mind,ind) in if not (Int.equal num_param_arity nargs) then (* shortcut, not sure if worth doing, could use perf data *) if UVars.Instance.equal u1 u2 then s else raise MustExpand else cmp_cumul cv_pb variances u1 u2 s let convert_inductives cv_pb ind nargs u1 u2 (s, check) = convert_inductives_gen (check.compare_instances ~flex:false) check.compare_cumul_instances cv_pb ind nargs u1 u2 s, check let constructor_cumulativity_arguments (mind, ind, ctor) = mind.Declarations.mind_nparams + mind.Declarations.mind_packets.(ind).Declarations.mind_consnrealargs.(ctor - 1) let convert_constructors_gen cmp_instances cmp_cumul (mind, ind, cns) nargs u1 u2 s = match mind.Declarations.mind_variance with | None -> cmp_instances u1 u2 s | Some _ -> let num_cnstr_args = constructor_cumulativity_arguments (mind,ind,cns) in if not (Int.equal num_cnstr_args nargs) then if UVars.Instance.equal u1 u2 then s else raise MustExpand else (** By invariant, both constructors have a common supertype, so they are convertible _at that type_. *) (* NB: no variance for qualities *) let variance = Array.make (snd (UVars.Instance.length u1)) UVars.Variance.Irrelevant in cmp_cumul CONV variance u1 u2 s let convert_constructors ctor nargs u1 u2 (s, check) = convert_constructors_gen (check.compare_instances ~flex:false) check.compare_cumul_instances ctor nargs u1 u2 s, check let conv_table_key infos ~nargs k1 k2 cuniv = if k1 == k2 then cuniv else match k1, k2 with | ConstKey (cst, u), ConstKey (cst', u') when Constant.CanOrd.equal cst cst' -> if UVars.Instance.equal u u' then cuniv else if Int.equal nargs 1 && is_array_type (info_env infos) cst then cuniv else let flex = evaluable_constant cst (info_env infos) && RedFlags.red_set (info_flags infos) (RedFlags.fCONST cst) in convert_instances ~flex u u' cuniv | VarKey id, VarKey id' when Id.equal id id' -> cuniv | RelKey n, RelKey n' when Int.equal n n' -> cuniv | _ -> raise NotConvertible let same_args_size sk1 sk2 = let n = CClosure.stack_args_size sk1 in if Int.equal n (CClosure.stack_args_size sk2) then n else raise NotConvertible type conv_tab = { cnv_inf : clos_infos; lft_tab : clos_tab; rgt_tab : clos_tab; } (** Invariant: for any tl ∈ lft_tab and tr ∈ rgt_tab, there is no mutable memory location contained both in tl and in tr. *) (** The same heap separation invariant must hold for the fconstr arguments passed to each respective side of the conversion function below. *) let push_relevance infos r = { infos with cnv_inf = CClosure.push_relevance infos.cnv_inf r } let push_relevances infos nas = { infos with cnv_inf = CClosure.push_relevances infos.cnv_inf nas } let identity_of_ctx (ctx:Constr.rel_context) = Context.Rel.instance mkRel 0 ctx (* ind -> fun args => ind args *) let eta_expand_ind env (ind,u as pind) = let mib = Environ.lookup_mind (fst ind) env in let mip = mib.mind_packets.(snd ind) in let ctx = Vars.subst_instance_context u mip.mind_arity_ctxt in let args = identity_of_ctx ctx in let c = mkApp (mkIndU pind, args) in let c = Term.it_mkLambda_or_LetIn c ctx in inject c let eta_expand_constructor env ((ind,ctor),u as pctor) = let mib = Environ.lookup_mind (fst ind) env in let mip = mib.mind_packets.(snd ind) in let ctx = Vars.subst_instance_context u (fst mip.mind_nf_lc.(ctor-1)) in let args = identity_of_ctx ctx in let c = mkApp (mkConstructU pctor, args) in let c = Term.it_mkLambda_or_LetIn c ctx in inject c let esubst_of_rel_context_instance_list ctx u args e = let open Context.Rel.Declaration in let rec aux lft e args ctx = match ctx with | [] -> lft, e | LocalAssum _ :: ctx -> aux (lft + 1) (usubs_lift e) (usubs_lift args) ctx | LocalDef (_, c, _) :: ctx -> let c = Vars.subst_instance_constr u c in let c = mk_clos args c in aux lft (usubs_cons c e) (usubs_cons c args) ctx in aux 0 e args (List.rev ctx) let irr_flex infos = function | ConstKey (con,u) -> begin match Cmap_env.find_opt con (info_env infos).Environ.irr_constants with | None -> false | Some r -> is_irrelevant infos @@ UVars.subst_instance_relevance u r end | VarKey x -> is_irrelevant infos @@ Context.Named.Declaration.get_relevance (Environ.lookup_named x (info_env infos)) | RelKey x -> is_irrelevant infos @@ Context.Rel.Declaration.get_relevance (Environ.lookup_rel x (info_env infos)) let eq_universes (_,e1) (_,e2) u1 u2 = let subst e u = if UVars.Instance.is_empty e then u else UVars.subst_instance_instance e u in UVars.Instance.equal (subst e1 u1) (subst e2 u2) let rec compare_under e1 c1 e2 c2 = match Constr.kind c1, Constr.kind c2 with | Cast (c1, _, _), _ -> compare_under e1 c1 e2 c2 | _, Cast (c2, _, _) -> compare_under e1 c1 e2 c2 | Rel i, Rel j -> begin match Esubst.expand_rel i (fst e1) with | Inl _ -> false | Inr (k, _) -> begin match Esubst.expand_rel j (fst e2) with | Inl _ -> false | Inr (k', _) -> Int.equal k k' end end | Meta m1, Meta m2 -> Int.equal m1 m2 | Var id1, Var id2 -> Id.equal id1 id2 | Int i1, Int i2 -> Uint63.equal i1 i2 | Float f1, Float f2 -> Float64.equal f1 f2 | Sort s1, Sort s2 -> let subst_instance_sort u s = if UVars.Instance.is_empty u then s else UVars.subst_instance_sort u s in let s1 = subst_instance_sort (snd e1) s1 and s2 = subst_instance_sort (snd e2) s2 in Sorts.equal s1 s2 | Prod (_,t1,c1), Prod (_,t2,c2) -> compare_under e1 t1 e2 t2 && compare_under (usubs_lift e1) c1 (usubs_lift e2) c2 | Lambda (_,t1,c1), Lambda (_,t2,c2) -> compare_under e1 t1 e2 t2 && compare_under (usubs_lift e1) c1 (usubs_lift e2) c2 | LetIn (_,b1,_,c1), LetIn (_,b2,_,c2) -> (* don't care about types when bodies are equal *) compare_under e1 b1 e2 b2 && compare_under (usubs_lift e1) c1 (usubs_lift e2) c2 | App (c1, l1), App (c2, l2) -> let len = Array.length l1 in Int.equal len (Array.length l2) && compare_under e1 c1 e2 c2 && Array.equal_norefl (fun c1 c2 -> compare_under e1 c1 e2 c2) l1 l2 | Proj (p1,_,c1), Proj (p2,_,c2) -> Projection.CanOrd.equal p1 p2 && compare_under e1 c1 e2 c2 | Evar _, Evar _ -> false | Const (c1,u1), Const (c2,u2) -> (* The args length currently isn't used but may as well pass it. *) Constant.CanOrd.equal c1 c2 && eq_universes e1 e2 u1 u2 | Ind (c1,u1), Ind (c2,u2) -> Ind.CanOrd.equal c1 c2 && eq_universes e1 e2 u1 u2 | Construct (c1,u1), Construct (c2,u2) -> Construct.CanOrd.equal c1 c2 && eq_universes e1 e2 u1 u2 | Case _, Case _ | Fix _, Fix _ | CoFix _, CoFix _ -> false (* todo some other time *) | Array(_,t1,def1,ty1), Array(_,t2,def2,ty2) -> Array.equal_norefl (fun c1 c2 -> compare_under e1 c1 e2 c2) t1 t2 && compare_under e1 def1 e2 def2 && compare_under e1 ty1 e2 ty2 | (Rel _ | Meta _ | Var _ | Sort _ | Prod _ | Lambda _ | LetIn _ | App _ | Proj _ | Evar _ | Const _ | Ind _ | Construct _ | Case _ | Fix _ | CoFix _ | Int _ | Float _| Array _), _ -> false let rec fast_test lft1 term1 lft2 term2 = match fterm_of term1, fterm_of term2 with | FLIFT (i, term1), (FLIFT _ | FCLOS _) -> fast_test (el_shft i lft1) term1 lft2 term2 | FCLOS _, FLIFT (j, term2) -> fast_test lft1 term1 (el_shft j lft2) term2 | FCLOS (c1, (e1,u1)), FCLOS (c2, (e2,u2)) -> eq_lift lft1 lft2 && compare_under (e1, u1) c1 (e2, u2) c2 | _ -> false (* Conversion between [lft1]term1 and [lft2]term2 *) let rec ccnv cv_pb l2r infos lft1 lft2 term1 term2 cuniv = let fast = fast_test lft1 term1 lft2 term2 in if fast then cuniv else eqappr cv_pb l2r infos (lft1, (term1,[])) (lft2, (term2,[])) cuniv (* Conversion between [lft1](hd1 v1) and [lft2](hd2 v2) *) and eqappr cv_pb l2r infos (lft1,st1) (lft2,st2) cuniv = Control.check_for_interrupt (); (* First head reduce both terms *) let ninfos = infos_with_reds infos.cnv_inf RedFlags.betaiotazeta in let (hd1, v1 as appr1) = whd_stack ninfos infos.lft_tab (fst st1) (snd st1) in let (hd2, v2 as appr2) = whd_stack ninfos infos.rgt_tab (fst st2) (snd st2) in let appr1 = (lft1, appr1) and appr2 = (lft2, appr2) in (** We delay the computation of the lifts that apply to the head of the term with [el_stack] inside the branches where they are actually used. *) (** Irrelevant terms are guaranteed to be [FIrrelevant], except for [FFlex], [FRel] and [FLambda]. Those ones are handled specifically below. *) match (fterm_of hd1, fterm_of hd2) with (* case of leaves *) | (FAtom a1, FAtom a2) -> (match kind a1, kind a2 with | (Sort s1, Sort s2) -> if not (is_empty_stack v1 && is_empty_stack v2) then (* May happen because we convert application right to left *) raise NotConvertible; sort_cmp_universes (info_env infos.cnv_inf) cv_pb s1 s2 cuniv | (Meta n, Meta m) -> if Int.equal n m then convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | _ -> raise NotConvertible) | (FEvar (ev1, args1, env1, _), FEvar (ev2, args2, env2, _)) -> (* TODO: handle irrelevance *) if Evar.equal ev1 ev2 then let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = convert_stacks l2r infos lft1 lft2 v1 v2 cuniv in convert_list l2r infos el1 el2 (List.map (mk_clos env1) args1) (List.map (mk_clos env2) args2) cuniv else raise NotConvertible (* 2 index known to be bound to no constant *) | (FRel n, FRel m) -> let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let n = reloc_rel n el1 in let m = reloc_rel m el2 in let rn = Range.get (info_relevances infos.cnv_inf) (n - 1) in let rm = Range.get (info_relevances infos.cnv_inf) (m - 1) in if rn == Sorts.Irrelevant && rm == Sorts.Irrelevant then let v1 = CClosure.skip_irrelevant_stack infos.cnv_inf v2 in let v2 = CClosure.skip_irrelevant_stack infos.cnv_inf v2 in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else if Int.equal n m then convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible (* 2 constants, 2 local defined vars or 2 defined rels *) | (FFlex fl1, FFlex fl2) -> (try let nargs = same_args_size v1 v2 in let cuniv = conv_table_key infos.cnv_inf ~nargs fl1 fl2 cuniv in let () = if irr_flex infos.cnv_inf fl1 then raise NotConvertible (* trigger the fallback *) in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv with NotConvertible | UGraph.UniverseInconsistency _ -> let r1 = unfold_ref_with_args infos.cnv_inf infos.lft_tab fl1 v1 in let r2 = unfold_ref_with_args infos.cnv_inf infos.rgt_tab fl2 v2 in match r1, r2 with | None, None -> raise NotConvertible | Some t1, Some t2 -> (* else the oracle tells which constant is to be expanded *) let oracle = CClosure.oracle_of_infos infos.cnv_inf in if Conv_oracle.oracle_order UVars.out_punivs oracle l2r fl1 fl2 then eqappr cv_pb l2r infos (lft1, t1) appr2 cuniv else eqappr cv_pb l2r infos appr1 (lft2, t2) cuniv | Some (t1, v1), None -> let all = RedFlags.(red_add_transparent all (red_transparent (info_flags infos.cnv_inf))) in let t1 = whd_stack (infos_with_reds infos.cnv_inf all) infos.lft_tab t1 v1 in eqappr cv_pb l2r infos (lft1, t1) appr2 cuniv | None, Some (t2, v2) -> let all = RedFlags.(red_add_transparent all (red_transparent (info_flags infos.cnv_inf))) in let t2 = whd_stack (infos_with_reds infos.cnv_inf all) infos.rgt_tab t2 v2 in eqappr cv_pb l2r infos appr1 (lft2, t2) cuniv ) | (FProj (p1,r1,c1), FProj (p2, r2, c2)) -> (* Projections: prefer unfolding to first-order unification, which will happen naturally if the terms c1, c2 are not in constructor form *) (match unfold_projection infos.cnv_inf p1 r1 with | Some s1 -> eqappr cv_pb l2r infos (lft1, (c1, (s1 :: v1))) appr2 cuniv | None -> match unfold_projection infos.cnv_inf p2 r2 with | Some s2 -> eqappr cv_pb l2r infos appr1 (lft2, (c2, (s2 :: v2))) cuniv | None -> if Projection.Repr.CanOrd.equal (Projection.repr p1) (Projection.repr p2) && compare_stack_shape v1 v2 then let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let u1 = ccnv CONV l2r infos el1 el2 c1 c2 cuniv in convert_stacks l2r infos lft1 lft2 v1 v2 u1 else (* Two projections in WHNF: unfold *) raise NotConvertible) | (FProj (p1,r1,c1), t2) -> begin match unfold_projection infos.cnv_inf p1 r1 with | Some s1 -> eqappr cv_pb l2r infos (lft1, (c1, (s1 :: v1))) appr2 cuniv | None -> begin match t2 with | FFlex fl2 -> begin match unfold_ref_with_args infos.cnv_inf infos.rgt_tab fl2 v2 with | Some t2 -> eqappr cv_pb l2r infos appr1 (lft2, t2) cuniv | None -> raise NotConvertible end | _ -> raise NotConvertible end end | (t1, FProj (p2,r2,c2)) -> begin match unfold_projection infos.cnv_inf p2 r2 with | Some s2 -> eqappr cv_pb l2r infos appr1 (lft2, (c2, (s2 :: v2))) cuniv | None -> begin match t1 with | FFlex fl1 -> begin match unfold_ref_with_args infos.cnv_inf infos.lft_tab fl1 v1 with | Some t1 -> eqappr cv_pb l2r infos (lft1, t1) appr2 cuniv | None -> raise NotConvertible end | _ -> raise NotConvertible end end (* other constructors *) | (FLambda _, FLambda _) -> (* Inconsistency: we tolerate that v1, v2 contain shift and update but we throw them away *) if not (is_empty_stack v1 && is_empty_stack v2) then anomaly (Pp.str "conversion was given ill-typed terms (FLambda)."); let (x1,ty1,bd1) = destFLambda mk_clos hd1 in let (_,ty2,bd2) = destFLambda mk_clos hd2 in let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = ccnv CONV l2r infos el1 el2 ty1 ty2 cuniv in ccnv CONV l2r (push_relevance infos x1) (el_lift el1) (el_lift el2) bd1 bd2 cuniv | (FProd (x1, c1, c2, e), FProd (_, c'1, c'2, e')) -> if not (is_empty_stack v1 && is_empty_stack v2) then (* May happen because we convert application right to left *) raise NotConvertible; (* Luo's system *) let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = ccnv CONV l2r infos el1 el2 c1 c'1 cuniv in let x1 = usubst_binder e x1 in ccnv cv_pb l2r (push_relevance infos x1) (el_lift el1) (el_lift el2) (mk_clos (usubs_lift e) c2) (mk_clos (usubs_lift e') c'2) cuniv (* Eta-expansion on the fly *) | (FLambda _, _) -> let () = match v1 with | [] -> () | _ -> anomaly (Pp.str "conversion was given unreduced term (FLambda).") in let (x1,_ty1,bd1) = destFLambda mk_clos hd1 in let infos = push_relevance infos x1 in eqappr CONV l2r infos (el_lift lft1, (bd1, [])) (el_lift lft2, (hd2, eta_expand_stack infos.cnv_inf x1 v2)) cuniv | (_, FLambda _) -> let () = match v2 with | [] -> () | _ -> anomaly (Pp.str "conversion was given unreduced term (FLambda).") in let (x2,_ty2,bd2) = destFLambda mk_clos hd2 in let infos = push_relevance infos x2 in eqappr CONV l2r infos (el_lift lft1, (hd1, eta_expand_stack infos.cnv_inf x2 v1)) (el_lift lft2, (bd2, [])) cuniv (* only one constant, defined var or defined rel *) | (FFlex fl1, c2) -> begin match unfold_ref_with_args infos.cnv_inf infos.lft_tab fl1 v1 with | Some (def1,v1) -> (** By virtue of the previous case analyses, we know [c2] is rigid. Conversion check to rigid terms eventually implies full weak-head reduction, so instead of repeatedly performing small-step unfoldings, we perform reduction with all flags on. *) let all = RedFlags.(red_add_transparent all (red_transparent (info_flags infos.cnv_inf))) in let r1 = whd_stack (infos_with_reds infos.cnv_inf all) infos.lft_tab def1 v1 in eqappr cv_pb l2r infos (lft1, r1) appr2 cuniv | None -> (match c2 with | FConstruct ((ind2,_j2),u2) -> (try let v2, v1 = eta_expand_ind_stack (info_env infos.cnv_inf) (ind2,u2) hd2 v2 (snd appr1) in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv with Not_found -> raise NotConvertible) | _ -> raise NotConvertible) end | (c1, FFlex fl2) -> begin match unfold_ref_with_args infos.cnv_inf infos.rgt_tab fl2 v2 with | Some (def2, v2) -> (** Symmetrical case of above. *) let all = RedFlags.(red_add_transparent all (red_transparent (info_flags infos.cnv_inf))) in let r2 = whd_stack (infos_with_reds infos.cnv_inf all) infos.rgt_tab def2 v2 in eqappr cv_pb l2r infos appr1 (lft2, r2) cuniv | None -> match c1 with | FConstruct ((ind1,_j1),u1) -> (try let v1, v2 = eta_expand_ind_stack (info_env infos.cnv_inf) (ind1,u1) hd1 v1 (snd appr2) in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv with Not_found -> raise NotConvertible) | _ -> raise NotConvertible end (* Inductive types: MutInd MutConstruct Fix Cofix *) | (FInd (ind1,u1 as pind1), FInd (ind2,u2 as pind2)) -> if Ind.CanOrd.equal ind1 ind2 then if UVars.Instance.is_empty u1 || UVars.Instance.is_empty u2 then let cuniv = convert_instances ~flex:false u1 u2 cuniv in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else let mind = Environ.lookup_mind (fst ind1) (info_env infos.cnv_inf) in let nargs = same_args_size v1 v2 in match convert_inductives cv_pb (mind, snd ind1) nargs u1 u2 cuniv with | cuniv -> convert_stacks l2r infos lft1 lft2 v1 v2 cuniv | exception MustExpand -> let env = info_env infos.cnv_inf in let hd1 = eta_expand_ind env pind1 in let hd2 = eta_expand_ind env pind2 in eqappr cv_pb l2r infos (lft1,(hd1,v1)) (lft2,(hd2,v2)) cuniv else raise NotConvertible | (FConstruct ((ind1,j1),u1 as pctor1), FConstruct ((ind2,j2),u2 as pctor2)) -> if Int.equal j1 j2 && Ind.CanOrd.equal ind1 ind2 then if UVars.Instance.is_empty u1 || UVars.Instance.is_empty u2 then let cuniv = convert_instances ~flex:false u1 u2 cuniv in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else let mind = Environ.lookup_mind (fst ind1) (info_env infos.cnv_inf) in let nargs = same_args_size v1 v2 in match convert_constructors (mind, snd ind1, j1) nargs u1 u2 cuniv with | cuniv -> convert_stacks l2r infos lft1 lft2 v1 v2 cuniv | exception MustExpand -> let env = info_env infos.cnv_inf in let hd1 = eta_expand_constructor env pctor1 in let hd2 = eta_expand_constructor env pctor2 in eqappr cv_pb l2r infos (lft1,(hd1,v1)) (lft2,(hd2,v2)) cuniv else raise NotConvertible (* Eta expansion of records *) | (FConstruct ((ind1,_j1),u1), _) -> (try let v1, v2 = eta_expand_ind_stack (info_env infos.cnv_inf) (ind1,u1) hd1 v1 (snd appr2) in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv with Not_found -> raise NotConvertible) | (_, FConstruct ((ind2,_j2),u2)) -> (try let v2, v1 = eta_expand_ind_stack (info_env infos.cnv_inf) (ind2,u2) hd2 v2 (snd appr1) in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv with Not_found -> raise NotConvertible) | (FFix (((op1, i1),(na1,tys1,cl1)),e1), FFix(((op2, i2),(_,tys2,cl2)),e2)) -> if Int.equal i1 i2 && Array.equal Int.equal op1 op2 then let n = Array.length cl1 in let fty1 = Array.map (mk_clos e1) tys1 in let fty2 = Array.map (mk_clos e2) tys2 in let fcl1 = Array.map (mk_clos (usubs_liftn n e1)) cl1 in let fcl2 = Array.map (mk_clos (usubs_liftn n e2)) cl2 in let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = convert_vect l2r infos el1 el2 fty1 fty2 cuniv in let cuniv = let na1 = Array.map (usubst_binder e1) na1 in let infos = push_relevances infos na1 in convert_vect l2r infos (el_liftn n el1) (el_liftn n el2) fcl1 fcl2 cuniv in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | (FCoFix ((op1,(na1,tys1,cl1)),e1), FCoFix((op2,(_,tys2,cl2)),e2)) -> if Int.equal op1 op2 then let n = Array.length cl1 in let fty1 = Array.map (mk_clos e1) tys1 in let fty2 = Array.map (mk_clos e2) tys2 in let fcl1 = Array.map (mk_clos (usubs_liftn n e1)) cl1 in let fcl2 = Array.map (mk_clos (usubs_liftn n e2)) cl2 in let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = convert_vect l2r infos el1 el2 fty1 fty2 cuniv in let cuniv = let na1 = Array.map (usubst_binder e1) na1 in let infos = push_relevances infos na1 in convert_vect l2r infos (el_liftn n el1) (el_liftn n el2) fcl1 fcl2 cuniv in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | FInt i1, FInt i2 -> if Uint63.equal i1 i2 then convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | FFloat f1, FFloat f2 -> if Float64.equal f1 f2 then convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | FCaseInvert (ci1,u1,pms1,p1,_,_,br1,e1), FCaseInvert (ci2,u2,pms2,p2,_,_,br2,e2) -> (if not (Ind.CanOrd.equal ci1.ci_ind ci2.ci_ind) then raise NotConvertible); let el1 = el_stack lft1 v1 and el2 = el_stack lft2 v2 in let fold c1 c2 cuniv = ccnv CONV l2r infos el1 el2 c1 c2 cuniv in (** FIXME: cache the presence of let-bindings in the case_info *) let mind = Environ.lookup_mind (fst ci1.ci_ind) (info_env infos.cnv_inf) in let mip = mind.Declarations.mind_packets.(snd ci1.ci_ind) in let cuniv = let ind = (mind,snd ci1.ci_ind) in let nargs = inductive_cumulativity_arguments ind in let u1 = CClosure.usubst_instance e1 u1 in let u2 = CClosure.usubst_instance e2 u2 in convert_inductives CONV ind nargs u1 u2 cuniv in let pms1 = mk_clos_vect e1 pms1 in let pms2 = mk_clos_vect e2 pms2 in let cuniv = Array.fold_right2 fold pms1 pms2 cuniv in let cuniv = convert_return_clause mind mip l2r infos e1 e2 el1 el2 u1 u2 pms1 pms2 p1 p2 cuniv in convert_branches mind mip l2r infos e1 e2 el1 el2 u1 u2 pms1 pms2 br1 br2 cuniv | FArray (u1,t1,ty1), FArray (u2,t2,ty2) -> let len = Parray.length_int t1 in if not (Int.equal len (Parray.length_int t2)) then raise NotConvertible; let cuniv = convert_instances_cumul CONV [|UVars.Variance.Irrelevant|] u1 u2 cuniv in let el1 = el_stack lft1 v1 in let el2 = el_stack lft2 v2 in let cuniv = ccnv CONV l2r infos el1 el2 ty1 ty2 cuniv in let cuniv = Parray.fold_left2 (fun u v1 v2 -> ccnv CONV l2r infos el1 el2 v1 v2 u) cuniv t1 t2 in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv | (FRel n1, FIrrelevant) -> let n1 = reloc_rel n1 (el_stack lft1 v1) in let r1 = Range.get (info_relevances infos.cnv_inf) (n1 - 1) in if r1 == Sorts.Irrelevant then let v1 = CClosure.skip_irrelevant_stack infos.cnv_inf v1 in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | (FIrrelevant, FRel n2) -> let n2 = reloc_rel n2 (el_stack lft2 v2) in let r2 = Range.get (info_relevances infos.cnv_inf) (n2 - 1) in if r2 == Sorts.Irrelevant then let v2 = CClosure.skip_irrelevant_stack infos.cnv_inf v2 in convert_stacks l2r infos lft1 lft2 v1 v2 cuniv else raise NotConvertible | FIrrelevant, FIrrelevant -> convert_stacks l2r infos lft1 lft2 v1 v2 cuniv (* Should not happen because both (hd1,v1) and (hd2,v2) are in whnf *) | ( (FLetIn _, _) | (FCaseT _,_) | (FApp _,_) | (FCLOS _,_) | (FLIFT _,_) | (_, FLetIn _) | (_,FCaseT _) | (_,FApp _) | (_,FCLOS _) | (_,FLIFT _) | (FLOCKED,_) | (_,FLOCKED) ) -> assert false | (FRel _ | FAtom _ | FInd _ | FFix _ | FCoFix _ | FCaseInvert _ | FProd _ | FEvar _ | FInt _ | FFloat _ | FArray _ | FIrrelevant), _ -> raise NotConvertible and convert_stacks l2r infos lft1 lft2 stk1 stk2 cuniv = let f (l1, t1) (l2, t2) cuniv = ccnv CONV l2r infos l1 l2 t1 t2 cuniv in let rec cmp_rec pstk1 pstk2 cuniv = match (pstk1,pstk2) with | (z1::s1, z2::s2) -> let cu1 = cmp_rec s1 s2 cuniv in (match (z1,z2) with | (Zlapp a1,Zlapp a2) -> Array.fold_right2 f a1 a2 cu1 | (Zlproj (c1,_l1),Zlproj (c2,_l2)) -> if not (Projection.Repr.CanOrd.equal c1 c2) then raise NotConvertible else cu1 | (Zlfix(fx1,a1),Zlfix(fx2,a2)) -> let cu2 = f fx1 fx2 cu1 in cmp_rec a1 a2 cu2 | (Zlcase(ci1,l1,u1,pms1,p1,br1,e1),Zlcase(ci2,l2,u2,pms2,p2,br2,e2)) -> if not (Ind.CanOrd.equal ci1.ci_ind ci2.ci_ind) then raise NotConvertible; let cu = cu1 in (** FIXME: cache the presence of let-bindings in the case_info *) let mind = Environ.lookup_mind (fst ci1.ci_ind) (info_env infos.cnv_inf) in let mip = mind.Declarations.mind_packets.(snd ci1.ci_ind) in let cu = if UVars.Instance.is_empty u1 || UVars.Instance.is_empty u2 then convert_instances ~flex:false u1 u2 cu else let u1 = CClosure.usubst_instance e1 u1 in let u2 = CClosure.usubst_instance e2 u2 in match mind.Declarations.mind_variance with | None -> convert_instances ~flex:false u1 u2 cu | Some variances -> convert_instances_cumul CONV variances u1 u2 cu in let pms1 = mk_clos_vect e1 pms1 in let pms2 = mk_clos_vect e2 pms2 in let fold_params c1 c2 accu = f (l1, c1) (l2, c2) accu in let cu = Array.fold_right2 fold_params pms1 pms2 cu in let cu = convert_return_clause mind mip l2r infos e1 e2 l1 l2 u1 u2 pms1 pms2 p1 p2 cu in convert_branches mind mip l2r infos e1 e2 l1 l2 u1 u2 pms1 pms2 br1 br2 cu | (Zlprimitive(op1,_,rargs1,kargs1),Zlprimitive(op2,_,rargs2,kargs2)) -> if not (CPrimitives.equal op1 op2) then raise NotConvertible else let cu2 = List.fold_right2 f rargs1 rargs2 cu1 in let fk (_,a1) (_,a2) cu = f a1 a2 cu in List.fold_right2 fk kargs1 kargs2 cu2 | ((Zlapp _ | Zlproj _ | Zlfix _| Zlcase _| Zlprimitive _), _) -> assert false) | _ -> cuniv in if compare_stack_shape stk1 stk2 then cmp_rec (pure_stack lft1 stk1) (pure_stack lft2 stk2) cuniv else raise NotConvertible and convert_vect l2r infos lft1 lft2 v1 v2 cuniv = let lv1 = Array.length v1 in let lv2 = Array.length v2 in if Int.equal lv1 lv2 then let rec fold n cuniv = if n >= lv1 then cuniv else let cuniv = ccnv CONV l2r infos lft1 lft2 v1.(n) v2.(n) cuniv in fold (n+1) cuniv in fold 0 cuniv else raise NotConvertible and convert_under_context l2r infos e1 e2 lft1 lft2 ctx (nas1, c1) (nas2, c2) cu = let n = Array.length nas1 in let () = assert (Int.equal n (Array.length nas2)) in let n, e1, e2 = match ctx with | None -> (* nolet *) let e1 = usubs_liftn n e1 in let e2 = usubs_liftn n e2 in (n, e1, e2) | Some (ctx, u1, u2, args1, args2) -> let n1, e1 = esubst_of_rel_context_instance_list ctx u1 args1 e1 in let n2, e2 = esubst_of_rel_context_instance_list ctx u2 args2 e2 in let () = assert (Int.equal n1 n2) in n1, e1, e2 in let lft1 = el_liftn n lft1 in let lft2 = el_liftn n lft2 in let infos = push_relevances infos (Array.map (usubst_binder e1) nas1) in ccnv CONV l2r infos lft1 lft2 (mk_clos e1 c1) (mk_clos e2 c2) cu and convert_return_clause mib mip l2r infos e1 e2 l1 l2 u1 u2 pms1 pms2 p1 p2 cu = let ctx = if Int.equal mip.mind_nrealargs mip.mind_nrealdecls then None else let ctx, _ = List.chop mip.mind_nrealdecls mip.mind_arity_ctxt in let pms1 = inductive_subst mib u1 pms1 in let pms2 = inductive_subst mib u1 pms2 in let open Context.Rel.Declaration in (* Add the inductive binder *) let dummy = mkProp in let ctx = LocalAssum (Context.anonR, dummy) :: ctx in Some (ctx, u1, u2, pms1, pms2) in convert_under_context l2r infos e1 e2 l1 l2 ctx (fst p1) (fst p2) cu and convert_branches mib mip l2r infos e1 e2 lft1 lft2 u1 u2 pms1 pms2 br1 br2 cuniv = let fold i (ctx, _) cuniv = let ctx = if Int.equal mip.mind_consnrealdecls.(i) mip.mind_consnrealargs.(i) then None else let ctx, _ = List.chop mip.mind_consnrealdecls.(i) ctx in let pms1 = inductive_subst mib u1 pms1 in let pms2 = inductive_subst mib u2 pms2 in Some (ctx, u1, u2, pms1, pms2) in let c1 = br1.(i) in let c2 = br2.(i) in convert_under_context l2r infos e1 e2 lft1 lft2 ctx c1 c2 cuniv in Array.fold_right_i fold mip.mind_nf_lc cuniv and convert_list l2r infos lft1 lft2 v1 v2 cuniv = match v1, v2 with | [], [] -> cuniv | c1 :: v1, c2 :: v2 -> let cuniv = ccnv CONV l2r infos lft1 lft2 c1 c2 cuniv in convert_list l2r infos lft1 lft2 v1 v2 cuniv | _, _ -> raise NotConvertible let clos_gen_conv trans cv_pb l2r evars env graph univs t1 t2 = NewProfile.profile "Conversion" (fun () -> let reds = RedFlags.red_add_transparent RedFlags.betaiotazeta trans in let infos = create_conv_infos ~univs:graph ~evars reds env in let infos = { cnv_inf = infos; lft_tab = create_tab (); rgt_tab = create_tab (); } in ccnv cv_pb l2r infos el_id el_id (inject t1) (inject t2) univs) () let check_eq univs u u' = if not (UGraph.check_eq_sort univs u u') then raise NotConvertible let check_leq univs u u' = if not (UGraph.check_leq_sort univs u u') then raise NotConvertible let check_sort_cmp_universes pb s0 s1 univs = match pb with | CUMUL -> check_leq univs s0 s1 | CONV -> check_eq univs s0 s1 let checked_sort_cmp_universes _env pb s0 s1 univs = check_sort_cmp_universes pb s0 s1 univs; univs let check_convert_instances ~flex:_ u u' univs = if UGraph.check_eq_instances univs u u' then univs else raise NotConvertible (* general conversion and inference functions *) let check_inductive_instances cv_pb variance u1 u2 univs = let qcsts, ucsts = get_cumulativity_constraints cv_pb variance u1 u2 in if Sorts.QConstraints.trivial qcsts && (UGraph.check_constraints ucsts univs) then univs else raise NotConvertible let checked_universes = { compare_sorts = checked_sort_cmp_universes; compare_instances = check_convert_instances; compare_cumul_instances = check_inductive_instances; } let () = let conv infos tab a b = try let univs = info_univs infos in let infos = { cnv_inf = infos; lft_tab = tab; rgt_tab = tab; } in let univs', _ = ccnv CONV false infos el_id el_id a b (univs, checked_universes) in assert (univs==univs'); true with NotConvertible -> false in CClosure.set_conv conv let gen_conv cv_pb ?(l2r=false) ?(reds=TransparentState.full) env ?(evars=default_evar_handler env) t1 t2 = let univs = Environ.universes env in let b = if cv_pb = CUMUL then leq_constr_univs univs t1 t2 else eq_constr_univs univs t1 t2 in if b then () else let _ = clos_gen_conv reds cv_pb l2r evars env univs (univs, checked_universes) t1 t2 in () let conv = gen_conv CONV let conv_leq = gen_conv CUMUL let generic_conv cv_pb ~l2r reds env ?(evars=default_evar_handler env) univs t1 t2 = let graph = Environ.universes env in let (s, _) = clos_gen_conv reds cv_pb l2r evars env graph univs t1 t2 in s let default_conv cv_pb env t1 t2 = gen_conv cv_pb env t1 t2 let default_conv_leq = default_conv CUMUL
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>