diff --git a/stage0/src/Init.lean b/stage0/src/Init.lean index 54741d4ed8..122d982a55 100644 --- a/stage0/src/Init.lean +++ b/stage0/src/Init.lean @@ -10,6 +10,7 @@ import Init.Core import Init.Control import Init.Data.Basic import Init.WF +import Init.WFTactics import Init.Data import Init.System import Init.Util diff --git a/stage0/src/Init/Data/Array/Basic.lean b/stage0/src/Init/Data/Array/Basic.lean index cd519d2dd3..fbb9e6bbbc 100644 --- a/stage0/src/Init/Data/Array/Basic.lean +++ b/stage0/src/Init/Data/Array/Basic.lean @@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude +import Init.WFTactics import Init.Data.Nat.Basic import Init.Data.Fin.Basic import Init.Data.UInt @@ -431,16 +432,16 @@ def contains [BEq α] (as : Array α) (a : α) : Bool := def elem [BEq α] (a : α) (as : Array α) : Bool := as.contains a --- TODO(Leo): justify termination using wf-rec, and use `swap` -partial def reverse (as : Array α) : Array α := +def reverse (as : Array α) : Array α := let n := as.size let mid := n / 2 let rec rev (as : Array α) (i : Nat) := - if i < mid then + if h : i < mid then rev (as.swap! i (n - i - 1)) (i+1) else as rev as 0 +termination_by measure fun ⟨_, _, mid, as, i⟩ => mid - i @[inline] def getEvenElems (as : Array α) : Array α := (·.2) <| as.foldl (init := (true, Array.empty)) fun (even, r) a => @@ -495,7 +496,7 @@ namespace Array -- TODO(Leo): cleanup @[specialize] -partial def isEqvAux (a b : Array α) (hsz : a.size = b.size) (p : α → α → Bool) (i : Nat) : Bool := +def isEqvAux (a b : Array α) (hsz : a.size = b.size) (p : α → α → Bool) (i : Nat) : Bool := if h : i < a.size then let aidx : Fin a.size := ⟨i, h⟩; let bidx : Fin b.size := ⟨i, hsz ▸ h⟩; @@ -504,6 +505,7 @@ partial def isEqvAux (a b : Array α) (hsz : a.size = b.size) (p : α → α → | false => false else true +termination_by measure fun ⟨_, a, _, _, _, i⟩ => a.size - i @[inline] def isEqv (a b : Array α) (p : α → α → Bool) : Bool := if h : a.size = b.size then @@ -601,32 +603,18 @@ end Array -- CLEANUP the following code namespace Array -partial def indexOfAux [BEq α] (a : Array α) (v : α) : Nat → Option (Fin a.size) +def indexOfAux [BEq α] (a : Array α) (v : α) : Nat → Option (Fin a.size) | i => if h : i < a.size then let idx : Fin a.size := ⟨i, h⟩; if a.get idx == v then some idx else indexOfAux a v (i+1) else none +termination_by measure fun ⟨_, _, a, _, i⟩ => a.size - i def indexOf? [BEq α] (a : Array α) (v : α) : Option (Fin a.size) := indexOfAux a v 0 -partial def eraseIdxAux : Nat → Array α → Array α - | i, a => - if h : i < a.size then - let idx : Fin a.size := ⟨i, h⟩; - let idx1 : Fin a.size := ⟨i - 1, by exact Nat.lt_of_le_of_lt (Nat.pred_le i) h⟩; - eraseIdxAux (i+1) (a.swap idx idx1) - else - a.pop - -def feraseIdx (a : Array α) (i : Fin a.size) : Array α := - eraseIdxAux (i.val + 1) a - -def eraseIdx (a : Array α) (i : Nat) : Array α := - if i < a.size then eraseIdxAux (i+1) a else a - @[simp] theorem size_swap (a : Array α) (i j : Fin a.size) : (a.swap i j).size = a.size := by show ((a.set i (a.get j)).set (size_set a i _ ▸ j) (a.get i)).size = a.size rw [size_set, size_set] @@ -634,13 +622,25 @@ def eraseIdx (a : Array α) (i : Nat) : Array α := @[simp] theorem size_pop (a : Array α) : a.pop.size = a.size - 1 := List.length_dropLast .. -section -/- Instance for justifying `partial` declaration. - We should be able to delete it as soon as we restore support for well-founded recursion. -/ -instance eraseIdxSzAuxInstance (a : Array α) : Inhabited { r : Array α // r.size = a.size - 1 } where - default := ⟨a.pop, size_pop a⟩ +def eraseIdxAux : Nat → Array α → Array α + | i, a => + if h : i < a.size then + let idx : Fin a.size := ⟨i, h⟩; + let idx1 : Fin a.size := ⟨i - 1, by exact Nat.lt_of_le_of_lt (Nat.pred_le i) h⟩; + let a' := a.swap idx idx1 + have : a'.size - (i+1) < a.size - i := by rw [size_swap]; apply Nat.sub_succ_lt_self; assumption + eraseIdxAux (i+1) a' + else + a.pop +termination_by measure fun ⟨_, i, a⟩ => a.size - i -partial def eraseIdxSzAux (a : Array α) : ∀ (i : Nat) (r : Array α), r.size = a.size → { r : Array α // r.size = a.size - 1 } +def feraseIdx (a : Array α) (i : Fin a.size) : Array α := + eraseIdxAux (i.val + 1) a + +def eraseIdx (a : Array α) (i : Nat) : Array α := + if i < a.size then eraseIdxAux (i+1) a else a + +def eraseIdxSzAux (a : Array α) : ∀ (i : Nat) (r : Array α), r.size = a.size → { r : Array α // r.size = a.size - 1 } | i, r, heq => if h : i < r.size then let idx : Fin r.size := ⟨i, h⟩; @@ -648,7 +648,7 @@ partial def eraseIdxSzAux (a : Array α) : ∀ (i : Nat) (r : Array α), r.size eraseIdxSzAux a (i+1) (r.swap idx idx1) ((size_swap r idx idx1).trans heq) else ⟨r.pop, (size_pop r).trans (heq ▸ rfl)⟩ -end +termination_by measure fun ⟨_, _, i, r, _⟩ => r.size - i def eraseIdx' (a : Array α) (i : Fin a.size) : { r : Array α // r.size = a.size - 1 } := eraseIdxSzAux a (i.val + 1) a rfl @@ -658,12 +658,14 @@ def erase [BEq α] (as : Array α) (a : α) : Array α := | none => as | some i => as.feraseIdx i -partial def insertAtAux (i : Nat) : Array α → Nat → Array α +def insertAtAux (i : Nat) : Array α → Nat → Array α | as, j => - if i == j then as - else + if h : i < j then let as := as.swap! (j-1) j; insertAtAux i as (j-1) + else + as +termination_by measure fun ⟨_, _, _, j⟩ => j /-- Insert element `a` at position `i`. @@ -722,7 +724,7 @@ theorem toArrayLit_eq (a : Array α) (n : Nat) (hsz : a.size = n) : a = toArrayL Then using Array.extLit, we have that a = List.toArray <| toListLitAux a n hsz n _ [] -/ -partial def isPrefixOfAux [BEq α] (as bs : Array α) (hle : as.size ≤ bs.size) : Nat → Bool +def isPrefixOfAux [BEq α] (as bs : Array α) (hle : as.size ≤ bs.size) : Nat → Bool | i => if h : i < as.size then let a := as.get ⟨i, h⟩; @@ -733,6 +735,7 @@ partial def isPrefixOfAux [BEq α] (as bs : Array α) (hle : as.size ≤ bs.size false else true +termination_by measure fun ⟨_, _, as, _, _, i⟩ => as.size - i /- Return true iff `as` is a prefix of `bs` -/ def isPrefixOf [BEq α] (as bs : Array α) : Bool := @@ -747,17 +750,18 @@ private def allDiffAuxAux [BEq α] (as : Array α) (a : α) : forall (i : Nat), have : i < as.size := Nat.lt_trans (Nat.lt_succ_self _) h; a != as.get ⟨i, this⟩ && allDiffAuxAux as a i this -private partial def allDiffAux [BEq α] (as : Array α) : Nat → Bool +private def allDiffAux [BEq α] (as : Array α) : Nat → Bool | i => if h : i < as.size then allDiffAuxAux as (as.get ⟨i, h⟩) i h && allDiffAux as (i+1) else true +termination_by measure fun ⟨_, _, as, i⟩ => as.size - i def allDiff [BEq α] (as : Array α) : Bool := allDiffAux as 0 -@[specialize] partial def zipWithAux (f : α → β → γ) (as : Array α) (bs : Array β) : Nat → Array γ → Array γ +@[specialize] def zipWithAux (f : α → β → γ) (as : Array α) (bs : Array β) : Nat → Array γ → Array γ | i, cs => if h : i < as.size then let a := as.get ⟨i, h⟩; @@ -768,6 +772,7 @@ def allDiff [BEq α] (as : Array α) : Bool := cs else cs +termination_by measure fun ⟨_, _, _, _, as, _, i, _⟩ => as.size - i @[inline] def zipWith (as : Array α) (bs : Array β) (f : α → β → γ) : Array γ := zipWithAux f as bs 0 #[] diff --git a/stage0/src/Init/Data/Array/BinSearch.lean b/stage0/src/Init/Data/Array/BinSearch.lean index e322eaf76a..362f8de849 100644 --- a/stage0/src/Init/Data/Array/BinSearch.lean +++ b/stage0/src/Init/Data/Array/BinSearch.lean @@ -16,12 +16,12 @@ namespace Array @[specialize] partial def binSearchAux {α : Type u} {β : Type v} [Inhabited α] [Inhabited β] (lt : α → α → Bool) (found : Option α → β) (as : Array α) (k : α) : Nat → Nat → β | lo, hi => if lo <= hi then - let m := (lo + hi)/2; - let a := as.get! m; - if lt a k then binSearchAux lt found as k (m+1) hi + let m := (lo + hi)/2 + let a := as.get! m + if lt a k then binSearchAux lt found as k (m+1) hi else if lt k a then if m == 0 then found none - else binSearchAux lt found as k lo (m-1) + else binSearchAux lt found as k lo (m-1) else found (some a) else found none @@ -47,17 +47,17 @@ namespace Array (k : α) : Nat → Nat → m (Array α) | lo, hi => -- as[lo] < k < as[hi] - let mid := (lo + hi)/2; - let midVal := as.get! mid; + let mid := (lo + hi)/2 + let midVal := as.get! mid if lt midVal k then if mid == lo then do let v ← add (); pure <| as.insertAt (lo+1) v - else binInsertAux lt merge add as k mid hi + else binInsertAux lt merge add as k mid hi else if lt k midVal then - binInsertAux lt merge add as k lo mid + binInsertAux lt merge add as k lo mid else do as.modifyM mid <| fun v => merge v -@[specialize] partial def binInsertM {α : Type u} {m : Type u → Type v} [Monad m] [Inhabited α] +@[specialize] def binInsertM {α : Type u} {m : Type u → Type v} [Monad m] [Inhabited α] (lt : α → α → Bool) (merge : α → m α) (add : Unit → m α) diff --git a/stage0/src/Init/Data/Array/QSort.lean b/stage0/src/Init/Data/Array/QSort.lean index c7a2c4ae18..cdcc701a35 100644 --- a/stage0/src/Init/Data/Array/QSort.lean +++ b/stage0/src/Init/Data/Array/QSort.lean @@ -10,34 +10,35 @@ namespace Array -- TODO: remove the [Inhabited α] parameters as soon as we have the tactic framework for automating proof generation and using Array.fget -- TODO: remove `partial` using well-founded recursion -@[inline] partial def qpartition {α : Type} [Inhabited α] (as : Array α) (lt : α → α → Bool) (lo hi : Nat) : Nat × Array α := -let mid := (lo + hi) / 2; -let as := if lt (as.get! mid) (as.get! lo) then as.swap! lo mid else as -let as := if lt (as.get! hi) (as.get! lo) then as.swap! lo hi else as -let as := if lt (as.get! mid) (as.get! hi) then as.swap! mid hi else as -let pivot := as.get! hi -let rec loop (as : Array α) (i j : Nat) := - if j < hi then - if lt (as.get! j) pivot then - let as := as.swap! i j; - loop as (i+1) (j+1) +@[inline] def qpartition {α : Type} [Inhabited α] (as : Array α) (lt : α → α → Bool) (lo hi : Nat) : Nat × Array α := + let mid := (lo + hi) / 2 + let as := if lt (as.get! mid) (as.get! lo) then as.swap! lo mid else as + let as := if lt (as.get! hi) (as.get! lo) then as.swap! lo hi else as + let as := if lt (as.get! mid) (as.get! hi) then as.swap! mid hi else as + let pivot := as.get! hi + let rec loop (as : Array α) (i j : Nat) := + if h : j < hi then + if lt (as.get! j) pivot then + let as := as.swap! i j + loop as (i+1) (j+1) + else + loop as i (j+1) else - loop as i (j+1) - else - let as := as.swap! i hi; - (i, as) -loop as lo lo + let as := as.swap! i hi + (i, as) + loop as lo lo +termination_by measure fun ⟨_, _, _, hi, _, _, _, j⟩ => hi - j @[inline] partial def qsort {α : Type} [Inhabited α] (as : Array α) (lt : α → α → Bool) (low := 0) (high := as.size - 1) : Array α := let rec @[specialize] sort (as : Array α) (low high : Nat) := if low < high then - let p := qpartition as lt low high; + let p := qpartition as lt low high; -- TODO: fix `partial` support in the equation compiler, it breaks if we use `let (mid, as) := partition as lt low high` - let mid := p.1; - let as := p.2; + let mid := p.1 + let as := p.2 if mid >= high then as else - let as := sort as low mid; + let as := sort as low mid sort as (mid+1) high else as sort as low high diff --git a/stage0/src/Init/Data/Nat/Basic.lean b/stage0/src/Init/Data/Nat/Basic.lean index 98940afd9c..8d71a7b674 100644 --- a/stage0/src/Init/Data/Nat/Basic.lean +++ b/stage0/src/Init/Data/Nat/Basic.lean @@ -406,11 +406,14 @@ protected def max (n m : Nat) : Nat := if n ≤ m then m else n /- Auxiliary theorems for well-founded recursion -/ -theorem not_eq_zero_of_pos (h : 0 < a) : a ≠ 0 := by +theorem not_eq_zero_of_lt (h : b < a) : a ≠ 0 := by cases a - contradiction + exact absurd h (Nat.not_lt_zero _) apply Nat.noConfusion +theorem pred_lt' {n m : Nat} (h : m < n) : pred n < n := + pred_lt (not_eq_zero_of_lt h) + theorem add_sub_self_left (a b : Nat) : (a + b) - a = b := by induction a with | zero => simp @@ -439,7 +442,7 @@ theorem zero_lt_sub_of_lt (h : i < a) : 0 < a - i := by theorem sub_succ_lt_self (a i : Nat) (h : i < a) : a - (i + 1) < a - i := by rw [Nat.add_succ, Nat.sub_succ] apply Nat.pred_lt - apply Nat.not_eq_zero_of_pos + apply Nat.not_eq_zero_of_lt apply Nat.zero_lt_sub_of_lt assumption diff --git a/stage0/src/Init/Meta.lean b/stage0/src/Init/Meta.lean index fc23f3743d..1e16e2aa49 100644 --- a/stage0/src/Init/Meta.lean +++ b/stage0/src/Init/Meta.lean @@ -1030,16 +1030,3 @@ macro "erw " s:rwRuleSeq loc:(location)? : tactic => end Parser.Tactic end Lean - -macro "default_decreasing_tactic" : tactic => - `((simp [invImage, InvImage, Prod.lex, sizeOfWFRel, measure, Nat.lt_wfRel]; - repeat (first | apply Prod.Lex.right | apply Prod.Lex.left) - first - | apply Nat.lt_succ_self -- i < i+1 - | decide -- e.g., 0 < 1 - | apply Nat.pred_lt; assumption -- i-1 < i if i ≠ 0 - | apply Nat.sub_succ_lt_self; assumption -- a - (i+1) < a - i if i < a - | assumption - -- TODO: linearith - -- TODO: improve -)) diff --git a/stage0/src/Init/WF.lean b/stage0/src/Init/WF.lean index ab339d377b..36eddd1e7b 100644 --- a/stage0/src/Init/WF.lean +++ b/stage0/src/Init/WF.lean @@ -264,8 +264,10 @@ def lexAccessible {a} (aca : Acc r a) (acb : (a : α) → WellFounded (s a)) (b | right => apply ihb; assumption -- The lexicographical order of well founded relations is well-founded -def lex (ha : WellFounded r) (hb : (x : α) → WellFounded (s x)) : WellFounded (Lex r s) := - WellFounded.intro fun ⟨a, b⟩ => lexAccessible (WellFounded.apply ha a) hb b +def lex (ha : WellFoundedRelation α) (hb : (a : α) → WellFoundedRelation (β a)) : WellFoundedRelation (PSigma β) where + rel := Lex ha.rel (fun a => hb a |>.rel) + wf := WellFounded.intro fun ⟨a, b⟩ => lexAccessible (WellFounded.apply ha.wf a) (fun a => hb a |>.wf) b + end section diff --git a/stage0/src/Init/WFTactics.lean b/stage0/src/Init/WFTactics.lean new file mode 100644 index 0000000000..1a5cc67a18 --- /dev/null +++ b/stage0/src/Init/WFTactics.lean @@ -0,0 +1,38 @@ +/- +Copyright (c) 2014 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Author: Leonardo de Moura +-/ +prelude +import Init.SizeOf +import Init.WF + +macro "default_decreasing_tactic" : tactic => + `((simp [invImage, InvImage, Prod.lex, sizeOfWFRel, measure, Nat.lt_wfRel]; + repeat (first | apply Prod.Lex.right | apply Prod.Lex.left) + repeat (first | apply PSigma.Lex.right | apply PSigma.Lex.left) + first + | apply Nat.lt_succ_self -- i < i+1 + | decide -- e.g., 0 < 1 + | apply Nat.pred_lt; assumption -- i-1 < i if i ≠ 0 + | apply Nat.pred_lt'; assumption -- i-1 < i if j < i + | apply Nat.sub_succ_lt_self; assumption -- a - (i+1) < a - i if i < a + | assumption + -- TODO: linearith + -- TODO: improve +)) + +macro "decreasing_tactic" : tactic => + `((simp [invImage, InvImage, Prod.lex, sizeOfWFRel, measure, Nat.lt_wfRel]; + repeat (first | apply Prod.Lex.right | apply Prod.Lex.left) + repeat (first | apply PSigma.Lex.right | apply PSigma.Lex.left) + first + | apply Nat.lt_succ_self -- i < i+1 + | decide -- e.g., 0 < 1 + | apply Nat.pred_lt; assumption -- i-1 < i if i ≠ 0 + | apply Nat.pred_lt'; assumption -- i-1 < i if j < i + | apply Nat.sub_succ_lt_self; assumption -- a - (i+1) < a - i if i < a + | assumption + -- TODO: linearith + -- TODO: improve +)) diff --git a/stage0/src/Lean/Elab/Deriving/Basic.lean b/stage0/src/Lean/Elab/Deriving/Basic.lean index 7119a641e0..fef6b74561 100644 --- a/stage0/src/Lean/Elab/Deriving/Basic.lean +++ b/stage0/src/Lean/Elab/Deriving/Basic.lean @@ -15,8 +15,7 @@ def DerivingHandlerNoArgs := (typeNames : Array Name) → CommandElabM Bool builtin_initialize derivingHandlersRef : IO.Ref (NameMap DerivingHandler) ← IO.mkRef {} def registerBuiltinDerivingHandlerWithArgs (className : Name) (handler : DerivingHandler) : IO Unit := do - let initializing ← IO.initializing - unless initializing do + unless (← initializing) do throw (IO.userError "failed to register deriving handler, it can only be registered during initialization") if (← derivingHandlersRef.get).contains className then throw (IO.userError s!"failed to register deriving handler, a handler has already been registered for '{className}'") diff --git a/stage0/src/Lean/Elab/MutualDef.lean b/stage0/src/Lean/Elab/MutualDef.lean index 84e8b9741b..f73f410c82 100644 --- a/stage0/src/Lean/Elab/MutualDef.lean +++ b/stage0/src/Lean/Elab/MutualDef.lean @@ -641,7 +641,7 @@ private def levelMVarToParamHeaders (views : Array DefView) (headers : Array Def else newHeaders := newHeaders.push header return newHeaders - let newHeaders ← process.run' 1 + let newHeaders ← (process).run' 1 newHeaders.mapM fun header => return { header with type := (← instantiateMVars header.type) } /-- Result for `mkInst?` -/ diff --git a/stage0/src/Lean/Elab/PreDefinition/WF/Fix.lean b/stage0/src/Lean/Elab/PreDefinition/WF/Fix.lean index 6fbc181f6f..8f9e43ebed 100644 --- a/stage0/src/Lean/Elab/PreDefinition/WF/Fix.lean +++ b/stage0/src/Lean/Elab/PreDefinition/WF/Fix.lean @@ -53,7 +53,7 @@ private partial def replaceRecApps (recFnName : Name) (decrTactic? : Option Synt let processApp (e : Expr) : TermElabM Expr := e.withApp fun f args => do if f.isConstOf recFnName && args.size == 1 then - let r := mkApp F args[0] + let r := mkApp F (← loop F args[0]) let decreasingProp := (← whnf (← inferType r)).bindingDomain! return mkApp r (← mkDecreasingProof decreasingProp decrTactic?) else diff --git a/stage0/src/Lean/Elab/PreDefinition/WF/Main.lean b/stage0/src/Lean/Elab/PreDefinition/WF/Main.lean index d7d44113cb..da45c7cc83 100644 --- a/stage0/src/Lean/Elab/PreDefinition/WF/Main.lean +++ b/stage0/src/Lean/Elab/PreDefinition/WF/Main.lean @@ -58,7 +58,7 @@ def wfRecursion (preDefs : Array PreDefinition) (wfStx? : Option Syntax) (decrTa addAsAxiom unaryPreDef mkFix unaryPreDef wfRel decrTactic? let preDefNonRec ← eraseRecAppSyntax preDefNonRec - trace[Elab.definition.wf] ">> {preDefNonRec.declName}" + trace[Elab.definition.wf] ">> {preDefNonRec.declName} :=\n{preDefNonRec.value}" let preDefs ← preDefs.mapM fun d => eraseRecAppSyntax d addNonRec preDefNonRec addNonRecPreDefs preDefs preDefNonRec diff --git a/stage0/src/Lean/Elab/Tactic/Induction.lean b/stage0/src/Lean/Elab/Tactic/Induction.lean index 4a039f627a..4269ed7f4c 100644 --- a/stage0/src/Lean/Elab/Tactic/Induction.lean +++ b/stage0/src/Lean/Elab/Tactic/Induction.lean @@ -140,7 +140,7 @@ partial def mkElimApp (elimName : Name) (elimInfo : ElimInfo) (targets : Array E pure () let f ← Term.mkConst elimName let fType ← inferType f - let (_, s) ← loop.run { elimInfo := elimInfo, targets := targets } |>.run { f := f, fType := fType } + let (_, s) ← (loop).run { elimInfo := elimInfo, targets := targets } |>.run { f := f, fType := fType } let mut others := #[] for mvarId in s.insts do try diff --git a/stage0/src/Lean/Parser/Command.lean b/stage0/src/Lean/Parser/Command.lean index fec4f33a7c..c3100e0296 100644 --- a/stage0/src/Lean/Parser/Command.lean +++ b/stage0/src/Lean/Parser/Command.lean @@ -31,9 +31,10 @@ def terminationHint1 (p : Parser) := leading_parser p def terminationHint (p : Parser) := terminationHintMany p <|> terminationHint1 p def terminationBy := leading_parser "termination_by " >> terminationHint termParser +def terminationByCore := leading_parser "termination_by' " >> terminationHint termParser def decreasingBy := leading_parser "decreasing_by " >> terminationHint Tactic.tacticSeq -def terminationSuffix := optional terminationBy >> optional decreasingBy +def terminationSuffix := optional (terminationBy <|> terminationByCore) >> optional decreasingBy @[builtinCommandParser] def moduleDoc := leading_parser ppDedent $ "/-!" >> commentBody >> ppLine diff --git a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean index 885b90154e..6ed72685b4 100644 --- a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean +++ b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean @@ -521,8 +521,8 @@ def delabLam : Delab := if !blockImplicitLambda then pure stxBody else - let group ← match e.binderInfo, ppTypes with - | BinderInfo.default, true => + let defaultCase (_ : Unit) : Delab := do + if ppTypes then -- "default" binder group is the only one that expects binder names -- as a term, i.e. a single `Syntax.ident` or an application thereof let stxCurNames ← @@ -531,7 +531,11 @@ def delabLam : Delab := else pure $ curNames.get! 0; `(funBinder| ($stxCurNames : $stxT)) - | BinderInfo.default, false => pure curNames.back -- here `curNames.size == 1` + else + pure curNames.back -- here `curNames.size == 1` + let group ← match e.binderInfo, ppTypes with + | BinderInfo.default, _ => defaultCase () + | BinderInfo.auxDecl, _ => defaultCase () | BinderInfo.implicit, true => `(funBinder| {$curNames* : $stxT}) | BinderInfo.implicit, false => `(funBinder| {$curNames*}) | BinderInfo.strictImplicit, true => `(funBinder| ⦃$curNames* : $stxT⦄) @@ -539,7 +543,6 @@ def delabLam : Delab := | BinderInfo.instImplicit, _ => if usedDownstream then `(funBinder| [$curNames.back : $stxT]) -- here `curNames.size == 1` else `(funBinder| [$stxT]) - | _ , _ => unreachable!; match stxBody with | `(fun $binderGroups* => $stxBody) => `(fun $group $binderGroups* => $stxBody) | _ => `(fun $group => $stxBody) diff --git a/stage0/src/shell/CMakeLists.txt b/stage0/src/shell/CMakeLists.txt index 9e73f50efd..e61d47f927 100644 --- a/stage0/src/shell/CMakeLists.txt +++ b/stage0/src/shell/CMakeLists.txt @@ -182,6 +182,14 @@ add_test(NAME leanpkgtest_user_attr find . -name '*.olean' -delete leanmake") +add_test(NAME leanpkgtest_user_deriving + WORKING_DIRECTORY "${LEAN_SOURCE_DIR}/../tests/leanpkg/deriving" + COMMAND bash -c " + set -eu + export ${TEST_VARS} + find . -name '*.olean' -delete + leanmake") + add_test(NAME leanpkgtest_user_opt WORKING_DIRECTORY "${LEAN_SOURCE_DIR}/../tests/leanpkg/user_opt" COMMAND bash -c " diff --git a/stage0/stdlib/Init.c b/stage0/stdlib/Init.c index 91864bb95a..29eb429749 100644 --- a/stage0/stdlib/Init.c +++ b/stage0/stdlib/Init.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init -// Imports: Init.Prelude Init.Notation Init.Core Init.Control Init.Data.Basic Init.WF Init.Data Init.System Init.Util Init.Fix Init.Meta Init.NotationExtra Init.SimpLemmas Init.Hints Init.Conv +// Imports: Init.Prelude Init.Notation Init.Core Init.Control Init.Data.Basic Init.WF Init.WFTactics Init.Data Init.System Init.Util Init.Fix Init.Meta Init.NotationExtra Init.SimpLemmas Init.Hints Init.Conv #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -19,6 +19,7 @@ lean_object* initialize_Init_Core(lean_object*); lean_object* initialize_Init_Control(lean_object*); lean_object* initialize_Init_Data_Basic(lean_object*); lean_object* initialize_Init_WF(lean_object*); +lean_object* initialize_Init_WFTactics(lean_object*); lean_object* initialize_Init_Data(lean_object*); lean_object* initialize_Init_System(lean_object*); lean_object* initialize_Init_Util(lean_object*); @@ -51,6 +52,9 @@ lean_dec_ref(res); res = initialize_Init_WF(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_WFTactics(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_Data(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Data/Array/Basic.c b/stage0/stdlib/Init/Data/Array/Basic.c index 3063508f72..2c56450e79 100644 --- a/stage0/stdlib/Init/Data/Array/Basic.c +++ b/stage0/stdlib/Init/Data/Array/Basic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.Array.Basic -// Imports: Init.Data.Nat.Basic Init.Data.Fin.Basic Init.Data.UInt Init.Data.Repr Init.Data.ToString.Basic Init.Util +// Imports: Init.WFTactics Init.Data.Nat.Basic Init.Data.Fin.Basic Init.Data.UInt Init.Data.Repr Init.Data.ToString.Basic Init.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -90,7 +90,6 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSome_x21___spec LEAN_EXPORT lean_object* l_Array_modifyOp(lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__9; LEAN_EXPORT lean_object* l_Array_modifyM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_eraseIdxSzAuxInstance___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_instForInArray___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_uget___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -498,7 +497,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_concatMapM___spec_ static lean_object* l___aux__Init__Data__Array__Basic______macroRules__term_x23_x5b___x2c_x5d__1___closed__17; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_eraseIdxSzAuxInstance(lean_object*); static lean_object* l_Array_instReprArray___rarg___closed__1; lean_object* lean_string_length(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -946,7 +944,7 @@ x_9 = l_Array_swapAt_x21___rarg___closed__2; x_10 = lean_string_append(x_8, x_9); x_11 = l_Array_swapAt_x21___rarg___closed__3; x_12 = l_Array_swapAt_x21___rarg___closed__4; -x_13 = lean_unsigned_to_nat(94u); +x_13 = lean_unsigned_to_nat(95u); x_14 = lean_unsigned_to_nat(4u); x_15 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_11, x_12, x_13, x_14, x_10); lean_dec(x_10); @@ -5348,7 +5346,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Array_swapAt_x21___rarg___closed__3; x_2 = l_Array_findSome_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(386u); +x_3 = lean_unsigned_to_nat(387u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Array_findSome_x21___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -8835,12 +8833,12 @@ else lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = lean_unsigned_to_nat(1u); x_7 = lean_nat_sub(x_1, x_6); -x_8 = lean_nat_add(x_1, x_6); -x_9 = lean_array_fswap(x_2, x_1, x_7); +x_8 = lean_array_fswap(x_2, x_1, x_7); lean_dec(x_7); +x_9 = lean_nat_add(x_1, x_6); lean_dec(x_1); -x_1 = x_8; -x_2 = x_9; +x_1 = x_9; +x_2 = x_8; goto _start; } } @@ -8918,22 +8916,6 @@ lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Array_eraseIdxSzAuxInstance___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_array_pop(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Array_eraseIdxSzAuxInstance(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_eraseIdxSzAuxInstance___rarg), 1, 0); -return x_2; -} -} LEAN_EXPORT lean_object* l_Array_eraseIdxSzAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -9044,9 +9026,14 @@ LEAN_EXPORT lean_object* l_Array_insertAtAux___rarg(lean_object* x_1, lean_objec _start: { uint8_t x_4; -x_4 = lean_nat_dec_eq(x_1, x_3); +x_4 = lean_nat_dec_lt(x_1, x_3); if (x_4 == 0) { +lean_dec(x_3); +return x_2; +} +else +{ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(1u); x_6 = lean_nat_sub(x_3, x_5); @@ -9056,11 +9043,6 @@ x_2 = x_7; x_3 = x_6; goto _start; } -else -{ -lean_dec(x_3); -return x_2; -} } } LEAN_EXPORT lean_object* l_Array_insertAtAux(lean_object* x_1) { @@ -9119,7 +9101,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Array_swapAt_x21___rarg___closed__3; x_2 = l_Array_insertAt___rarg___closed__1; -x_3 = lean_unsigned_to_nat(672u); +x_3 = lean_unsigned_to_nat(674u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Array_insertAt___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -9981,6 +9963,7 @@ lean_dec(x_2); return x_8; } } +lean_object* initialize_Init_WFTactics(lean_object*); lean_object* initialize_Init_Data_Nat_Basic(lean_object*); lean_object* initialize_Init_Data_Fin_Basic(lean_object*); lean_object* initialize_Init_Data_UInt(lean_object*); @@ -9992,6 +9975,9 @@ LEAN_EXPORT lean_object* initialize_Init_Data_Array_Basic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Init_WFTactics(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_Data_Nat_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index f5e6d8197b..bc920b6e36 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -17,7 +17,6 @@ lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_getSepElems___rarg___boxed(lean_object*); static uint8_t l_Lean_versionString___closed__2; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__2; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__12; static lean_object* l_Lean_mkHole___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decode___boxed(lean_object*, lean_object*, lean_object*); @@ -25,9 +24,7 @@ LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor___boxed(lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33; LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef(lean_object*); @@ -45,16 +42,13 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__8; LEAN_EXPORT uint8_t lean_is_inaccessible_user_name(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90; static lean_object* l_Lean_versionString___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instReprTransparencyMode___closed__1; static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__2; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__7; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___at_Lean_Syntax_setHeadInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -107,17 +101,13 @@ LEAN_EXPORT lean_object* l_Array_mapSepElemsM___rarg(lean_object*, lean_object*, static lean_object* l_Lean_toolchain___closed__9; extern lean_object* l_Lean_maxRecDepthErrorMessage; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterDot(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_toNat___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__29; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_memoize___default; static lean_object* l_Lean_toolchain___closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25; LEAN_EXPORT uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar(lean_object*, lean_object*); @@ -158,7 +148,6 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpo LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint32_t l_Lean_idEndEscape; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_instCoeTailSepArrayArraySyntax(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43; LEAN_EXPORT lean_object* l_Lean_Name_escapePart___lambda__1___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__22; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__5; @@ -166,20 +155,16 @@ static lean_object* l_Lean_Name_escapePart___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdRest___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteProd(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__13; LEAN_EXPORT lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1; LEAN_EXPORT uint8_t l_Lean_isIdBeginEscape(uint32_t); static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__3; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56; LEAN_EXPORT uint8_t l_Lean_Name_escapePart___lambda__1(uint32_t); static lean_object* l_Lean_instQuoteProd___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_mkScientificLit(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__3; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdFirst___boxed(lean_object*); @@ -195,7 +180,6 @@ static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_In lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__13; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit___boxed(lean_object*, lean_object*); lean_object* lean_get_githash(lean_object*); @@ -212,7 +196,6 @@ lean_object* l_Std_Format_joinSep___at_instReprProd___spec__1(lean_object*, lean static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__17; lean_object* l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_1765_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_contextual___default; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx(uint8_t); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__3; @@ -234,11 +217,8 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__5; static lean_object* l_Lean_versionString___closed__11; LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux___boxed(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62; LEAN_EXPORT lean_object* l_Lean_instQuoteBool___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84; LEAN_EXPORT lean_object* l_Lean_version_specialDesc; lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep___boxed(lean_object*, lean_object*); @@ -248,9 +228,7 @@ LEAN_EXPORT lean_object* l_Array_mapSepElems(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__17; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__5; static lean_object* l_Lean_versionStringCore___closed__2; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98; LEAN_EXPORT lean_object* l_Lean_Name_instReprName; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__15; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep(lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__7; @@ -258,10 +236,8 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_objec static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__27; static lean_object* l_Lean_Name_escapePart___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__2; static lean_object* l_Lean_termEval__prio_____closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19; static lean_object* l_Lean_version_major___closed__1; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__5; static lean_object* l_Lean_instQuoteSubstring___closed__1; @@ -269,36 +245,28 @@ LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_etaStruct___default; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__8; lean_object* lean_string_utf8_next(lean_object*, lean_object*); static lean_object* l_Lean_Name_isInaccessibleUserName___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__4; static lean_object* l_Lean_versionStringCore___closed__1; static lean_object* l_Lean_termEval__prio_____closed__2; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__9; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65; LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape(uint8_t, lean_object*); static lean_object* l_Lean_instQuoteSubstring___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__3; -static lean_object* l_tacticDefault__decreasing__tactic___closed__1; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40; LEAN_EXPORT lean_object* l_Lean_Syntax_hasArgs___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__11; static lean_object* l_Lean_Name_reprPrec___closed__6; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f(lean_object*, uint8_t, uint8_t); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_singlePass___default; LEAN_EXPORT lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElems___boxed(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_maxSteps___default; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); @@ -313,7 +281,6 @@ static lean_object* l_Lean_termEval__prec_____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteList(lean_object*); -static lean_object* l_tacticDefault__decreasing__tactic___closed__5; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__6; static lean_object* l_Lean_Name_reprPrec___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instInhabitedConfig; @@ -324,13 +291,11 @@ lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isNatLit_x3f(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__23; LEAN_EXPORT lean_object* l_Lean_version_major; static lean_object* l_Lean_instQuoteProd___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqSyntax; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_zeta___default; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60; static lean_object* l_Lean_versionStringCore___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteSyntax___closed__1; @@ -340,13 +305,9 @@ static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_appendIndexAfter___closed__1; uint8_t l_instDecidableNot___rarg(uint8_t); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2; uint8_t l_String_contains(lean_object*, uint32_t); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__1; -static lean_object* l_tacticDefault__decreasing__tactic___closed__3; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____boxed(lean_object*, lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1; @@ -360,9 +321,7 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteString(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElemsM(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkGroupNode(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89; lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48; static lean_object* l_Lean_termEval__prio_____closed__1; static lean_object* l_Lean_instQuoteProd___rarg___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__8; @@ -385,7 +344,6 @@ LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhi LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_structEq___boxed(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51; LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8700_(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__9; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_ConfigCtx_contextual___default; @@ -404,7 +362,6 @@ static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x LEAN_EXPORT lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l_Lean_toolchain___closed__8; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instReprTransparencyMode; @@ -418,7 +375,6 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31; static lean_object* l_Lean_mkHole___closed__5; @@ -430,13 +386,11 @@ static lean_object* l_Lean_Meta_Simp_instReprConfig___closed__1; LEAN_EXPORT lean_object* l_Array_getSepElems___rarg(lean_object*); extern lean_object* l_Lean_reservedMacroScope; static lean_object* l_Lean_Syntax_unsetTrailing___closed__2; -static lean_object* l_tacticDefault__decreasing__tactic___closed__4; static lean_object* l_Lean_NameGenerator_namePrefix___default___closed__1; LEAN_EXPORT lean_object* l_Lean_mkNullNode(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; LEAN_EXPORT lean_object* l_Lean_Name_instToStringName(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__5(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_modifyBase(lean_object*, lean_object*); static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__2; @@ -449,17 +403,13 @@ static lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___close static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__19; LEAN_EXPORT lean_object* l_Lean_instQuoteSubstring___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prec____1(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32; static lean_object* l_Lean_versionStringCore___closed__8; LEAN_EXPORT lean_object* l_Lean_instQuoteSubstring(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__3; static lean_object* l_Lean_Name_instReprSyntax___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83; lean_object* l_Lean_Syntax_getId(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_versionStringCore___closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed(lean_object*, lean_object*); @@ -467,11 +417,9 @@ extern lean_object* l_Lean_Parser_Tactic_rwRuleSeq; extern lean_object* l_Lean_charLitKind; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__23; static lean_object* l_Lean_Syntax_instBEqSyntax___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77; LEAN_EXPORT lean_object* l_Lean_NameGenerator_idx___default; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__13; static lean_object* l_Lean_Meta_instBEqTransparencyMode___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66; lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__2(lean_object*, lean_object*); @@ -479,14 +427,12 @@ lean_object* l_Lean_Macro_throwErrorAt___rarg(lean_object*, lean_object*, lean_o static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__5; extern lean_object* l_Lean_Parser_Tactic_location; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81; LEAN_EXPORT lean_object* l_Lean_mkCIdent(lean_object*); LEAN_EXPORT lean_object* l_Lean_version_getIsRelease___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__34; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__3; uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_hasNum___boxed(lean_object*); -LEAN_EXPORT lean_object* l_tacticDefault__decreasing__tactic; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2; @@ -506,16 +452,13 @@ static lean_object* l_Lean_Name_reprPrec___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__5; lean_object* l_panic___at___private_Init_Prelude_0__Lean_assembleParts___spec__1(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8407____boxed(lean_object*, lean_object*); static lean_object* l_Lean_versionString___closed__10; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13; LEAN_EXPORT lean_object* l_Lean_versionString; static lean_object* l_Lean_version_patch___closed__1; uint8_t l_Array_isEmpty___rarg(lean_object*); uint8_t l_Substring_beq(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__8; @@ -529,7 +472,6 @@ static lean_object* l_Lean_Name_reprPrec___closed__9; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_maxDischargeDepth___default; LEAN_EXPORT lean_object* l_Lean_isNumericSubscript___boxed(lean_object*); lean_object* l_Substring_nextn(lean_object*, lean_object*, lean_object*); @@ -539,19 +481,15 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__2; static lean_object* l_Lean_Syntax_mkApp___closed__2; LEAN_EXPORT lean_object* l_Lean_NameGenerator_mkChild(lean_object*); LEAN_EXPORT lean_object* l_Lean_getGithash___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___at_Lean_Syntax_setHeadInfoAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86; lean_object* l_String_dropRight(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isCharLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_splitNameLit(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__6; static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__7; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93; static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__4; size_t lean_usize_of_nat(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__3; LEAN_EXPORT lean_object* l_Lean_version_minor; @@ -567,26 +505,22 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast___rarg( LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit(lean_object*); LEAN_EXPORT uint8_t l_Lean_version_isRelease; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91; static lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__10; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__32; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg(uint8_t, uint8_t, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1; uint8_t l_Char_isAlpha(uint32_t); LEAN_EXPORT lean_object* l_Lean_Option_hasQuote(lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_isAtom(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__26; LEAN_EXPORT uint8_t l_Lean_isLetterLike(uint32_t); static lean_object* l_Lean_instQuoteName___closed__2; LEAN_EXPORT lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isStrLit_x3f___boxed(lean_object*); lean_object* l_Lean_Macro_expandMacro_x3f(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prio_____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNumLit(lean_object*, lean_object*); @@ -605,12 +539,8 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Array_mapSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__2; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__12; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__4; @@ -621,8 +551,6 @@ uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; static lean_object* l_Lean_Name_instReprName___closed__1; lean_object* l_String_intercalate(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8; static lean_object* l_Lean_mkHole___closed__8; LEAN_EXPORT uint8_t l_Lean_version_getIsRelease(lean_object*); LEAN_EXPORT lean_object* lean_name_append_after(lean_object*, lean_object*); @@ -632,10 +560,8 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_getSepArgs(lean_object*); LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__4(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__18; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__9; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__31; LEAN_EXPORT lean_object* l_Lean_mkHole(lean_object*); extern lean_object* l_Lean_scientificLitKind; @@ -644,7 +570,6 @@ LEAN_EXPORT uint8_t l_Array_isEqvAux___at_Lean_Syntax_structEq___spec__1(lean_ob static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20; LEAN_EXPORT lean_object* l_Lean_instQuoteString___boxed(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44; static lean_object* l_Lean_instQuoteBool___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__15; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -666,8 +591,6 @@ uint8_t l_Char_isAlphanum(uint32_t); static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instReprConfig; LEAN_EXPORT lean_object* l_Lean_instInhabitedNameGenerator; static lean_object* l_Lean_mkHole___closed__4; @@ -678,11 +601,8 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_get LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f(lean_object*); LEAN_EXPORT uint8_t l_Lean_isGreek(uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticErw____; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__8; static lean_object* l_Lean_toolchain___closed__2; @@ -702,14 +622,11 @@ static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x static lean_object* l_Lean_versionString___closed__5; static lean_object* l_Lean_termEval__prec_____closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61; static lean_object* l_Lean_evalPrec___closed__1; static lean_object* l_Lean_Name_toStringWithSep___closed__1; LEAN_EXPORT lean_object* l_Lean_NameGenerator_curr(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__35; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -729,9 +646,7 @@ lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f(lean_object*); @@ -739,12 +654,10 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instBEqConfig; static lean_object* l_Lean_termEval__prec_____closed__2; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__10; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_iota___default; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; LEAN_EXPORT lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteOption(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__7; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16; static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__20; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteNat(lean_object*); @@ -758,7 +671,6 @@ LEAN_EXPORT lean_object* l_Lean_Name_toString_maybePseudoSyntax___boxed(lean_obj LEAN_EXPORT lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNameLit(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24; static lean_object* l_Lean_instQuoteArray___rarg___closed__1; static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__1; static lean_object* l_Lean_mkOptionalNode___closed__1; @@ -768,7 +680,6 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__22; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8423____closed__24; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63; lean_object* l_String_trim(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdEndEscape___boxed(lean_object*); @@ -785,14 +696,11 @@ static lean_object* l_Lean_termEval__prec_____closed__5; static lean_object* l_Lean_instQuoteBool___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__7; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__11; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87; LEAN_EXPORT uint8_t l_Lean_isIdFirst(uint32_t); LEAN_EXPORT lean_object* l_Lean_instQuoteName(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20; LEAN_EXPORT lean_object* l_Lean_Syntax_isNone___boxed(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_isToken___boxed(lean_object*, lean_object*); @@ -820,7 +728,6 @@ LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_beta___default; static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__2(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_mk_syntax_ident(lean_object*); @@ -849,21 +756,17 @@ static lean_object* l_Lean_Meta_Simp_instBEqConfig___closed__1; LEAN_EXPORT lean_object* l_Lean_instQuoteProd___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_proj___default; LEAN_EXPORT lean_object* l_Lean_Meta_instBEqTransparencyMode; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_find_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__12; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_drop(lean_object*, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52; static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__2; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__4; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_min(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__1; @@ -871,7 +774,6 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33; static lean_object* l_Lean_mkSepArray___closed__1; -static lean_object* l_tacticDefault__decreasing__tactic___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__20; LEAN_EXPORT lean_object* l_Lean_Name_getRoot___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux___boxed(lean_object*, lean_object*, lean_object*); @@ -883,23 +785,17 @@ static lean_object* l_Lean_evalPrec___closed__3; LEAN_EXPORT lean_object* l_Lean_mkSepArray___boxed(lean_object*, lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__1; static lean_object* l_Lean_Name_reprPrec___closed__3; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__2; LEAN_EXPORT uint8_t l_Lean_Name_toString_maybePseudoSyntax(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__7; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__18; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__24; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__7; static lean_object* l_Lean_instQuoteName___closed__1; static lean_object* l_Lean_termEval__prec_____closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___lambda__1___boxed(lean_object*); static lean_object* l_Array_getSepElems___rarg___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__15; LEAN_EXPORT lean_object* l_Lean_Syntax_findAux(lean_object*, lean_object*); static lean_object* l_Lean_Name_escapePart___closed__3; @@ -910,21 +806,17 @@ LEAN_EXPORT lean_object* l_Lean_mkNode(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; lean_object* lean_uint32_to_nat(uint32_t); static lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15; LEAN_EXPORT lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prio_____closed__5; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__3; -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__4; lean_object* lean_nat_to_int(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____closed__16; LEAN_EXPORT uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit___boxed(lean_object*); -static lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71; LEAN_EXPORT lean_object* l_Lean_evalPrio(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_defaultMaxSteps; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4; @@ -5378,50 +5270,50 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f(lean_object* x_1, uint8_t x_2, uint8_t x_3) { _start: { -lean_object* x_4; -x_4 = l_Lean_Syntax_getHeadInfo(x_1); +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_Syntax_getTailInfo(x_1); +x_5 = l_Lean_Syntax_getHeadInfo(x_1); +if (lean_obj_tag(x_5) == 0) +{ if (lean_obj_tag(x_4) == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_4, 1); +lean_object* x_6; +x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); -lean_dec(x_4); -x_7 = l_Lean_Syntax_getTailInfo(x_1); -if (lean_obj_tag(x_7) == 0) -{ if (x_2 == 0) { if (x_3 == 0) { -lean_object* x_8; uint8_t x_9; -x_8 = lean_ctor_get(x_7, 3); +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_ctor_get(x_4, 3); lean_inc(x_8); -lean_dec(x_7); -x_9 = !lean_is_exclusive(x_5); +lean_dec(x_4); +x_9 = !lean_is_exclusive(x_6); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_5, 2); +x_10 = lean_ctor_get(x_6, 2); lean_dec(x_10); -x_11 = lean_ctor_get(x_5, 1); +x_11 = lean_ctor_get(x_6, 1); lean_dec(x_11); -lean_ctor_set(x_5, 2, x_8); -lean_ctor_set(x_5, 1, x_6); +lean_ctor_set(x_6, 2, x_8); +lean_ctor_set(x_6, 1, x_7); x_12 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 0, x_6); return x_12; } else { lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_5, 0); +x_13 = lean_ctor_get(x_6, 0); lean_inc(x_13); -lean_dec(x_5); +lean_dec(x_6); x_14 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_6); +lean_ctor_set(x_14, 1, x_7); lean_ctor_set(x_14, 2, x_8); x_15 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_15, 0, x_14); @@ -5430,140 +5322,143 @@ return x_15; } else { -lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = lean_ctor_get(x_7, 2); +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_ctor_get(x_4, 2); lean_inc(x_16); -lean_dec(x_7); -x_17 = lean_ctor_get(x_5, 0); +lean_dec(x_4); +x_17 = lean_ctor_get(x_5, 1); lean_inc(x_17); lean_dec(x_5); -x_18 = !lean_is_exclusive(x_16); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_16, 1); -lean_dec(x_19); -x_20 = lean_ctor_get(x_16, 0); -lean_dec(x_20); -lean_ctor_set(x_16, 1, x_6); -lean_ctor_set(x_16, 0, x_17); -x_21 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_21, 0, x_16); -return x_21; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_16, 2); -lean_inc(x_22); -lean_dec(x_16); -x_23 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_23, 0, x_17); -lean_ctor_set(x_23, 1, x_6); -lean_ctor_set(x_23, 2, x_22); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -return x_24; -} -} -} -else -{ +x_18 = lean_ctor_get(x_6, 0); +lean_inc(x_18); lean_dec(x_6); +x_19 = !lean_is_exclusive(x_16); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_16, 1); +lean_dec(x_20); +x_21 = lean_ctor_get(x_16, 0); +lean_dec(x_21); +lean_ctor_set(x_16, 1, x_17); +lean_ctor_set(x_16, 0, x_18); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_16); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_16, 2); +lean_inc(x_23); +lean_dec(x_16); +x_24 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_24, 0, x_18); +lean_ctor_set(x_24, 1, x_17); +lean_ctor_set(x_24, 2, x_23); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_24); +return x_25; +} +} +} +else +{ +lean_dec(x_5); if (x_3 == 0) { -lean_object* x_25; uint8_t x_26; -x_25 = lean_ctor_get(x_7, 3); -lean_inc(x_25); -lean_dec(x_7); -x_26 = !lean_is_exclusive(x_5); -if (x_26 == 0) +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_4, 3); +lean_inc(x_26); +lean_dec(x_4); +x_27 = !lean_is_exclusive(x_6); +if (x_27 == 0) { -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_5, 2); -lean_dec(x_27); -lean_ctor_set(x_5, 2, x_25); -x_28 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_28, 0, x_5); -return x_28; +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_6, 2); +lean_dec(x_28); +lean_ctor_set(x_6, 2, x_26); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_6); +return x_29; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_29 = lean_ctor_get(x_5, 0); -x_30 = lean_ctor_get(x_5, 1); +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_6, 0); +x_31 = lean_ctor_get(x_6, 1); +lean_inc(x_31); lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_5); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -lean_ctor_set(x_31, 2, x_25); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -return x_32; -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_33 = lean_ctor_get(x_7, 2); -lean_inc(x_33); -lean_dec(x_7); -x_34 = lean_ctor_get(x_5, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_5, 1); -lean_inc(x_35); -lean_dec(x_5); -x_36 = !lean_is_exclusive(x_33); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_33, 1); -lean_dec(x_37); -x_38 = lean_ctor_get(x_33, 0); -lean_dec(x_38); -lean_ctor_set(x_33, 1, x_35); -lean_ctor_set(x_33, 0, x_34); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_33); -return x_39; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_33, 2); -lean_inc(x_40); -lean_dec(x_33); -x_41 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_41, 0, x_34); -lean_ctor_set(x_41, 1, x_35); -lean_ctor_set(x_41, 2, x_40); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; -} -} -} -} -else -{ -lean_object* x_43; -lean_dec(x_7); lean_dec(x_6); -lean_dec(x_5); -x_43 = lean_box(0); +x_32 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_26); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_34 = lean_ctor_get(x_4, 2); +lean_inc(x_34); +lean_dec(x_4); +x_35 = lean_ctor_get(x_6, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_6, 1); +lean_inc(x_36); +lean_dec(x_6); +x_37 = !lean_is_exclusive(x_34); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 1); +lean_dec(x_38); +x_39 = lean_ctor_get(x_34, 0); +lean_dec(x_39); +lean_ctor_set(x_34, 1, x_36); +lean_ctor_set(x_34, 0, x_35); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_34); +return x_40; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_34, 2); +lean_inc(x_41); +lean_dec(x_34); +x_42 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_42, 0, x_35); +lean_ctor_set(x_42, 1, x_36); +lean_ctor_set(x_42, 2, x_41); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); return x_43; } } +} +} else { lean_object* x_44; +lean_dec(x_5); lean_dec(x_4); x_44 = lean_box(0); return x_44; } } +else +{ +lean_object* x_45; +lean_dec(x_5); +lean_dec(x_4); +x_45 = lean_box(0); +return x_45; +} +} } LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -19031,2459 +18926,6 @@ return x_206; } } } -static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("tacticDefault_decreasing_tactic"); -return x_1; -} -} -static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_tacticDefault__decreasing__tactic___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("default_decreasing_tactic"); -return x_1; -} -} -static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__4() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_tacticDefault__decreasing__tactic___closed__3; -x_2 = 0; -x_3 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); -return x_3; -} -} -static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_tacticDefault__decreasing__tactic___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_tacticDefault__decreasing__tactic___closed__4; -x_4 = lean_alloc_ctor(3, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l_tacticDefault__decreasing__tactic() { -_start: -{ -lean_object* x_1; -x_1 = l_tacticDefault__decreasing__tactic___closed__5; -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l_Lean_Syntax_expandInterpolatedStr___closed__2; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("tacticSeq"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("tacticSeq1Indented"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("simp"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("simpLemma"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("invImage"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__4; -x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16; -x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("InvImage"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Prod.lex"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("lex"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instQuoteProd___rarg___closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("sizeOfWFRel"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("measure"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Nat.lt_wfRel"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Nat"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("lt_wfRel"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(11u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string(";"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("tacticRepeat_"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("repeat"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("first"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("|"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("apply"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Prod.Lex.right"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Lex"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instQuoteProd___rarg___closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("right"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Prod.Lex.left"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("left"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Nat.lt_succ_self"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("lt_succ_self"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__27; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Nat.pred_lt"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("pred_lt"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("assumption"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Nat.sub_succ_lt_self"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("sub_succ_lt_self"); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47; -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = l_tacticDefault__decreasing__tactic___closed__2; -x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_2); -x_6 = lean_box(1); -x_7 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_3); -return x_7; -} -else -{ -lean_object* x_8; uint8_t x_9; -lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; -x_10 = lean_ctor_get(x_8, 0); -x_11 = lean_ctor_get(x_2, 2); -lean_inc(x_11); -x_12 = lean_ctor_get(x_2, 1); -lean_inc(x_12); -lean_dec(x_2); -x_13 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__4; -lean_inc(x_10); -x_14 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_14, 0, x_10); -lean_ctor_set(x_14, 1, x_13); -x_15 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6; -lean_inc(x_10); -x_16 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_16, 0, x_10); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__12; -lean_inc(x_10); -x_18 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_18, 0, x_10); -lean_ctor_set(x_18, 1, x_17); -x_19 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13; -lean_inc(x_11); -lean_inc(x_12); -x_20 = l_Lean_addMacroScope(x_12, x_19, x_11); -x_21 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12; -x_22 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15; -lean_inc(x_10); -x_23 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_23, 0, x_10); -lean_ctor_set(x_23, 1, x_21); -lean_ctor_set(x_23, 2, x_20); -lean_ctor_set(x_23, 3, x_22); -x_24 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17; -x_25 = lean_array_push(x_24, x_23); -x_26 = lean_box(2); -x_27 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9; -x_28 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -lean_ctor_set(x_28, 2, x_25); -x_29 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__1; -lean_inc(x_10); -x_30 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_30, 0, x_10); -lean_ctor_set(x_30, 1, x_29); -x_31 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21; -lean_inc(x_11); -lean_inc(x_12); -x_32 = l_Lean_addMacroScope(x_12, x_31, x_11); -x_33 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20; -x_34 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23; -lean_inc(x_10); -x_35 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_35, 0, x_10); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set(x_35, 2, x_32); -lean_ctor_set(x_35, 3, x_34); -x_36 = lean_array_push(x_24, x_35); -x_37 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_37, 0, x_26); -lean_ctor_set(x_37, 1, x_27); -lean_ctor_set(x_37, 2, x_36); -x_38 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28; -lean_inc(x_11); -lean_inc(x_12); -x_39 = l_Lean_addMacroScope(x_12, x_38, x_11); -x_40 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26; -x_41 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30; -lean_inc(x_10); -x_42 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_42, 0, x_10); -lean_ctor_set(x_42, 1, x_40); -lean_ctor_set(x_42, 2, x_39); -lean_ctor_set(x_42, 3, x_41); -x_43 = lean_array_push(x_24, x_42); -x_44 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_44, 0, x_26); -lean_ctor_set(x_44, 1, x_27); -lean_ctor_set(x_44, 2, x_43); -x_45 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34; -lean_inc(x_11); -lean_inc(x_12); -x_46 = l_Lean_addMacroScope(x_12, x_45, x_11); -x_47 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33; -x_48 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36; -lean_inc(x_10); -x_49 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_49, 0, x_10); -lean_ctor_set(x_49, 1, x_47); -lean_ctor_set(x_49, 2, x_46); -lean_ctor_set(x_49, 3, x_48); -x_50 = lean_array_push(x_24, x_49); -x_51 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_51, 0, x_26); -lean_ctor_set(x_51, 1, x_27); -lean_ctor_set(x_51, 2, x_50); -x_52 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40; -lean_inc(x_11); -lean_inc(x_12); -x_53 = l_Lean_addMacroScope(x_12, x_52, x_11); -x_54 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39; -x_55 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42; -lean_inc(x_10); -x_56 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_56, 0, x_10); -lean_ctor_set(x_56, 1, x_54); -lean_ctor_set(x_56, 2, x_53); -lean_ctor_set(x_56, 3, x_55); -x_57 = lean_array_push(x_24, x_56); -x_58 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_58, 0, x_26); -lean_ctor_set(x_58, 1, x_27); -lean_ctor_set(x_58, 2, x_57); -x_59 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49; -lean_inc(x_11); -lean_inc(x_12); -x_60 = l_Lean_addMacroScope(x_12, x_59, x_11); -x_61 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45; -x_62 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51; -lean_inc(x_10); -x_63 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_63, 0, x_10); -lean_ctor_set(x_63, 1, x_61); -lean_ctor_set(x_63, 2, x_60); -lean_ctor_set(x_63, 3, x_62); -x_64 = lean_array_push(x_24, x_63); -x_65 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_65, 0, x_26); -lean_ctor_set(x_65, 1, x_27); -lean_ctor_set(x_65, 2, x_64); -x_66 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52; -x_67 = lean_array_push(x_66, x_28); -lean_inc(x_30); -x_68 = lean_array_push(x_67, x_30); -x_69 = lean_array_push(x_68, x_37); -lean_inc(x_30); -x_70 = lean_array_push(x_69, x_30); -x_71 = lean_array_push(x_70, x_44); -lean_inc(x_30); -x_72 = lean_array_push(x_71, x_30); -x_73 = lean_array_push(x_72, x_51); -lean_inc(x_30); -x_74 = lean_array_push(x_73, x_30); -x_75 = lean_array_push(x_74, x_58); -x_76 = lean_array_push(x_75, x_30); -x_77 = lean_array_push(x_76, x_65); -x_78 = l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; -x_79 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_79, 0, x_26); -lean_ctor_set(x_79, 1, x_78); -lean_ctor_set(x_79, 2, x_77); -x_80 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__16; -lean_inc(x_10); -x_81 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_81, 0, x_10); -lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__4; -x_83 = lean_array_push(x_82, x_18); -x_84 = lean_array_push(x_83, x_79); -x_85 = lean_array_push(x_84, x_81); -x_86 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_86, 0, x_26); -lean_ctor_set(x_86, 1, x_78); -lean_ctor_set(x_86, 2, x_85); -x_87 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38; -x_88 = lean_array_push(x_87, x_16); -x_89 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; -x_90 = lean_array_push(x_88, x_89); -x_91 = lean_array_push(x_90, x_89); -x_92 = lean_array_push(x_91, x_89); -x_93 = lean_array_push(x_92, x_86); -x_94 = lean_array_push(x_93, x_89); -x_95 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7; -x_96 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_96, 0, x_26); -lean_ctor_set(x_96, 1, x_95); -lean_ctor_set(x_96, 2, x_94); -x_97 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53; -lean_inc(x_10); -x_98 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_98, 0, x_10); -lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_mkOptionalNode___closed__2; -x_100 = lean_array_push(x_99, x_98); -x_101 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_101, 0, x_26); -lean_ctor_set(x_101, 1, x_78); -lean_ctor_set(x_101, 2, x_100); -x_102 = l_Lean_Syntax_mkApp___closed__3; -x_103 = lean_array_push(x_102, x_96); -lean_inc(x_101); -x_104 = lean_array_push(x_103, x_101); -x_105 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; -x_106 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_106, 0, x_26); -lean_ctor_set(x_106, 1, x_105); -lean_ctor_set(x_106, 2, x_104); -x_107 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56; -lean_inc(x_10); -x_108 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_108, 0, x_10); -lean_ctor_set(x_108, 1, x_107); -x_109 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57; -lean_inc(x_10); -x_110 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_110, 0, x_10); -lean_ctor_set(x_110, 1, x_109); -x_111 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59; -lean_inc(x_10); -x_112 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_112, 0, x_10); -lean_ctor_set(x_112, 1, x_111); -x_113 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60; -lean_inc(x_10); -x_114 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_114, 0, x_10); -lean_ctor_set(x_114, 1, x_113); -x_115 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68; -lean_inc(x_11); -lean_inc(x_12); -x_116 = l_Lean_addMacroScope(x_12, x_115, x_11); -x_117 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64; -x_118 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70; -lean_inc(x_10); -x_119 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_119, 0, x_10); -lean_ctor_set(x_119, 1, x_117); -lean_ctor_set(x_119, 2, x_116); -lean_ctor_set(x_119, 3, x_118); -x_120 = lean_array_push(x_102, x_114); -lean_inc(x_120); -x_121 = lean_array_push(x_120, x_119); -x_122 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61; -x_123 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_123, 0, x_26); -lean_ctor_set(x_123, 1, x_122); -lean_ctor_set(x_123, 2, x_121); -x_124 = lean_array_push(x_102, x_123); -x_125 = lean_array_push(x_124, x_89); -x_126 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_126, 0, x_26); -lean_ctor_set(x_126, 1, x_105); -lean_ctor_set(x_126, 2, x_125); -x_127 = lean_array_push(x_99, x_126); -x_128 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_128, 0, x_26); -lean_ctor_set(x_128, 1, x_78); -lean_ctor_set(x_128, 2, x_127); -x_129 = lean_array_push(x_99, x_128); -x_130 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5; -x_131 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_131, 0, x_26); -lean_ctor_set(x_131, 1, x_130); -lean_ctor_set(x_131, 2, x_129); -x_132 = lean_array_push(x_99, x_131); -x_133 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3; -x_134 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_134, 0, x_26); -lean_ctor_set(x_134, 1, x_133); -lean_ctor_set(x_134, 2, x_132); -x_135 = lean_array_push(x_102, x_112); -lean_inc(x_135); -x_136 = lean_array_push(x_135, x_134); -x_137 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_137, 0, x_26); -lean_ctor_set(x_137, 1, x_105); -lean_ctor_set(x_137, 2, x_136); -x_138 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75; -lean_inc(x_11); -lean_inc(x_12); -x_139 = l_Lean_addMacroScope(x_12, x_138, x_11); -x_140 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73; -x_141 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77; -lean_inc(x_10); -x_142 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_142, 0, x_10); -lean_ctor_set(x_142, 1, x_140); -lean_ctor_set(x_142, 2, x_139); -lean_ctor_set(x_142, 3, x_141); -lean_inc(x_120); -x_143 = lean_array_push(x_120, x_142); -x_144 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_144, 0, x_26); -lean_ctor_set(x_144, 1, x_122); -lean_ctor_set(x_144, 2, x_143); -x_145 = lean_array_push(x_102, x_144); -x_146 = lean_array_push(x_145, x_89); -x_147 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_147, 0, x_26); -lean_ctor_set(x_147, 1, x_105); -lean_ctor_set(x_147, 2, x_146); -x_148 = lean_array_push(x_99, x_147); -x_149 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_149, 0, x_26); -lean_ctor_set(x_149, 1, x_78); -lean_ctor_set(x_149, 2, x_148); -x_150 = lean_array_push(x_99, x_149); -x_151 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_151, 0, x_26); -lean_ctor_set(x_151, 1, x_130); -lean_ctor_set(x_151, 2, x_150); -x_152 = lean_array_push(x_99, x_151); -x_153 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_153, 0, x_26); -lean_ctor_set(x_153, 1, x_133); -lean_ctor_set(x_153, 2, x_152); -lean_inc(x_135); -x_154 = lean_array_push(x_135, x_153); -x_155 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_155, 0, x_26); -lean_ctor_set(x_155, 1, x_105); -lean_ctor_set(x_155, 2, x_154); -x_156 = lean_array_push(x_102, x_137); -x_157 = lean_array_push(x_156, x_155); -x_158 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_158, 0, x_26); -lean_ctor_set(x_158, 1, x_78); -lean_ctor_set(x_158, 2, x_157); -x_159 = lean_array_push(x_102, x_110); -lean_inc(x_159); -x_160 = lean_array_push(x_159, x_158); -x_161 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58; -x_162 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_162, 0, x_26); -lean_ctor_set(x_162, 1, x_161); -lean_ctor_set(x_162, 2, x_160); -x_163 = lean_array_push(x_102, x_162); -x_164 = lean_array_push(x_163, x_89); -x_165 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_165, 0, x_26); -lean_ctor_set(x_165, 1, x_105); -lean_ctor_set(x_165, 2, x_164); -x_166 = lean_array_push(x_99, x_165); -x_167 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_167, 0, x_26); -lean_ctor_set(x_167, 1, x_78); -lean_ctor_set(x_167, 2, x_166); -x_168 = lean_array_push(x_99, x_167); -x_169 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_169, 0, x_26); -lean_ctor_set(x_169, 1, x_130); -lean_ctor_set(x_169, 2, x_168); -x_170 = lean_array_push(x_99, x_169); -x_171 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_171, 0, x_26); -lean_ctor_set(x_171, 1, x_133); -lean_ctor_set(x_171, 2, x_170); -x_172 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__8; -lean_inc(x_10); -x_173 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_173, 0, x_10); -lean_ctor_set(x_173, 1, x_172); -x_174 = lean_array_push(x_82, x_14); -lean_inc(x_174); -x_175 = lean_array_push(x_174, x_171); -lean_inc(x_173); -x_176 = lean_array_push(x_175, x_173); -x_177 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1; -x_178 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_178, 0, x_26); -lean_ctor_set(x_178, 1, x_177); -lean_ctor_set(x_178, 2, x_176); -x_179 = lean_array_push(x_102, x_178); -x_180 = lean_array_push(x_179, x_89); -x_181 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_181, 0, x_26); -lean_ctor_set(x_181, 1, x_105); -lean_ctor_set(x_181, 2, x_180); -x_182 = lean_array_push(x_99, x_181); -x_183 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_183, 0, x_26); -lean_ctor_set(x_183, 1, x_78); -lean_ctor_set(x_183, 2, x_182); -x_184 = lean_array_push(x_99, x_183); -x_185 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_185, 0, x_26); -lean_ctor_set(x_185, 1, x_130); -lean_ctor_set(x_185, 2, x_184); -x_186 = lean_array_push(x_99, x_185); -x_187 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_187, 0, x_26); -lean_ctor_set(x_187, 1, x_133); -lean_ctor_set(x_187, 2, x_186); -x_188 = lean_array_push(x_102, x_108); -x_189 = lean_array_push(x_188, x_187); -x_190 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55; -x_191 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_191, 0, x_26); -lean_ctor_set(x_191, 1, x_190); -lean_ctor_set(x_191, 2, x_189); -x_192 = lean_array_push(x_102, x_191); -x_193 = lean_array_push(x_192, x_89); -x_194 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_194, 0, x_26); -lean_ctor_set(x_194, 1, x_105); -lean_ctor_set(x_194, 2, x_193); -x_195 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82; -lean_inc(x_11); -lean_inc(x_12); -x_196 = l_Lean_addMacroScope(x_12, x_195, x_11); -x_197 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80; -x_198 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84; -lean_inc(x_10); -x_199 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_199, 0, x_10); -lean_ctor_set(x_199, 1, x_197); -lean_ctor_set(x_199, 2, x_196); -lean_ctor_set(x_199, 3, x_198); -lean_inc(x_120); -x_200 = lean_array_push(x_120, x_199); -x_201 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_201, 0, x_26); -lean_ctor_set(x_201, 1, x_122); -lean_ctor_set(x_201, 2, x_200); -x_202 = lean_array_push(x_102, x_201); -x_203 = lean_array_push(x_202, x_89); -x_204 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_204, 0, x_26); -lean_ctor_set(x_204, 1, x_105); -lean_ctor_set(x_204, 2, x_203); -x_205 = lean_array_push(x_99, x_204); -x_206 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_206, 0, x_26); -lean_ctor_set(x_206, 1, x_78); -lean_ctor_set(x_206, 2, x_205); -x_207 = lean_array_push(x_99, x_206); -x_208 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_208, 0, x_26); -lean_ctor_set(x_208, 1, x_130); -lean_ctor_set(x_208, 2, x_207); -x_209 = lean_array_push(x_99, x_208); -x_210 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_210, 0, x_26); -lean_ctor_set(x_210, 1, x_133); -lean_ctor_set(x_210, 2, x_209); -lean_inc(x_135); -x_211 = lean_array_push(x_135, x_210); -x_212 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_212, 0, x_26); -lean_ctor_set(x_212, 1, x_105); -lean_ctor_set(x_212, 2, x_211); -x_213 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__27; -lean_inc(x_10); -x_214 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_214, 0, x_10); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_array_push(x_99, x_214); -x_216 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85; -x_217 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_217, 0, x_26); -lean_ctor_set(x_217, 1, x_216); -lean_ctor_set(x_217, 2, x_215); -x_218 = lean_array_push(x_102, x_217); -x_219 = lean_array_push(x_218, x_89); -x_220 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_220, 0, x_26); -lean_ctor_set(x_220, 1, x_105); -lean_ctor_set(x_220, 2, x_219); -x_221 = lean_array_push(x_99, x_220); -x_222 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_222, 0, x_26); -lean_ctor_set(x_222, 1, x_78); -lean_ctor_set(x_222, 2, x_221); -x_223 = lean_array_push(x_99, x_222); -x_224 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_224, 0, x_26); -lean_ctor_set(x_224, 1, x_130); -lean_ctor_set(x_224, 2, x_223); -x_225 = lean_array_push(x_99, x_224); -x_226 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_226, 0, x_26); -lean_ctor_set(x_226, 1, x_133); -lean_ctor_set(x_226, 2, x_225); -lean_inc(x_135); -x_227 = lean_array_push(x_135, x_226); -x_228 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_228, 0, x_26); -lean_ctor_set(x_228, 1, x_105); -lean_ctor_set(x_228, 2, x_227); -x_229 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90; -lean_inc(x_11); -lean_inc(x_12); -x_230 = l_Lean_addMacroScope(x_12, x_229, x_11); -x_231 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88; -x_232 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92; -lean_inc(x_10); -x_233 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_233, 0, x_10); -lean_ctor_set(x_233, 1, x_231); -lean_ctor_set(x_233, 2, x_230); -lean_ctor_set(x_233, 3, x_232); -lean_inc(x_120); -x_234 = lean_array_push(x_120, x_233); -x_235 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_235, 0, x_26); -lean_ctor_set(x_235, 1, x_122); -lean_ctor_set(x_235, 2, x_234); -x_236 = lean_array_push(x_102, x_235); -lean_inc(x_101); -x_237 = lean_array_push(x_236, x_101); -x_238 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_238, 0, x_26); -lean_ctor_set(x_238, 1, x_105); -lean_ctor_set(x_238, 2, x_237); -x_239 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93; -lean_inc(x_10); -x_240 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_240, 0, x_10); -lean_ctor_set(x_240, 1, x_239); -x_241 = lean_array_push(x_99, x_240); -x_242 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94; -x_243 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_243, 0, x_26); -lean_ctor_set(x_243, 1, x_242); -lean_ctor_set(x_243, 2, x_241); -x_244 = lean_array_push(x_102, x_243); -x_245 = lean_array_push(x_244, x_89); -x_246 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_246, 0, x_26); -lean_ctor_set(x_246, 1, x_105); -lean_ctor_set(x_246, 2, x_245); -x_247 = lean_array_push(x_102, x_238); -lean_inc(x_246); -x_248 = lean_array_push(x_247, x_246); -x_249 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_249, 0, x_26); -lean_ctor_set(x_249, 1, x_78); -lean_ctor_set(x_249, 2, x_248); -x_250 = lean_array_push(x_99, x_249); -x_251 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_251, 0, x_26); -lean_ctor_set(x_251, 1, x_130); -lean_ctor_set(x_251, 2, x_250); -x_252 = lean_array_push(x_99, x_251); -x_253 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_253, 0, x_26); -lean_ctor_set(x_253, 1, x_133); -lean_ctor_set(x_253, 2, x_252); -lean_inc(x_135); -x_254 = lean_array_push(x_135, x_253); -x_255 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_255, 0, x_26); -lean_ctor_set(x_255, 1, x_105); -lean_ctor_set(x_255, 2, x_254); -x_256 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99; -x_257 = l_Lean_addMacroScope(x_12, x_256, x_11); -x_258 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97; -x_259 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101; -x_260 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_260, 0, x_10); -lean_ctor_set(x_260, 1, x_258); -lean_ctor_set(x_260, 2, x_257); -lean_ctor_set(x_260, 3, x_259); -x_261 = lean_array_push(x_120, x_260); -x_262 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_262, 0, x_26); -lean_ctor_set(x_262, 1, x_122); -lean_ctor_set(x_262, 2, x_261); -x_263 = lean_array_push(x_102, x_262); -x_264 = lean_array_push(x_263, x_101); -x_265 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_265, 0, x_26); -lean_ctor_set(x_265, 1, x_105); -lean_ctor_set(x_265, 2, x_264); -x_266 = lean_array_push(x_102, x_265); -lean_inc(x_246); -x_267 = lean_array_push(x_266, x_246); -x_268 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_268, 0, x_26); -lean_ctor_set(x_268, 1, x_78); -lean_ctor_set(x_268, 2, x_267); -x_269 = lean_array_push(x_99, x_268); -x_270 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_270, 0, x_26); -lean_ctor_set(x_270, 1, x_130); -lean_ctor_set(x_270, 2, x_269); -x_271 = lean_array_push(x_99, x_270); -x_272 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_272, 0, x_26); -lean_ctor_set(x_272, 1, x_133); -lean_ctor_set(x_272, 2, x_271); -lean_inc(x_135); -x_273 = lean_array_push(x_135, x_272); -x_274 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_274, 0, x_26); -lean_ctor_set(x_274, 1, x_105); -lean_ctor_set(x_274, 2, x_273); -x_275 = lean_array_push(x_99, x_246); -x_276 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_276, 0, x_26); -lean_ctor_set(x_276, 1, x_78); -lean_ctor_set(x_276, 2, x_275); -x_277 = lean_array_push(x_99, x_276); -x_278 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_278, 0, x_26); -lean_ctor_set(x_278, 1, x_130); -lean_ctor_set(x_278, 2, x_277); -x_279 = lean_array_push(x_99, x_278); -x_280 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_280, 0, x_26); -lean_ctor_set(x_280, 1, x_133); -lean_ctor_set(x_280, 2, x_279); -x_281 = lean_array_push(x_135, x_280); -x_282 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_282, 0, x_26); -lean_ctor_set(x_282, 1, x_105); -lean_ctor_set(x_282, 2, x_281); -x_283 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39; -x_284 = lean_array_push(x_283, x_212); -x_285 = lean_array_push(x_284, x_228); -x_286 = lean_array_push(x_285, x_255); -x_287 = lean_array_push(x_286, x_274); -x_288 = lean_array_push(x_287, x_282); -x_289 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_289, 0, x_26); -lean_ctor_set(x_289, 1, x_78); -lean_ctor_set(x_289, 2, x_288); -x_290 = lean_array_push(x_159, x_289); -x_291 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_291, 0, x_26); -lean_ctor_set(x_291, 1, x_161); -lean_ctor_set(x_291, 2, x_290); -x_292 = lean_array_push(x_102, x_291); -x_293 = lean_array_push(x_292, x_89); -x_294 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_294, 0, x_26); -lean_ctor_set(x_294, 1, x_105); -lean_ctor_set(x_294, 2, x_293); -x_295 = lean_array_push(x_82, x_106); -x_296 = lean_array_push(x_295, x_194); -x_297 = lean_array_push(x_296, x_294); -x_298 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_298, 0, x_26); -lean_ctor_set(x_298, 1, x_78); -lean_ctor_set(x_298, 2, x_297); -x_299 = lean_array_push(x_99, x_298); -x_300 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_300, 0, x_26); -lean_ctor_set(x_300, 1, x_130); -lean_ctor_set(x_300, 2, x_299); -x_301 = lean_array_push(x_99, x_300); -x_302 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_302, 0, x_26); -lean_ctor_set(x_302, 1, x_133); -lean_ctor_set(x_302, 2, x_301); -x_303 = lean_array_push(x_174, x_302); -x_304 = lean_array_push(x_303, x_173); -x_305 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_305, 0, x_26); -lean_ctor_set(x_305, 1, x_177); -lean_ctor_set(x_305, 2, x_304); -x_306 = lean_array_push(x_99, x_305); -x_307 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_307, 0, x_26); -lean_ctor_set(x_307, 1, x_78); -lean_ctor_set(x_307, 2, x_306); -x_308 = lean_array_push(x_99, x_307); -x_309 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; -x_310 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_310, 0, x_26); -lean_ctor_set(x_310, 1, x_309); -lean_ctor_set(x_310, 2, x_308); -lean_ctor_set(x_8, 0, x_310); -return x_8; -} -else -{ -lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; -x_311 = lean_ctor_get(x_8, 0); -x_312 = lean_ctor_get(x_8, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_8); -x_313 = lean_ctor_get(x_2, 2); -lean_inc(x_313); -x_314 = lean_ctor_get(x_2, 1); -lean_inc(x_314); -lean_dec(x_2); -x_315 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__4; -lean_inc(x_311); -x_316 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_316, 0, x_311); -lean_ctor_set(x_316, 1, x_315); -x_317 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6; -lean_inc(x_311); -x_318 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_318, 0, x_311); -lean_ctor_set(x_318, 1, x_317); -x_319 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__12; -lean_inc(x_311); -x_320 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_320, 0, x_311); -lean_ctor_set(x_320, 1, x_319); -x_321 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13; -lean_inc(x_313); -lean_inc(x_314); -x_322 = l_Lean_addMacroScope(x_314, x_321, x_313); -x_323 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12; -x_324 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15; -lean_inc(x_311); -x_325 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_325, 0, x_311); -lean_ctor_set(x_325, 1, x_323); -lean_ctor_set(x_325, 2, x_322); -lean_ctor_set(x_325, 3, x_324); -x_326 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17; -x_327 = lean_array_push(x_326, x_325); -x_328 = lean_box(2); -x_329 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9; -x_330 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_330, 0, x_328); -lean_ctor_set(x_330, 1, x_329); -lean_ctor_set(x_330, 2, x_327); -x_331 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__1; -lean_inc(x_311); -x_332 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_332, 0, x_311); -lean_ctor_set(x_332, 1, x_331); -x_333 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21; -lean_inc(x_313); -lean_inc(x_314); -x_334 = l_Lean_addMacroScope(x_314, x_333, x_313); -x_335 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20; -x_336 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23; -lean_inc(x_311); -x_337 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_337, 0, x_311); -lean_ctor_set(x_337, 1, x_335); -lean_ctor_set(x_337, 2, x_334); -lean_ctor_set(x_337, 3, x_336); -x_338 = lean_array_push(x_326, x_337); -x_339 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_339, 0, x_328); -lean_ctor_set(x_339, 1, x_329); -lean_ctor_set(x_339, 2, x_338); -x_340 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28; -lean_inc(x_313); -lean_inc(x_314); -x_341 = l_Lean_addMacroScope(x_314, x_340, x_313); -x_342 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26; -x_343 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30; -lean_inc(x_311); -x_344 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_344, 0, x_311); -lean_ctor_set(x_344, 1, x_342); -lean_ctor_set(x_344, 2, x_341); -lean_ctor_set(x_344, 3, x_343); -x_345 = lean_array_push(x_326, x_344); -x_346 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_346, 0, x_328); -lean_ctor_set(x_346, 1, x_329); -lean_ctor_set(x_346, 2, x_345); -x_347 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34; -lean_inc(x_313); -lean_inc(x_314); -x_348 = l_Lean_addMacroScope(x_314, x_347, x_313); -x_349 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33; -x_350 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36; -lean_inc(x_311); -x_351 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_351, 0, x_311); -lean_ctor_set(x_351, 1, x_349); -lean_ctor_set(x_351, 2, x_348); -lean_ctor_set(x_351, 3, x_350); -x_352 = lean_array_push(x_326, x_351); -x_353 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_353, 0, x_328); -lean_ctor_set(x_353, 1, x_329); -lean_ctor_set(x_353, 2, x_352); -x_354 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40; -lean_inc(x_313); -lean_inc(x_314); -x_355 = l_Lean_addMacroScope(x_314, x_354, x_313); -x_356 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39; -x_357 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42; -lean_inc(x_311); -x_358 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_358, 0, x_311); -lean_ctor_set(x_358, 1, x_356); -lean_ctor_set(x_358, 2, x_355); -lean_ctor_set(x_358, 3, x_357); -x_359 = lean_array_push(x_326, x_358); -x_360 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_360, 0, x_328); -lean_ctor_set(x_360, 1, x_329); -lean_ctor_set(x_360, 2, x_359); -x_361 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49; -lean_inc(x_313); -lean_inc(x_314); -x_362 = l_Lean_addMacroScope(x_314, x_361, x_313); -x_363 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45; -x_364 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51; -lean_inc(x_311); -x_365 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_365, 0, x_311); -lean_ctor_set(x_365, 1, x_363); -lean_ctor_set(x_365, 2, x_362); -lean_ctor_set(x_365, 3, x_364); -x_366 = lean_array_push(x_326, x_365); -x_367 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_367, 0, x_328); -lean_ctor_set(x_367, 1, x_329); -lean_ctor_set(x_367, 2, x_366); -x_368 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52; -x_369 = lean_array_push(x_368, x_330); -lean_inc(x_332); -x_370 = lean_array_push(x_369, x_332); -x_371 = lean_array_push(x_370, x_339); -lean_inc(x_332); -x_372 = lean_array_push(x_371, x_332); -x_373 = lean_array_push(x_372, x_346); -lean_inc(x_332); -x_374 = lean_array_push(x_373, x_332); -x_375 = lean_array_push(x_374, x_353); -lean_inc(x_332); -x_376 = lean_array_push(x_375, x_332); -x_377 = lean_array_push(x_376, x_360); -x_378 = lean_array_push(x_377, x_332); -x_379 = lean_array_push(x_378, x_367); -x_380 = l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; -x_381 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_381, 0, x_328); -lean_ctor_set(x_381, 1, x_380); -lean_ctor_set(x_381, 2, x_379); -x_382 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__16; -lean_inc(x_311); -x_383 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_383, 0, x_311); -lean_ctor_set(x_383, 1, x_382); -x_384 = l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__4; -x_385 = lean_array_push(x_384, x_320); -x_386 = lean_array_push(x_385, x_381); -x_387 = lean_array_push(x_386, x_383); -x_388 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_388, 0, x_328); -lean_ctor_set(x_388, 1, x_380); -lean_ctor_set(x_388, 2, x_387); -x_389 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38; -x_390 = lean_array_push(x_389, x_318); -x_391 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; -x_392 = lean_array_push(x_390, x_391); -x_393 = lean_array_push(x_392, x_391); -x_394 = lean_array_push(x_393, x_391); -x_395 = lean_array_push(x_394, x_388); -x_396 = lean_array_push(x_395, x_391); -x_397 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7; -x_398 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_398, 0, x_328); -lean_ctor_set(x_398, 1, x_397); -lean_ctor_set(x_398, 2, x_396); -x_399 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53; -lean_inc(x_311); -x_400 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_400, 0, x_311); -lean_ctor_set(x_400, 1, x_399); -x_401 = l_Lean_mkOptionalNode___closed__2; -x_402 = lean_array_push(x_401, x_400); -x_403 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_403, 0, x_328); -lean_ctor_set(x_403, 1, x_380); -lean_ctor_set(x_403, 2, x_402); -x_404 = l_Lean_Syntax_mkApp___closed__3; -x_405 = lean_array_push(x_404, x_398); -lean_inc(x_403); -x_406 = lean_array_push(x_405, x_403); -x_407 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; -x_408 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_408, 0, x_328); -lean_ctor_set(x_408, 1, x_407); -lean_ctor_set(x_408, 2, x_406); -x_409 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56; -lean_inc(x_311); -x_410 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_410, 0, x_311); -lean_ctor_set(x_410, 1, x_409); -x_411 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57; -lean_inc(x_311); -x_412 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_412, 0, x_311); -lean_ctor_set(x_412, 1, x_411); -x_413 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59; -lean_inc(x_311); -x_414 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_414, 0, x_311); -lean_ctor_set(x_414, 1, x_413); -x_415 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60; -lean_inc(x_311); -x_416 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_416, 0, x_311); -lean_ctor_set(x_416, 1, x_415); -x_417 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68; -lean_inc(x_313); -lean_inc(x_314); -x_418 = l_Lean_addMacroScope(x_314, x_417, x_313); -x_419 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64; -x_420 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70; -lean_inc(x_311); -x_421 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_421, 0, x_311); -lean_ctor_set(x_421, 1, x_419); -lean_ctor_set(x_421, 2, x_418); -lean_ctor_set(x_421, 3, x_420); -x_422 = lean_array_push(x_404, x_416); -lean_inc(x_422); -x_423 = lean_array_push(x_422, x_421); -x_424 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61; -x_425 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_425, 0, x_328); -lean_ctor_set(x_425, 1, x_424); -lean_ctor_set(x_425, 2, x_423); -x_426 = lean_array_push(x_404, x_425); -x_427 = lean_array_push(x_426, x_391); -x_428 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_428, 0, x_328); -lean_ctor_set(x_428, 1, x_407); -lean_ctor_set(x_428, 2, x_427); -x_429 = lean_array_push(x_401, x_428); -x_430 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_430, 0, x_328); -lean_ctor_set(x_430, 1, x_380); -lean_ctor_set(x_430, 2, x_429); -x_431 = lean_array_push(x_401, x_430); -x_432 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5; -x_433 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_433, 0, x_328); -lean_ctor_set(x_433, 1, x_432); -lean_ctor_set(x_433, 2, x_431); -x_434 = lean_array_push(x_401, x_433); -x_435 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3; -x_436 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_436, 0, x_328); -lean_ctor_set(x_436, 1, x_435); -lean_ctor_set(x_436, 2, x_434); -x_437 = lean_array_push(x_404, x_414); -lean_inc(x_437); -x_438 = lean_array_push(x_437, x_436); -x_439 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_439, 0, x_328); -lean_ctor_set(x_439, 1, x_407); -lean_ctor_set(x_439, 2, x_438); -x_440 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75; -lean_inc(x_313); -lean_inc(x_314); -x_441 = l_Lean_addMacroScope(x_314, x_440, x_313); -x_442 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73; -x_443 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77; -lean_inc(x_311); -x_444 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_444, 0, x_311); -lean_ctor_set(x_444, 1, x_442); -lean_ctor_set(x_444, 2, x_441); -lean_ctor_set(x_444, 3, x_443); -lean_inc(x_422); -x_445 = lean_array_push(x_422, x_444); -x_446 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_446, 0, x_328); -lean_ctor_set(x_446, 1, x_424); -lean_ctor_set(x_446, 2, x_445); -x_447 = lean_array_push(x_404, x_446); -x_448 = lean_array_push(x_447, x_391); -x_449 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_449, 0, x_328); -lean_ctor_set(x_449, 1, x_407); -lean_ctor_set(x_449, 2, x_448); -x_450 = lean_array_push(x_401, x_449); -x_451 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_451, 0, x_328); -lean_ctor_set(x_451, 1, x_380); -lean_ctor_set(x_451, 2, x_450); -x_452 = lean_array_push(x_401, x_451); -x_453 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_453, 0, x_328); -lean_ctor_set(x_453, 1, x_432); -lean_ctor_set(x_453, 2, x_452); -x_454 = lean_array_push(x_401, x_453); -x_455 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_455, 0, x_328); -lean_ctor_set(x_455, 1, x_435); -lean_ctor_set(x_455, 2, x_454); -lean_inc(x_437); -x_456 = lean_array_push(x_437, x_455); -x_457 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_457, 0, x_328); -lean_ctor_set(x_457, 1, x_407); -lean_ctor_set(x_457, 2, x_456); -x_458 = lean_array_push(x_404, x_439); -x_459 = lean_array_push(x_458, x_457); -x_460 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_460, 0, x_328); -lean_ctor_set(x_460, 1, x_380); -lean_ctor_set(x_460, 2, x_459); -x_461 = lean_array_push(x_404, x_412); -lean_inc(x_461); -x_462 = lean_array_push(x_461, x_460); -x_463 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58; -x_464 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_464, 0, x_328); -lean_ctor_set(x_464, 1, x_463); -lean_ctor_set(x_464, 2, x_462); -x_465 = lean_array_push(x_404, x_464); -x_466 = lean_array_push(x_465, x_391); -x_467 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_467, 0, x_328); -lean_ctor_set(x_467, 1, x_407); -lean_ctor_set(x_467, 2, x_466); -x_468 = lean_array_push(x_401, x_467); -x_469 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_469, 0, x_328); -lean_ctor_set(x_469, 1, x_380); -lean_ctor_set(x_469, 2, x_468); -x_470 = lean_array_push(x_401, x_469); -x_471 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_471, 0, x_328); -lean_ctor_set(x_471, 1, x_432); -lean_ctor_set(x_471, 2, x_470); -x_472 = lean_array_push(x_401, x_471); -x_473 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_473, 0, x_328); -lean_ctor_set(x_473, 1, x_435); -lean_ctor_set(x_473, 2, x_472); -x_474 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_1041____spec__3___closed__8; -lean_inc(x_311); -x_475 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_475, 0, x_311); -lean_ctor_set(x_475, 1, x_474); -x_476 = lean_array_push(x_384, x_316); -lean_inc(x_476); -x_477 = lean_array_push(x_476, x_473); -lean_inc(x_475); -x_478 = lean_array_push(x_477, x_475); -x_479 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1; -x_480 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_480, 0, x_328); -lean_ctor_set(x_480, 1, x_479); -lean_ctor_set(x_480, 2, x_478); -x_481 = lean_array_push(x_404, x_480); -x_482 = lean_array_push(x_481, x_391); -x_483 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_483, 0, x_328); -lean_ctor_set(x_483, 1, x_407); -lean_ctor_set(x_483, 2, x_482); -x_484 = lean_array_push(x_401, x_483); -x_485 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_485, 0, x_328); -lean_ctor_set(x_485, 1, x_380); -lean_ctor_set(x_485, 2, x_484); -x_486 = lean_array_push(x_401, x_485); -x_487 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_487, 0, x_328); -lean_ctor_set(x_487, 1, x_432); -lean_ctor_set(x_487, 2, x_486); -x_488 = lean_array_push(x_401, x_487); -x_489 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_489, 0, x_328); -lean_ctor_set(x_489, 1, x_435); -lean_ctor_set(x_489, 2, x_488); -x_490 = lean_array_push(x_404, x_410); -x_491 = lean_array_push(x_490, x_489); -x_492 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55; -x_493 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_493, 0, x_328); -lean_ctor_set(x_493, 1, x_492); -lean_ctor_set(x_493, 2, x_491); -x_494 = lean_array_push(x_404, x_493); -x_495 = lean_array_push(x_494, x_391); -x_496 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_496, 0, x_328); -lean_ctor_set(x_496, 1, x_407); -lean_ctor_set(x_496, 2, x_495); -x_497 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82; -lean_inc(x_313); -lean_inc(x_314); -x_498 = l_Lean_addMacroScope(x_314, x_497, x_313); -x_499 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80; -x_500 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84; -lean_inc(x_311); -x_501 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_501, 0, x_311); -lean_ctor_set(x_501, 1, x_499); -lean_ctor_set(x_501, 2, x_498); -lean_ctor_set(x_501, 3, x_500); -lean_inc(x_422); -x_502 = lean_array_push(x_422, x_501); -x_503 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_503, 0, x_328); -lean_ctor_set(x_503, 1, x_424); -lean_ctor_set(x_503, 2, x_502); -x_504 = lean_array_push(x_404, x_503); -x_505 = lean_array_push(x_504, x_391); -x_506 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_506, 0, x_328); -lean_ctor_set(x_506, 1, x_407); -lean_ctor_set(x_506, 2, x_505); -x_507 = lean_array_push(x_401, x_506); -x_508 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_508, 0, x_328); -lean_ctor_set(x_508, 1, x_380); -lean_ctor_set(x_508, 2, x_507); -x_509 = lean_array_push(x_401, x_508); -x_510 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_510, 0, x_328); -lean_ctor_set(x_510, 1, x_432); -lean_ctor_set(x_510, 2, x_509); -x_511 = lean_array_push(x_401, x_510); -x_512 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_512, 0, x_328); -lean_ctor_set(x_512, 1, x_435); -lean_ctor_set(x_512, 2, x_511); -lean_inc(x_437); -x_513 = lean_array_push(x_437, x_512); -x_514 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_514, 0, x_328); -lean_ctor_set(x_514, 1, x_407); -lean_ctor_set(x_514, 2, x_513); -x_515 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8929____closed__27; -lean_inc(x_311); -x_516 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_516, 0, x_311); -lean_ctor_set(x_516, 1, x_515); -x_517 = lean_array_push(x_401, x_516); -x_518 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85; -x_519 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_519, 0, x_328); -lean_ctor_set(x_519, 1, x_518); -lean_ctor_set(x_519, 2, x_517); -x_520 = lean_array_push(x_404, x_519); -x_521 = lean_array_push(x_520, x_391); -x_522 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_522, 0, x_328); -lean_ctor_set(x_522, 1, x_407); -lean_ctor_set(x_522, 2, x_521); -x_523 = lean_array_push(x_401, x_522); -x_524 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_524, 0, x_328); -lean_ctor_set(x_524, 1, x_380); -lean_ctor_set(x_524, 2, x_523); -x_525 = lean_array_push(x_401, x_524); -x_526 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_526, 0, x_328); -lean_ctor_set(x_526, 1, x_432); -lean_ctor_set(x_526, 2, x_525); -x_527 = lean_array_push(x_401, x_526); -x_528 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_528, 0, x_328); -lean_ctor_set(x_528, 1, x_435); -lean_ctor_set(x_528, 2, x_527); -lean_inc(x_437); -x_529 = lean_array_push(x_437, x_528); -x_530 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_530, 0, x_328); -lean_ctor_set(x_530, 1, x_407); -lean_ctor_set(x_530, 2, x_529); -x_531 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90; -lean_inc(x_313); -lean_inc(x_314); -x_532 = l_Lean_addMacroScope(x_314, x_531, x_313); -x_533 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88; -x_534 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92; -lean_inc(x_311); -x_535 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_535, 0, x_311); -lean_ctor_set(x_535, 1, x_533); -lean_ctor_set(x_535, 2, x_532); -lean_ctor_set(x_535, 3, x_534); -lean_inc(x_422); -x_536 = lean_array_push(x_422, x_535); -x_537 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_537, 0, x_328); -lean_ctor_set(x_537, 1, x_424); -lean_ctor_set(x_537, 2, x_536); -x_538 = lean_array_push(x_404, x_537); -lean_inc(x_403); -x_539 = lean_array_push(x_538, x_403); -x_540 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_540, 0, x_328); -lean_ctor_set(x_540, 1, x_407); -lean_ctor_set(x_540, 2, x_539); -x_541 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93; -lean_inc(x_311); -x_542 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_542, 0, x_311); -lean_ctor_set(x_542, 1, x_541); -x_543 = lean_array_push(x_401, x_542); -x_544 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94; -x_545 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_545, 0, x_328); -lean_ctor_set(x_545, 1, x_544); -lean_ctor_set(x_545, 2, x_543); -x_546 = lean_array_push(x_404, x_545); -x_547 = lean_array_push(x_546, x_391); -x_548 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_548, 0, x_328); -lean_ctor_set(x_548, 1, x_407); -lean_ctor_set(x_548, 2, x_547); -x_549 = lean_array_push(x_404, x_540); -lean_inc(x_548); -x_550 = lean_array_push(x_549, x_548); -x_551 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_551, 0, x_328); -lean_ctor_set(x_551, 1, x_380); -lean_ctor_set(x_551, 2, x_550); -x_552 = lean_array_push(x_401, x_551); -x_553 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_553, 0, x_328); -lean_ctor_set(x_553, 1, x_432); -lean_ctor_set(x_553, 2, x_552); -x_554 = lean_array_push(x_401, x_553); -x_555 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_555, 0, x_328); -lean_ctor_set(x_555, 1, x_435); -lean_ctor_set(x_555, 2, x_554); -lean_inc(x_437); -x_556 = lean_array_push(x_437, x_555); -x_557 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_557, 0, x_328); -lean_ctor_set(x_557, 1, x_407); -lean_ctor_set(x_557, 2, x_556); -x_558 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99; -x_559 = l_Lean_addMacroScope(x_314, x_558, x_313); -x_560 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97; -x_561 = l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101; -x_562 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_562, 0, x_311); -lean_ctor_set(x_562, 1, x_560); -lean_ctor_set(x_562, 2, x_559); -lean_ctor_set(x_562, 3, x_561); -x_563 = lean_array_push(x_422, x_562); -x_564 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_564, 0, x_328); -lean_ctor_set(x_564, 1, x_424); -lean_ctor_set(x_564, 2, x_563); -x_565 = lean_array_push(x_404, x_564); -x_566 = lean_array_push(x_565, x_403); -x_567 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_567, 0, x_328); -lean_ctor_set(x_567, 1, x_407); -lean_ctor_set(x_567, 2, x_566); -x_568 = lean_array_push(x_404, x_567); -lean_inc(x_548); -x_569 = lean_array_push(x_568, x_548); -x_570 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_570, 0, x_328); -lean_ctor_set(x_570, 1, x_380); -lean_ctor_set(x_570, 2, x_569); -x_571 = lean_array_push(x_401, x_570); -x_572 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_572, 0, x_328); -lean_ctor_set(x_572, 1, x_432); -lean_ctor_set(x_572, 2, x_571); -x_573 = lean_array_push(x_401, x_572); -x_574 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_574, 0, x_328); -lean_ctor_set(x_574, 1, x_435); -lean_ctor_set(x_574, 2, x_573); -lean_inc(x_437); -x_575 = lean_array_push(x_437, x_574); -x_576 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_576, 0, x_328); -lean_ctor_set(x_576, 1, x_407); -lean_ctor_set(x_576, 2, x_575); -x_577 = lean_array_push(x_401, x_548); -x_578 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_578, 0, x_328); -lean_ctor_set(x_578, 1, x_380); -lean_ctor_set(x_578, 2, x_577); -x_579 = lean_array_push(x_401, x_578); -x_580 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_580, 0, x_328); -lean_ctor_set(x_580, 1, x_432); -lean_ctor_set(x_580, 2, x_579); -x_581 = lean_array_push(x_401, x_580); -x_582 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_582, 0, x_328); -lean_ctor_set(x_582, 1, x_435); -lean_ctor_set(x_582, 2, x_581); -x_583 = lean_array_push(x_437, x_582); -x_584 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_584, 0, x_328); -lean_ctor_set(x_584, 1, x_407); -lean_ctor_set(x_584, 2, x_583); -x_585 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39; -x_586 = lean_array_push(x_585, x_514); -x_587 = lean_array_push(x_586, x_530); -x_588 = lean_array_push(x_587, x_557); -x_589 = lean_array_push(x_588, x_576); -x_590 = lean_array_push(x_589, x_584); -x_591 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_591, 0, x_328); -lean_ctor_set(x_591, 1, x_380); -lean_ctor_set(x_591, 2, x_590); -x_592 = lean_array_push(x_461, x_591); -x_593 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_593, 0, x_328); -lean_ctor_set(x_593, 1, x_463); -lean_ctor_set(x_593, 2, x_592); -x_594 = lean_array_push(x_404, x_593); -x_595 = lean_array_push(x_594, x_391); -x_596 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_596, 0, x_328); -lean_ctor_set(x_596, 1, x_407); -lean_ctor_set(x_596, 2, x_595); -x_597 = lean_array_push(x_384, x_408); -x_598 = lean_array_push(x_597, x_496); -x_599 = lean_array_push(x_598, x_596); -x_600 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_600, 0, x_328); -lean_ctor_set(x_600, 1, x_380); -lean_ctor_set(x_600, 2, x_599); -x_601 = lean_array_push(x_401, x_600); -x_602 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_602, 0, x_328); -lean_ctor_set(x_602, 1, x_432); -lean_ctor_set(x_602, 2, x_601); -x_603 = lean_array_push(x_401, x_602); -x_604 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_604, 0, x_328); -lean_ctor_set(x_604, 1, x_435); -lean_ctor_set(x_604, 2, x_603); -x_605 = lean_array_push(x_476, x_604); -x_606 = lean_array_push(x_605, x_475); -x_607 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_607, 0, x_328); -lean_ctor_set(x_607, 1, x_479); -lean_ctor_set(x_607, 2, x_606); -x_608 = lean_array_push(x_401, x_607); -x_609 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_609, 0, x_328); -lean_ctor_set(x_609, 1, x_380); -lean_ctor_set(x_609, 2, x_608); -x_610 = lean_array_push(x_401, x_609); -x_611 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; -x_612 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_612, 0, x_328); -lean_ctor_set(x_612, 1, x_611); -lean_ctor_set(x_612, 2, x_610); -x_613 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_613, 0, x_612); -lean_ctor_set(x_613, 1, x_312); -return x_613; -} -} -} -} lean_object* initialize_Init_Data_Array_Basic(lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Meta(lean_object* w) { @@ -22257,220 +19699,6 @@ l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__ta lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41); l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42(); lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42); -l_tacticDefault__decreasing__tactic___closed__1 = _init_l_tacticDefault__decreasing__tactic___closed__1(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__1); -l_tacticDefault__decreasing__tactic___closed__2 = _init_l_tacticDefault__decreasing__tactic___closed__2(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__2); -l_tacticDefault__decreasing__tactic___closed__3 = _init_l_tacticDefault__decreasing__tactic___closed__3(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__3); -l_tacticDefault__decreasing__tactic___closed__4 = _init_l_tacticDefault__decreasing__tactic___closed__4(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__4); -l_tacticDefault__decreasing__tactic___closed__5 = _init_l_tacticDefault__decreasing__tactic___closed__5(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__5); -l_tacticDefault__decreasing__tactic = _init_l_tacticDefault__decreasing__tactic(); -lean_mark_persistent(l_tacticDefault__decreasing__tactic); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__1); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__2); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__3); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__4); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__5); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__6); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__7); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__8); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__9); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__10); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__11); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__12); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__13); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__14); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__15); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__16); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__17); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__18); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__19); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__20); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__21); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__22); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__23); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__24); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__25); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__26); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__27); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__28); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__29); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__30); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__31); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__32); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__33); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__34); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__35); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__36); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__37); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__38); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__39); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__40); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__41); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__42); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__43); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__44); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__45); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__46); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__47); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__48); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__49); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__50); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__51); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__52); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__53); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__54); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__55); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__56); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__57); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__58); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__59); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__60); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__61); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__62); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__63); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__64); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__65); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__66); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__67); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__68); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__69); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__70); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__71); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__72); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__73); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__74); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__75); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__76); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__77); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__78); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__79); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__80); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__81); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__82); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__83); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__84); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__85); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__86); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__87); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__88); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__89); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__90); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__91); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__92); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__93); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__94); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__95); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__96); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__97); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__98); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__99); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__100); -l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101 = _init_l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101(); -lean_mark_persistent(l___aux__Init__Meta______macroRules__tacticDefault__decreasing__tactic__1___closed__101); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Prelude.c b/stage0/stdlib/Init/Prelude.c index d630e20237..ad2b9ebd72 100644 --- a/stage0/stdlib/Init/Prelude.c +++ b/stage0/stdlib/Init/Prelude.c @@ -8211,38 +8211,39 @@ return x_4; LEAN_EXPORT lean_object* l_Lean_SourceInfo_fromRef(lean_object* x_1) { _start: { -uint8_t x_2; lean_object* x_3; +uint8_t x_2; lean_object* x_3; lean_object* x_4; x_2 = 0; -x_3 = l_Lean_Syntax_getPos_x3f(x_1, x_2); +lean_inc(x_1); +x_3 = l_Lean_Syntax_getTailPos_x3f(x_1, x_2); +x_4 = l_Lean_Syntax_getPos_x3f(x_1, x_2); +lean_dec(x_1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +lean_dec(x_3); +x_5 = lean_box(2); +return x_5; +} +else +{ if (lean_obj_tag(x_3) == 0) { -lean_object* x_4; -lean_dec(x_1); -x_4 = lean_box(2); -return x_4; +lean_object* x_6; +lean_dec(x_4); +x_6 = lean_box(2); +return x_6; } else { -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); -lean_dec(x_3); -x_6 = l_Lean_Syntax_getTailPos_x3f(x_1, x_2); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -lean_dec(x_5); -x_7 = lean_box(2); -return x_7; -} -else -{ -lean_object* x_8; lean_object* x_9; -x_8 = lean_ctor_get(x_6, 0); +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +lean_dec(x_4); +x_8 = lean_ctor_get(x_3, 0); lean_inc(x_8); -lean_dec(x_6); +lean_dec(x_3); x_9 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_9, 0, x_5); +lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); return x_9; } diff --git a/stage0/stdlib/Init/WFTactics.c b/stage0/stdlib/Init/WFTactics.c new file mode 100644 index 0000000000..673b6e981a --- /dev/null +++ b/stage0/stdlib/Init/WFTactics.c @@ -0,0 +1,5750 @@ +// Lean compiler output +// Module: Init.WFTactics +// Imports: Init.SizeOf Init.WF +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2; +lean_object* lean_name_mk_string(lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130; +static lean_object* l_tacticDecreasing__tactic___closed__2; +lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +static lean_object* l_tacticDecreasing__tactic___closed__1; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59; +static lean_object* l_tacticDefault__decreasing__tactic___closed__1; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113; +static lean_object* l_tacticDefault__decreasing__tactic___closed__5; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +LEAN_EXPORT lean_object* l___aux__Init__WFTactics______macroRules__tacticDecreasing__tactic__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31; +static lean_object* l_tacticDefault__decreasing__tactic___closed__3; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +static lean_object* l_tacticDecreasing__tactic___closed__3; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36; +static lean_object* l_tacticDefault__decreasing__tactic___closed__4; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69; +static lean_object* l_tacticDecreasing__tactic___closed__5; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +LEAN_EXPORT lean_object* l_tacticDefault__decreasing__tactic; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43; +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138; +LEAN_EXPORT lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103; +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +static lean_object* l_tacticDecreasing__tactic___closed__4; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +static lean_object* l_tacticDefault__decreasing__tactic___closed__2; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +LEAN_EXPORT lean_object* l_tacticDecreasing__tactic; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7; +static lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63; +static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticDefault_decreasing_tactic"); +return x_1; +} +} +static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_tacticDefault__decreasing__tactic___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("default_decreasing_tactic"); +return x_1; +} +} +static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_tacticDefault__decreasing__tactic___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_tacticDefault__decreasing__tactic___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_tacticDefault__decreasing__tactic___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_tacticDefault__decreasing__tactic___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_tacticDefault__decreasing__tactic() { +_start: +{ +lean_object* x_1; +x_1 = l_tacticDefault__decreasing__tactic___closed__5; +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Parser"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Tactic"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("seq1"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("null"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("paren"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("("); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticSeq"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticSeq1Indented"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("group"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("simp"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(2); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22; +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("["); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("simpLemma"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invImage"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(3u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(","); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("InvImage"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Prod.lex"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Prod"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("lex"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("sizeOfWFRel"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("measure"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat.lt_wfRel"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("lt_wfRel"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(11u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("]"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(6u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(";"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticRepeat_"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("repeat"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("first"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("|"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("apply"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Prod.Lex.right"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lex"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("right"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Prod.Lex.left"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("left"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(")"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("PSigma.Lex.right"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("PSigma"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("PSigma.Lex.left"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat.lt_succ_self"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("lt_succ_self"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("decide"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat.pred_lt"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("pred_lt"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("assumption"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat.pred_lt'"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("pred_lt'"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Nat.sub_succ_lt_self"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("sub_succ_lt_self"); +return x_1; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68; +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(4u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_tacticDefault__decreasing__tactic___closed__2; +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_2); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; uint8_t x_9; +lean_inc(x_2); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_2, 2); +lean_inc(x_11); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_12); +lean_dec(x_2); +x_13 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13; +lean_inc(x_10); +x_14 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_13); +x_15 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +lean_inc(x_10); +x_16 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_16, 0, x_10); +lean_ctor_set(x_16, 1, x_15); +x_17 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24; +lean_inc(x_10); +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_10); +lean_ctor_set(x_18, 1, x_17); +x_19 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +lean_inc(x_11); +lean_inc(x_12); +x_20 = l_Lean_addMacroScope(x_12, x_19, x_11); +x_21 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29; +x_22 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32; +lean_inc(x_10); +x_23 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_23, 0, x_10); +lean_ctor_set(x_23, 1, x_21); +lean_ctor_set(x_23, 2, x_20); +lean_ctor_set(x_23, 3, x_22); +x_24 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35; +x_25 = lean_array_push(x_24, x_23); +x_26 = lean_box(2); +x_27 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26; +x_28 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +lean_ctor_set(x_28, 2, x_25); +x_29 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36; +lean_inc(x_10); +x_30 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_30, 0, x_10); +lean_ctor_set(x_30, 1, x_29); +x_31 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +lean_inc(x_11); +lean_inc(x_12); +x_32 = l_Lean_addMacroScope(x_12, x_31, x_11); +x_33 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39; +x_34 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42; +lean_inc(x_10); +x_35 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_35, 0, x_10); +lean_ctor_set(x_35, 1, x_33); +lean_ctor_set(x_35, 2, x_32); +lean_ctor_set(x_35, 3, x_34); +x_36 = lean_array_push(x_24, x_35); +x_37 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_37, 0, x_26); +lean_ctor_set(x_37, 1, x_27); +lean_ctor_set(x_37, 2, x_36); +x_38 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +lean_inc(x_11); +lean_inc(x_12); +x_39 = l_Lean_addMacroScope(x_12, x_38, x_11); +x_40 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45; +x_41 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51; +lean_inc(x_10); +x_42 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_42, 0, x_10); +lean_ctor_set(x_42, 1, x_40); +lean_ctor_set(x_42, 2, x_39); +lean_ctor_set(x_42, 3, x_41); +x_43 = lean_array_push(x_24, x_42); +x_44 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_44, 0, x_26); +lean_ctor_set(x_44, 1, x_27); +lean_ctor_set(x_44, 2, x_43); +x_45 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +lean_inc(x_11); +lean_inc(x_12); +x_46 = l_Lean_addMacroScope(x_12, x_45, x_11); +x_47 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54; +x_48 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57; +lean_inc(x_10); +x_49 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_49, 0, x_10); +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_49, 2, x_46); +lean_ctor_set(x_49, 3, x_48); +x_50 = lean_array_push(x_24, x_49); +x_51 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_51, 0, x_26); +lean_ctor_set(x_51, 1, x_27); +lean_ctor_set(x_51, 2, x_50); +x_52 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +lean_inc(x_11); +lean_inc(x_12); +x_53 = l_Lean_addMacroScope(x_12, x_52, x_11); +x_54 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60; +x_55 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63; +lean_inc(x_10); +x_56 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_56, 0, x_10); +lean_ctor_set(x_56, 1, x_54); +lean_ctor_set(x_56, 2, x_53); +lean_ctor_set(x_56, 3, x_55); +x_57 = lean_array_push(x_24, x_56); +x_58 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_58, 0, x_26); +lean_ctor_set(x_58, 1, x_27); +lean_ctor_set(x_58, 2, x_57); +x_59 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +lean_inc(x_11); +lean_inc(x_12); +x_60 = l_Lean_addMacroScope(x_12, x_59, x_11); +x_61 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66; +x_62 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72; +lean_inc(x_10); +x_63 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_63, 0, x_10); +lean_ctor_set(x_63, 1, x_61); +lean_ctor_set(x_63, 2, x_60); +lean_ctor_set(x_63, 3, x_62); +x_64 = lean_array_push(x_24, x_63); +x_65 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_65, 0, x_26); +lean_ctor_set(x_65, 1, x_27); +lean_ctor_set(x_65, 2, x_64); +x_66 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73; +x_67 = lean_array_push(x_66, x_28); +lean_inc(x_30); +x_68 = lean_array_push(x_67, x_30); +x_69 = lean_array_push(x_68, x_37); +lean_inc(x_30); +x_70 = lean_array_push(x_69, x_30); +x_71 = lean_array_push(x_70, x_44); +lean_inc(x_30); +x_72 = lean_array_push(x_71, x_30); +x_73 = lean_array_push(x_72, x_51); +lean_inc(x_30); +x_74 = lean_array_push(x_73, x_30); +x_75 = lean_array_push(x_74, x_58); +x_76 = lean_array_push(x_75, x_30); +x_77 = lean_array_push(x_76, x_65); +x_78 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +x_79 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_79, 0, x_26); +lean_ctor_set(x_79, 1, x_78); +lean_ctor_set(x_79, 2, x_77); +x_80 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74; +lean_inc(x_10); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_10); +lean_ctor_set(x_81, 1, x_80); +x_82 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +x_83 = lean_array_push(x_82, x_18); +x_84 = lean_array_push(x_83, x_79); +x_85 = lean_array_push(x_84, x_81); +x_86 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_86, 0, x_26); +lean_ctor_set(x_86, 1, x_78); +lean_ctor_set(x_86, 2, x_85); +x_87 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75; +x_88 = lean_array_push(x_87, x_16); +x_89 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_90 = lean_array_push(x_88, x_89); +x_91 = lean_array_push(x_90, x_89); +x_92 = lean_array_push(x_91, x_89); +x_93 = lean_array_push(x_92, x_86); +x_94 = lean_array_push(x_93, x_89); +x_95 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21; +x_96 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_96, 0, x_26); +lean_ctor_set(x_96, 1, x_95); +lean_ctor_set(x_96, 2, x_94); +x_97 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76; +lean_inc(x_10); +x_98 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_98, 0, x_10); +lean_ctor_set(x_98, 1, x_97); +x_99 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77; +x_100 = lean_array_push(x_99, x_98); +x_101 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_101, 0, x_26); +lean_ctor_set(x_101, 1, x_78); +lean_ctor_set(x_101, 2, x_100); +x_102 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78; +x_103 = lean_array_push(x_102, x_96); +lean_inc(x_101); +x_104 = lean_array_push(x_103, x_101); +x_105 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19; +x_106 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_106, 0, x_26); +lean_ctor_set(x_106, 1, x_105); +lean_ctor_set(x_106, 2, x_104); +x_107 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81; +lean_inc(x_10); +x_108 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_108, 0, x_10); +lean_ctor_set(x_108, 1, x_107); +x_109 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +lean_inc(x_10); +x_110 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_110, 0, x_10); +lean_ctor_set(x_110, 1, x_109); +x_111 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84; +lean_inc(x_10); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_10); +lean_ctor_set(x_112, 1, x_111); +x_113 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +lean_inc(x_10); +x_114 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_114, 0, x_10); +lean_ctor_set(x_114, 1, x_113); +x_115 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +lean_inc(x_11); +lean_inc(x_12); +x_116 = l_Lean_addMacroScope(x_12, x_115, x_11); +x_117 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89; +x_118 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95; +lean_inc(x_10); +x_119 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_119, 0, x_10); +lean_ctor_set(x_119, 1, x_117); +lean_ctor_set(x_119, 2, x_116); +lean_ctor_set(x_119, 3, x_118); +x_120 = lean_array_push(x_102, x_114); +lean_inc(x_120); +x_121 = lean_array_push(x_120, x_119); +x_122 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86; +x_123 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_123, 0, x_26); +lean_ctor_set(x_123, 1, x_122); +lean_ctor_set(x_123, 2, x_121); +x_124 = lean_array_push(x_102, x_123); +x_125 = lean_array_push(x_124, x_89); +x_126 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_126, 0, x_26); +lean_ctor_set(x_126, 1, x_105); +lean_ctor_set(x_126, 2, x_125); +x_127 = lean_array_push(x_99, x_126); +x_128 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_128, 0, x_26); +lean_ctor_set(x_128, 1, x_78); +lean_ctor_set(x_128, 2, x_127); +x_129 = lean_array_push(x_99, x_128); +x_130 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17; +x_131 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_131, 0, x_26); +lean_ctor_set(x_131, 1, x_130); +lean_ctor_set(x_131, 2, x_129); +x_132 = lean_array_push(x_99, x_131); +x_133 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15; +x_134 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_134, 0, x_26); +lean_ctor_set(x_134, 1, x_133); +lean_ctor_set(x_134, 2, x_132); +x_135 = lean_array_push(x_102, x_112); +lean_inc(x_135); +x_136 = lean_array_push(x_135, x_134); +x_137 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_137, 0, x_26); +lean_ctor_set(x_137, 1, x_105); +lean_ctor_set(x_137, 2, x_136); +x_138 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +lean_inc(x_11); +lean_inc(x_12); +x_139 = l_Lean_addMacroScope(x_12, x_138, x_11); +x_140 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98; +x_141 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102; +lean_inc(x_10); +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_10); +lean_ctor_set(x_142, 1, x_140); +lean_ctor_set(x_142, 2, x_139); +lean_ctor_set(x_142, 3, x_141); +lean_inc(x_120); +x_143 = lean_array_push(x_120, x_142); +x_144 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_144, 0, x_26); +lean_ctor_set(x_144, 1, x_122); +lean_ctor_set(x_144, 2, x_143); +x_145 = lean_array_push(x_102, x_144); +x_146 = lean_array_push(x_145, x_89); +x_147 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_147, 0, x_26); +lean_ctor_set(x_147, 1, x_105); +lean_ctor_set(x_147, 2, x_146); +x_148 = lean_array_push(x_99, x_147); +x_149 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_149, 0, x_26); +lean_ctor_set(x_149, 1, x_78); +lean_ctor_set(x_149, 2, x_148); +x_150 = lean_array_push(x_99, x_149); +x_151 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_151, 0, x_26); +lean_ctor_set(x_151, 1, x_130); +lean_ctor_set(x_151, 2, x_150); +x_152 = lean_array_push(x_99, x_151); +x_153 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_153, 0, x_26); +lean_ctor_set(x_153, 1, x_133); +lean_ctor_set(x_153, 2, x_152); +lean_inc(x_135); +x_154 = lean_array_push(x_135, x_153); +x_155 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_155, 0, x_26); +lean_ctor_set(x_155, 1, x_105); +lean_ctor_set(x_155, 2, x_154); +x_156 = lean_array_push(x_102, x_137); +x_157 = lean_array_push(x_156, x_155); +x_158 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_158, 0, x_26); +lean_ctor_set(x_158, 1, x_78); +lean_ctor_set(x_158, 2, x_157); +x_159 = lean_array_push(x_102, x_110); +lean_inc(x_159); +x_160 = lean_array_push(x_159, x_158); +x_161 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83; +x_162 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_162, 0, x_26); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_162, 2, x_160); +x_163 = lean_array_push(x_102, x_162); +x_164 = lean_array_push(x_163, x_89); +x_165 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_165, 0, x_26); +lean_ctor_set(x_165, 1, x_105); +lean_ctor_set(x_165, 2, x_164); +x_166 = lean_array_push(x_99, x_165); +x_167 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_167, 0, x_26); +lean_ctor_set(x_167, 1, x_78); +lean_ctor_set(x_167, 2, x_166); +x_168 = lean_array_push(x_99, x_167); +x_169 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_169, 0, x_26); +lean_ctor_set(x_169, 1, x_130); +lean_ctor_set(x_169, 2, x_168); +x_170 = lean_array_push(x_99, x_169); +x_171 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_171, 0, x_26); +lean_ctor_set(x_171, 1, x_133); +lean_ctor_set(x_171, 2, x_170); +x_172 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103; +lean_inc(x_10); +x_173 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_173, 0, x_10); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_array_push(x_82, x_14); +lean_inc(x_174); +x_175 = lean_array_push(x_174, x_171); +lean_inc(x_173); +x_176 = lean_array_push(x_175, x_173); +x_177 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12; +x_178 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_178, 0, x_26); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_176); +x_179 = lean_array_push(x_102, x_178); +x_180 = lean_array_push(x_179, x_89); +x_181 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_181, 0, x_26); +lean_ctor_set(x_181, 1, x_105); +lean_ctor_set(x_181, 2, x_180); +x_182 = lean_array_push(x_99, x_181); +x_183 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_183, 0, x_26); +lean_ctor_set(x_183, 1, x_78); +lean_ctor_set(x_183, 2, x_182); +x_184 = lean_array_push(x_99, x_183); +x_185 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_185, 0, x_26); +lean_ctor_set(x_185, 1, x_130); +lean_ctor_set(x_185, 2, x_184); +x_186 = lean_array_push(x_99, x_185); +x_187 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_187, 0, x_26); +lean_ctor_set(x_187, 1, x_133); +lean_ctor_set(x_187, 2, x_186); +x_188 = lean_array_push(x_102, x_108); +lean_inc(x_188); +x_189 = lean_array_push(x_188, x_187); +x_190 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80; +x_191 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_191, 0, x_26); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set(x_191, 2, x_189); +x_192 = lean_array_push(x_102, x_191); +x_193 = lean_array_push(x_192, x_89); +x_194 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_194, 0, x_26); +lean_ctor_set(x_194, 1, x_105); +lean_ctor_set(x_194, 2, x_193); +x_195 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +lean_inc(x_11); +lean_inc(x_12); +x_196 = l_Lean_addMacroScope(x_12, x_195, x_11); +x_197 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106; +x_198 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112; +lean_inc(x_10); +x_199 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_199, 0, x_10); +lean_ctor_set(x_199, 1, x_197); +lean_ctor_set(x_199, 2, x_196); +lean_ctor_set(x_199, 3, x_198); +lean_inc(x_120); +x_200 = lean_array_push(x_120, x_199); +x_201 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_201, 0, x_26); +lean_ctor_set(x_201, 1, x_122); +lean_ctor_set(x_201, 2, x_200); +x_202 = lean_array_push(x_102, x_201); +x_203 = lean_array_push(x_202, x_89); +x_204 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_204, 0, x_26); +lean_ctor_set(x_204, 1, x_105); +lean_ctor_set(x_204, 2, x_203); +x_205 = lean_array_push(x_99, x_204); +x_206 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_206, 0, x_26); +lean_ctor_set(x_206, 1, x_78); +lean_ctor_set(x_206, 2, x_205); +x_207 = lean_array_push(x_99, x_206); +x_208 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_208, 0, x_26); +lean_ctor_set(x_208, 1, x_130); +lean_ctor_set(x_208, 2, x_207); +x_209 = lean_array_push(x_99, x_208); +x_210 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_210, 0, x_26); +lean_ctor_set(x_210, 1, x_133); +lean_ctor_set(x_210, 2, x_209); +lean_inc(x_135); +x_211 = lean_array_push(x_135, x_210); +x_212 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_212, 0, x_26); +lean_ctor_set(x_212, 1, x_105); +lean_ctor_set(x_212, 2, x_211); +x_213 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +lean_inc(x_11); +lean_inc(x_12); +x_214 = l_Lean_addMacroScope(x_12, x_213, x_11); +x_215 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115; +x_216 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118; +lean_inc(x_10); +x_217 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_217, 0, x_10); +lean_ctor_set(x_217, 1, x_215); +lean_ctor_set(x_217, 2, x_214); +lean_ctor_set(x_217, 3, x_216); +lean_inc(x_120); +x_218 = lean_array_push(x_120, x_217); +x_219 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_219, 0, x_26); +lean_ctor_set(x_219, 1, x_122); +lean_ctor_set(x_219, 2, x_218); +x_220 = lean_array_push(x_102, x_219); +x_221 = lean_array_push(x_220, x_89); +x_222 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_222, 0, x_26); +lean_ctor_set(x_222, 1, x_105); +lean_ctor_set(x_222, 2, x_221); +x_223 = lean_array_push(x_99, x_222); +x_224 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_224, 0, x_26); +lean_ctor_set(x_224, 1, x_78); +lean_ctor_set(x_224, 2, x_223); +x_225 = lean_array_push(x_99, x_224); +x_226 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_226, 0, x_26); +lean_ctor_set(x_226, 1, x_130); +lean_ctor_set(x_226, 2, x_225); +x_227 = lean_array_push(x_99, x_226); +x_228 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_228, 0, x_26); +lean_ctor_set(x_228, 1, x_133); +lean_ctor_set(x_228, 2, x_227); +lean_inc(x_135); +x_229 = lean_array_push(x_135, x_228); +x_230 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_230, 0, x_26); +lean_ctor_set(x_230, 1, x_105); +lean_ctor_set(x_230, 2, x_229); +x_231 = lean_array_push(x_102, x_212); +x_232 = lean_array_push(x_231, x_230); +x_233 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_233, 0, x_26); +lean_ctor_set(x_233, 1, x_78); +lean_ctor_set(x_233, 2, x_232); +lean_inc(x_159); +x_234 = lean_array_push(x_159, x_233); +x_235 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_235, 0, x_26); +lean_ctor_set(x_235, 1, x_161); +lean_ctor_set(x_235, 2, x_234); +x_236 = lean_array_push(x_102, x_235); +x_237 = lean_array_push(x_236, x_89); +x_238 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_238, 0, x_26); +lean_ctor_set(x_238, 1, x_105); +lean_ctor_set(x_238, 2, x_237); +x_239 = lean_array_push(x_99, x_238); +x_240 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_240, 0, x_26); +lean_ctor_set(x_240, 1, x_78); +lean_ctor_set(x_240, 2, x_239); +x_241 = lean_array_push(x_99, x_240); +x_242 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_242, 0, x_26); +lean_ctor_set(x_242, 1, x_130); +lean_ctor_set(x_242, 2, x_241); +x_243 = lean_array_push(x_99, x_242); +x_244 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_244, 0, x_26); +lean_ctor_set(x_244, 1, x_133); +lean_ctor_set(x_244, 2, x_243); +lean_inc(x_174); +x_245 = lean_array_push(x_174, x_244); +lean_inc(x_173); +x_246 = lean_array_push(x_245, x_173); +x_247 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_247, 0, x_26); +lean_ctor_set(x_247, 1, x_177); +lean_ctor_set(x_247, 2, x_246); +x_248 = lean_array_push(x_102, x_247); +x_249 = lean_array_push(x_248, x_89); +x_250 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_250, 0, x_26); +lean_ctor_set(x_250, 1, x_105); +lean_ctor_set(x_250, 2, x_249); +x_251 = lean_array_push(x_99, x_250); +x_252 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_252, 0, x_26); +lean_ctor_set(x_252, 1, x_78); +lean_ctor_set(x_252, 2, x_251); +x_253 = lean_array_push(x_99, x_252); +x_254 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_254, 0, x_26); +lean_ctor_set(x_254, 1, x_130); +lean_ctor_set(x_254, 2, x_253); +x_255 = lean_array_push(x_99, x_254); +x_256 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_256, 0, x_26); +lean_ctor_set(x_256, 1, x_133); +lean_ctor_set(x_256, 2, x_255); +x_257 = lean_array_push(x_188, x_256); +x_258 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_258, 0, x_26); +lean_ctor_set(x_258, 1, x_190); +lean_ctor_set(x_258, 2, x_257); +x_259 = lean_array_push(x_102, x_258); +x_260 = lean_array_push(x_259, x_89); +x_261 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_261, 0, x_26); +lean_ctor_set(x_261, 1, x_105); +lean_ctor_set(x_261, 2, x_260); +x_262 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +lean_inc(x_11); +lean_inc(x_12); +x_263 = l_Lean_addMacroScope(x_12, x_262, x_11); +x_264 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121; +x_265 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125; +lean_inc(x_10); +x_266 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_266, 0, x_10); +lean_ctor_set(x_266, 1, x_264); +lean_ctor_set(x_266, 2, x_263); +lean_ctor_set(x_266, 3, x_265); +lean_inc(x_120); +x_267 = lean_array_push(x_120, x_266); +x_268 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_268, 0, x_26); +lean_ctor_set(x_268, 1, x_122); +lean_ctor_set(x_268, 2, x_267); +x_269 = lean_array_push(x_102, x_268); +x_270 = lean_array_push(x_269, x_89); +x_271 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_271, 0, x_26); +lean_ctor_set(x_271, 1, x_105); +lean_ctor_set(x_271, 2, x_270); +x_272 = lean_array_push(x_99, x_271); +x_273 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_273, 0, x_26); +lean_ctor_set(x_273, 1, x_78); +lean_ctor_set(x_273, 2, x_272); +x_274 = lean_array_push(x_99, x_273); +x_275 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_275, 0, x_26); +lean_ctor_set(x_275, 1, x_130); +lean_ctor_set(x_275, 2, x_274); +x_276 = lean_array_push(x_99, x_275); +x_277 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_277, 0, x_26); +lean_ctor_set(x_277, 1, x_133); +lean_ctor_set(x_277, 2, x_276); +lean_inc(x_135); +x_278 = lean_array_push(x_135, x_277); +x_279 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_279, 0, x_26); +lean_ctor_set(x_279, 1, x_105); +lean_ctor_set(x_279, 2, x_278); +x_280 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +lean_inc(x_10); +x_281 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_281, 0, x_10); +lean_ctor_set(x_281, 1, x_280); +x_282 = lean_array_push(x_99, x_281); +x_283 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127; +x_284 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_284, 0, x_26); +lean_ctor_set(x_284, 1, x_283); +lean_ctor_set(x_284, 2, x_282); +x_285 = lean_array_push(x_102, x_284); +x_286 = lean_array_push(x_285, x_89); +x_287 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_287, 0, x_26); +lean_ctor_set(x_287, 1, x_105); +lean_ctor_set(x_287, 2, x_286); +x_288 = lean_array_push(x_99, x_287); +x_289 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_289, 0, x_26); +lean_ctor_set(x_289, 1, x_78); +lean_ctor_set(x_289, 2, x_288); +x_290 = lean_array_push(x_99, x_289); +x_291 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_291, 0, x_26); +lean_ctor_set(x_291, 1, x_130); +lean_ctor_set(x_291, 2, x_290); +x_292 = lean_array_push(x_99, x_291); +x_293 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_293, 0, x_26); +lean_ctor_set(x_293, 1, x_133); +lean_ctor_set(x_293, 2, x_292); +lean_inc(x_135); +x_294 = lean_array_push(x_135, x_293); +x_295 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_295, 0, x_26); +lean_ctor_set(x_295, 1, x_105); +lean_ctor_set(x_295, 2, x_294); +x_296 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +lean_inc(x_11); +lean_inc(x_12); +x_297 = l_Lean_addMacroScope(x_12, x_296, x_11); +x_298 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130; +x_299 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134; +lean_inc(x_10); +x_300 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_300, 0, x_10); +lean_ctor_set(x_300, 1, x_298); +lean_ctor_set(x_300, 2, x_297); +lean_ctor_set(x_300, 3, x_299); +lean_inc(x_120); +x_301 = lean_array_push(x_120, x_300); +x_302 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_302, 0, x_26); +lean_ctor_set(x_302, 1, x_122); +lean_ctor_set(x_302, 2, x_301); +x_303 = lean_array_push(x_102, x_302); +lean_inc(x_101); +x_304 = lean_array_push(x_303, x_101); +x_305 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_305, 0, x_26); +lean_ctor_set(x_305, 1, x_105); +lean_ctor_set(x_305, 2, x_304); +x_306 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +lean_inc(x_10); +x_307 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_307, 0, x_10); +lean_ctor_set(x_307, 1, x_306); +x_308 = lean_array_push(x_99, x_307); +x_309 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136; +x_310 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_310, 0, x_26); +lean_ctor_set(x_310, 1, x_309); +lean_ctor_set(x_310, 2, x_308); +x_311 = lean_array_push(x_102, x_310); +x_312 = lean_array_push(x_311, x_89); +x_313 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_313, 0, x_26); +lean_ctor_set(x_313, 1, x_105); +lean_ctor_set(x_313, 2, x_312); +x_314 = lean_array_push(x_102, x_305); +lean_inc(x_313); +x_315 = lean_array_push(x_314, x_313); +x_316 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_316, 0, x_26); +lean_ctor_set(x_316, 1, x_78); +lean_ctor_set(x_316, 2, x_315); +x_317 = lean_array_push(x_99, x_316); +x_318 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_318, 0, x_26); +lean_ctor_set(x_318, 1, x_130); +lean_ctor_set(x_318, 2, x_317); +x_319 = lean_array_push(x_99, x_318); +x_320 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_320, 0, x_26); +lean_ctor_set(x_320, 1, x_133); +lean_ctor_set(x_320, 2, x_319); +lean_inc(x_135); +x_321 = lean_array_push(x_135, x_320); +x_322 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_322, 0, x_26); +lean_ctor_set(x_322, 1, x_105); +lean_ctor_set(x_322, 2, x_321); +x_323 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +lean_inc(x_11); +lean_inc(x_12); +x_324 = l_Lean_addMacroScope(x_12, x_323, x_11); +x_325 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139; +x_326 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143; +lean_inc(x_10); +x_327 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_327, 0, x_10); +lean_ctor_set(x_327, 1, x_325); +lean_ctor_set(x_327, 2, x_324); +lean_ctor_set(x_327, 3, x_326); +lean_inc(x_120); +x_328 = lean_array_push(x_120, x_327); +x_329 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_329, 0, x_26); +lean_ctor_set(x_329, 1, x_122); +lean_ctor_set(x_329, 2, x_328); +x_330 = lean_array_push(x_102, x_329); +lean_inc(x_101); +x_331 = lean_array_push(x_330, x_101); +x_332 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_332, 0, x_26); +lean_ctor_set(x_332, 1, x_105); +lean_ctor_set(x_332, 2, x_331); +x_333 = lean_array_push(x_102, x_332); +lean_inc(x_313); +x_334 = lean_array_push(x_333, x_313); +x_335 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_335, 0, x_26); +lean_ctor_set(x_335, 1, x_78); +lean_ctor_set(x_335, 2, x_334); +x_336 = lean_array_push(x_99, x_335); +x_337 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_337, 0, x_26); +lean_ctor_set(x_337, 1, x_130); +lean_ctor_set(x_337, 2, x_336); +x_338 = lean_array_push(x_99, x_337); +x_339 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_339, 0, x_26); +lean_ctor_set(x_339, 1, x_133); +lean_ctor_set(x_339, 2, x_338); +lean_inc(x_135); +x_340 = lean_array_push(x_135, x_339); +x_341 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_341, 0, x_26); +lean_ctor_set(x_341, 1, x_105); +lean_ctor_set(x_341, 2, x_340); +x_342 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +x_343 = l_Lean_addMacroScope(x_12, x_342, x_11); +x_344 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146; +x_345 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150; +x_346 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_346, 0, x_10); +lean_ctor_set(x_346, 1, x_344); +lean_ctor_set(x_346, 2, x_343); +lean_ctor_set(x_346, 3, x_345); +x_347 = lean_array_push(x_120, x_346); +x_348 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_348, 0, x_26); +lean_ctor_set(x_348, 1, x_122); +lean_ctor_set(x_348, 2, x_347); +x_349 = lean_array_push(x_102, x_348); +x_350 = lean_array_push(x_349, x_101); +x_351 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_351, 0, x_26); +lean_ctor_set(x_351, 1, x_105); +lean_ctor_set(x_351, 2, x_350); +x_352 = lean_array_push(x_102, x_351); +lean_inc(x_313); +x_353 = lean_array_push(x_352, x_313); +x_354 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_354, 0, x_26); +lean_ctor_set(x_354, 1, x_78); +lean_ctor_set(x_354, 2, x_353); +x_355 = lean_array_push(x_99, x_354); +x_356 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_356, 0, x_26); +lean_ctor_set(x_356, 1, x_130); +lean_ctor_set(x_356, 2, x_355); +x_357 = lean_array_push(x_99, x_356); +x_358 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_358, 0, x_26); +lean_ctor_set(x_358, 1, x_133); +lean_ctor_set(x_358, 2, x_357); +lean_inc(x_135); +x_359 = lean_array_push(x_135, x_358); +x_360 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_360, 0, x_26); +lean_ctor_set(x_360, 1, x_105); +lean_ctor_set(x_360, 2, x_359); +x_361 = lean_array_push(x_99, x_313); +x_362 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_362, 0, x_26); +lean_ctor_set(x_362, 1, x_78); +lean_ctor_set(x_362, 2, x_361); +x_363 = lean_array_push(x_99, x_362); +x_364 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_364, 0, x_26); +lean_ctor_set(x_364, 1, x_130); +lean_ctor_set(x_364, 2, x_363); +x_365 = lean_array_push(x_99, x_364); +x_366 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_366, 0, x_26); +lean_ctor_set(x_366, 1, x_133); +lean_ctor_set(x_366, 2, x_365); +x_367 = lean_array_push(x_135, x_366); +x_368 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_368, 0, x_26); +lean_ctor_set(x_368, 1, x_105); +lean_ctor_set(x_368, 2, x_367); +x_369 = lean_array_push(x_87, x_279); +x_370 = lean_array_push(x_369, x_295); +x_371 = lean_array_push(x_370, x_322); +x_372 = lean_array_push(x_371, x_341); +x_373 = lean_array_push(x_372, x_360); +x_374 = lean_array_push(x_373, x_368); +x_375 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_375, 0, x_26); +lean_ctor_set(x_375, 1, x_78); +lean_ctor_set(x_375, 2, x_374); +x_376 = lean_array_push(x_159, x_375); +x_377 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_377, 0, x_26); +lean_ctor_set(x_377, 1, x_161); +lean_ctor_set(x_377, 2, x_376); +x_378 = lean_array_push(x_102, x_377); +x_379 = lean_array_push(x_378, x_89); +x_380 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_380, 0, x_26); +lean_ctor_set(x_380, 1, x_105); +lean_ctor_set(x_380, 2, x_379); +x_381 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151; +x_382 = lean_array_push(x_381, x_106); +x_383 = lean_array_push(x_382, x_194); +x_384 = lean_array_push(x_383, x_261); +x_385 = lean_array_push(x_384, x_380); +x_386 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_386, 0, x_26); +lean_ctor_set(x_386, 1, x_78); +lean_ctor_set(x_386, 2, x_385); +x_387 = lean_array_push(x_99, x_386); +x_388 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_388, 0, x_26); +lean_ctor_set(x_388, 1, x_130); +lean_ctor_set(x_388, 2, x_387); +x_389 = lean_array_push(x_99, x_388); +x_390 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_390, 0, x_26); +lean_ctor_set(x_390, 1, x_133); +lean_ctor_set(x_390, 2, x_389); +x_391 = lean_array_push(x_174, x_390); +x_392 = lean_array_push(x_391, x_173); +x_393 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_393, 0, x_26); +lean_ctor_set(x_393, 1, x_177); +lean_ctor_set(x_393, 2, x_392); +x_394 = lean_array_push(x_99, x_393); +x_395 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_395, 0, x_26); +lean_ctor_set(x_395, 1, x_78); +lean_ctor_set(x_395, 2, x_394); +x_396 = lean_array_push(x_99, x_395); +x_397 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8; +x_398 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_398, 0, x_26); +lean_ctor_set(x_398, 1, x_397); +lean_ctor_set(x_398, 2, x_396); +lean_ctor_set(x_8, 0, x_398); +return x_8; +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; +x_399 = lean_ctor_get(x_8, 0); +x_400 = lean_ctor_get(x_8, 1); +lean_inc(x_400); +lean_inc(x_399); +lean_dec(x_8); +x_401 = lean_ctor_get(x_2, 2); +lean_inc(x_401); +x_402 = lean_ctor_get(x_2, 1); +lean_inc(x_402); +lean_dec(x_2); +x_403 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13; +lean_inc(x_399); +x_404 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_404, 0, x_399); +lean_ctor_set(x_404, 1, x_403); +x_405 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +lean_inc(x_399); +x_406 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_406, 0, x_399); +lean_ctor_set(x_406, 1, x_405); +x_407 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24; +lean_inc(x_399); +x_408 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_408, 0, x_399); +lean_ctor_set(x_408, 1, x_407); +x_409 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +lean_inc(x_401); +lean_inc(x_402); +x_410 = l_Lean_addMacroScope(x_402, x_409, x_401); +x_411 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29; +x_412 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32; +lean_inc(x_399); +x_413 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_413, 0, x_399); +lean_ctor_set(x_413, 1, x_411); +lean_ctor_set(x_413, 2, x_410); +lean_ctor_set(x_413, 3, x_412); +x_414 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35; +x_415 = lean_array_push(x_414, x_413); +x_416 = lean_box(2); +x_417 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26; +x_418 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_418, 0, x_416); +lean_ctor_set(x_418, 1, x_417); +lean_ctor_set(x_418, 2, x_415); +x_419 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36; +lean_inc(x_399); +x_420 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_420, 0, x_399); +lean_ctor_set(x_420, 1, x_419); +x_421 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +lean_inc(x_401); +lean_inc(x_402); +x_422 = l_Lean_addMacroScope(x_402, x_421, x_401); +x_423 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39; +x_424 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42; +lean_inc(x_399); +x_425 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_425, 0, x_399); +lean_ctor_set(x_425, 1, x_423); +lean_ctor_set(x_425, 2, x_422); +lean_ctor_set(x_425, 3, x_424); +x_426 = lean_array_push(x_414, x_425); +x_427 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_427, 0, x_416); +lean_ctor_set(x_427, 1, x_417); +lean_ctor_set(x_427, 2, x_426); +x_428 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +lean_inc(x_401); +lean_inc(x_402); +x_429 = l_Lean_addMacroScope(x_402, x_428, x_401); +x_430 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45; +x_431 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51; +lean_inc(x_399); +x_432 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_432, 0, x_399); +lean_ctor_set(x_432, 1, x_430); +lean_ctor_set(x_432, 2, x_429); +lean_ctor_set(x_432, 3, x_431); +x_433 = lean_array_push(x_414, x_432); +x_434 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_434, 0, x_416); +lean_ctor_set(x_434, 1, x_417); +lean_ctor_set(x_434, 2, x_433); +x_435 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +lean_inc(x_401); +lean_inc(x_402); +x_436 = l_Lean_addMacroScope(x_402, x_435, x_401); +x_437 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54; +x_438 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57; +lean_inc(x_399); +x_439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_439, 0, x_399); +lean_ctor_set(x_439, 1, x_437); +lean_ctor_set(x_439, 2, x_436); +lean_ctor_set(x_439, 3, x_438); +x_440 = lean_array_push(x_414, x_439); +x_441 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_441, 0, x_416); +lean_ctor_set(x_441, 1, x_417); +lean_ctor_set(x_441, 2, x_440); +x_442 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +lean_inc(x_401); +lean_inc(x_402); +x_443 = l_Lean_addMacroScope(x_402, x_442, x_401); +x_444 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60; +x_445 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63; +lean_inc(x_399); +x_446 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_446, 0, x_399); +lean_ctor_set(x_446, 1, x_444); +lean_ctor_set(x_446, 2, x_443); +lean_ctor_set(x_446, 3, x_445); +x_447 = lean_array_push(x_414, x_446); +x_448 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_448, 0, x_416); +lean_ctor_set(x_448, 1, x_417); +lean_ctor_set(x_448, 2, x_447); +x_449 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +lean_inc(x_401); +lean_inc(x_402); +x_450 = l_Lean_addMacroScope(x_402, x_449, x_401); +x_451 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66; +x_452 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72; +lean_inc(x_399); +x_453 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_453, 0, x_399); +lean_ctor_set(x_453, 1, x_451); +lean_ctor_set(x_453, 2, x_450); +lean_ctor_set(x_453, 3, x_452); +x_454 = lean_array_push(x_414, x_453); +x_455 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_455, 0, x_416); +lean_ctor_set(x_455, 1, x_417); +lean_ctor_set(x_455, 2, x_454); +x_456 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73; +x_457 = lean_array_push(x_456, x_418); +lean_inc(x_420); +x_458 = lean_array_push(x_457, x_420); +x_459 = lean_array_push(x_458, x_427); +lean_inc(x_420); +x_460 = lean_array_push(x_459, x_420); +x_461 = lean_array_push(x_460, x_434); +lean_inc(x_420); +x_462 = lean_array_push(x_461, x_420); +x_463 = lean_array_push(x_462, x_441); +lean_inc(x_420); +x_464 = lean_array_push(x_463, x_420); +x_465 = lean_array_push(x_464, x_448); +x_466 = lean_array_push(x_465, x_420); +x_467 = lean_array_push(x_466, x_455); +x_468 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +x_469 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_469, 0, x_416); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_469, 2, x_467); +x_470 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74; +lean_inc(x_399); +x_471 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_471, 0, x_399); +lean_ctor_set(x_471, 1, x_470); +x_472 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +x_473 = lean_array_push(x_472, x_408); +x_474 = lean_array_push(x_473, x_469); +x_475 = lean_array_push(x_474, x_471); +x_476 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_476, 0, x_416); +lean_ctor_set(x_476, 1, x_468); +lean_ctor_set(x_476, 2, x_475); +x_477 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75; +x_478 = lean_array_push(x_477, x_406); +x_479 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_480 = lean_array_push(x_478, x_479); +x_481 = lean_array_push(x_480, x_479); +x_482 = lean_array_push(x_481, x_479); +x_483 = lean_array_push(x_482, x_476); +x_484 = lean_array_push(x_483, x_479); +x_485 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21; +x_486 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_486, 0, x_416); +lean_ctor_set(x_486, 1, x_485); +lean_ctor_set(x_486, 2, x_484); +x_487 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76; +lean_inc(x_399); +x_488 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_488, 0, x_399); +lean_ctor_set(x_488, 1, x_487); +x_489 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77; +x_490 = lean_array_push(x_489, x_488); +x_491 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_491, 0, x_416); +lean_ctor_set(x_491, 1, x_468); +lean_ctor_set(x_491, 2, x_490); +x_492 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78; +x_493 = lean_array_push(x_492, x_486); +lean_inc(x_491); +x_494 = lean_array_push(x_493, x_491); +x_495 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19; +x_496 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_496, 0, x_416); +lean_ctor_set(x_496, 1, x_495); +lean_ctor_set(x_496, 2, x_494); +x_497 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81; +lean_inc(x_399); +x_498 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_498, 0, x_399); +lean_ctor_set(x_498, 1, x_497); +x_499 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +lean_inc(x_399); +x_500 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_500, 0, x_399); +lean_ctor_set(x_500, 1, x_499); +x_501 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84; +lean_inc(x_399); +x_502 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_502, 0, x_399); +lean_ctor_set(x_502, 1, x_501); +x_503 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +lean_inc(x_399); +x_504 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_504, 0, x_399); +lean_ctor_set(x_504, 1, x_503); +x_505 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +lean_inc(x_401); +lean_inc(x_402); +x_506 = l_Lean_addMacroScope(x_402, x_505, x_401); +x_507 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89; +x_508 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95; +lean_inc(x_399); +x_509 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_509, 0, x_399); +lean_ctor_set(x_509, 1, x_507); +lean_ctor_set(x_509, 2, x_506); +lean_ctor_set(x_509, 3, x_508); +x_510 = lean_array_push(x_492, x_504); +lean_inc(x_510); +x_511 = lean_array_push(x_510, x_509); +x_512 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86; +x_513 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_513, 0, x_416); +lean_ctor_set(x_513, 1, x_512); +lean_ctor_set(x_513, 2, x_511); +x_514 = lean_array_push(x_492, x_513); +x_515 = lean_array_push(x_514, x_479); +x_516 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_516, 0, x_416); +lean_ctor_set(x_516, 1, x_495); +lean_ctor_set(x_516, 2, x_515); +x_517 = lean_array_push(x_489, x_516); +x_518 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_518, 0, x_416); +lean_ctor_set(x_518, 1, x_468); +lean_ctor_set(x_518, 2, x_517); +x_519 = lean_array_push(x_489, x_518); +x_520 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17; +x_521 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_521, 0, x_416); +lean_ctor_set(x_521, 1, x_520); +lean_ctor_set(x_521, 2, x_519); +x_522 = lean_array_push(x_489, x_521); +x_523 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15; +x_524 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_524, 0, x_416); +lean_ctor_set(x_524, 1, x_523); +lean_ctor_set(x_524, 2, x_522); +x_525 = lean_array_push(x_492, x_502); +lean_inc(x_525); +x_526 = lean_array_push(x_525, x_524); +x_527 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_527, 0, x_416); +lean_ctor_set(x_527, 1, x_495); +lean_ctor_set(x_527, 2, x_526); +x_528 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +lean_inc(x_401); +lean_inc(x_402); +x_529 = l_Lean_addMacroScope(x_402, x_528, x_401); +x_530 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98; +x_531 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102; +lean_inc(x_399); +x_532 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_532, 0, x_399); +lean_ctor_set(x_532, 1, x_530); +lean_ctor_set(x_532, 2, x_529); +lean_ctor_set(x_532, 3, x_531); +lean_inc(x_510); +x_533 = lean_array_push(x_510, x_532); +x_534 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_534, 0, x_416); +lean_ctor_set(x_534, 1, x_512); +lean_ctor_set(x_534, 2, x_533); +x_535 = lean_array_push(x_492, x_534); +x_536 = lean_array_push(x_535, x_479); +x_537 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_537, 0, x_416); +lean_ctor_set(x_537, 1, x_495); +lean_ctor_set(x_537, 2, x_536); +x_538 = lean_array_push(x_489, x_537); +x_539 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_539, 0, x_416); +lean_ctor_set(x_539, 1, x_468); +lean_ctor_set(x_539, 2, x_538); +x_540 = lean_array_push(x_489, x_539); +x_541 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_541, 0, x_416); +lean_ctor_set(x_541, 1, x_520); +lean_ctor_set(x_541, 2, x_540); +x_542 = lean_array_push(x_489, x_541); +x_543 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_543, 0, x_416); +lean_ctor_set(x_543, 1, x_523); +lean_ctor_set(x_543, 2, x_542); +lean_inc(x_525); +x_544 = lean_array_push(x_525, x_543); +x_545 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_545, 0, x_416); +lean_ctor_set(x_545, 1, x_495); +lean_ctor_set(x_545, 2, x_544); +x_546 = lean_array_push(x_492, x_527); +x_547 = lean_array_push(x_546, x_545); +x_548 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_548, 0, x_416); +lean_ctor_set(x_548, 1, x_468); +lean_ctor_set(x_548, 2, x_547); +x_549 = lean_array_push(x_492, x_500); +lean_inc(x_549); +x_550 = lean_array_push(x_549, x_548); +x_551 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83; +x_552 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_552, 0, x_416); +lean_ctor_set(x_552, 1, x_551); +lean_ctor_set(x_552, 2, x_550); +x_553 = lean_array_push(x_492, x_552); +x_554 = lean_array_push(x_553, x_479); +x_555 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_555, 0, x_416); +lean_ctor_set(x_555, 1, x_495); +lean_ctor_set(x_555, 2, x_554); +x_556 = lean_array_push(x_489, x_555); +x_557 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_557, 0, x_416); +lean_ctor_set(x_557, 1, x_468); +lean_ctor_set(x_557, 2, x_556); +x_558 = lean_array_push(x_489, x_557); +x_559 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_559, 0, x_416); +lean_ctor_set(x_559, 1, x_520); +lean_ctor_set(x_559, 2, x_558); +x_560 = lean_array_push(x_489, x_559); +x_561 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_561, 0, x_416); +lean_ctor_set(x_561, 1, x_523); +lean_ctor_set(x_561, 2, x_560); +x_562 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103; +lean_inc(x_399); +x_563 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_563, 0, x_399); +lean_ctor_set(x_563, 1, x_562); +x_564 = lean_array_push(x_472, x_404); +lean_inc(x_564); +x_565 = lean_array_push(x_564, x_561); +lean_inc(x_563); +x_566 = lean_array_push(x_565, x_563); +x_567 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12; +x_568 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_568, 0, x_416); +lean_ctor_set(x_568, 1, x_567); +lean_ctor_set(x_568, 2, x_566); +x_569 = lean_array_push(x_492, x_568); +x_570 = lean_array_push(x_569, x_479); +x_571 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_571, 0, x_416); +lean_ctor_set(x_571, 1, x_495); +lean_ctor_set(x_571, 2, x_570); +x_572 = lean_array_push(x_489, x_571); +x_573 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_573, 0, x_416); +lean_ctor_set(x_573, 1, x_468); +lean_ctor_set(x_573, 2, x_572); +x_574 = lean_array_push(x_489, x_573); +x_575 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_575, 0, x_416); +lean_ctor_set(x_575, 1, x_520); +lean_ctor_set(x_575, 2, x_574); +x_576 = lean_array_push(x_489, x_575); +x_577 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_577, 0, x_416); +lean_ctor_set(x_577, 1, x_523); +lean_ctor_set(x_577, 2, x_576); +x_578 = lean_array_push(x_492, x_498); +lean_inc(x_578); +x_579 = lean_array_push(x_578, x_577); +x_580 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80; +x_581 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_581, 0, x_416); +lean_ctor_set(x_581, 1, x_580); +lean_ctor_set(x_581, 2, x_579); +x_582 = lean_array_push(x_492, x_581); +x_583 = lean_array_push(x_582, x_479); +x_584 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_584, 0, x_416); +lean_ctor_set(x_584, 1, x_495); +lean_ctor_set(x_584, 2, x_583); +x_585 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +lean_inc(x_401); +lean_inc(x_402); +x_586 = l_Lean_addMacroScope(x_402, x_585, x_401); +x_587 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106; +x_588 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112; +lean_inc(x_399); +x_589 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_589, 0, x_399); +lean_ctor_set(x_589, 1, x_587); +lean_ctor_set(x_589, 2, x_586); +lean_ctor_set(x_589, 3, x_588); +lean_inc(x_510); +x_590 = lean_array_push(x_510, x_589); +x_591 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_591, 0, x_416); +lean_ctor_set(x_591, 1, x_512); +lean_ctor_set(x_591, 2, x_590); +x_592 = lean_array_push(x_492, x_591); +x_593 = lean_array_push(x_592, x_479); +x_594 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_594, 0, x_416); +lean_ctor_set(x_594, 1, x_495); +lean_ctor_set(x_594, 2, x_593); +x_595 = lean_array_push(x_489, x_594); +x_596 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_596, 0, x_416); +lean_ctor_set(x_596, 1, x_468); +lean_ctor_set(x_596, 2, x_595); +x_597 = lean_array_push(x_489, x_596); +x_598 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_598, 0, x_416); +lean_ctor_set(x_598, 1, x_520); +lean_ctor_set(x_598, 2, x_597); +x_599 = lean_array_push(x_489, x_598); +x_600 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_600, 0, x_416); +lean_ctor_set(x_600, 1, x_523); +lean_ctor_set(x_600, 2, x_599); +lean_inc(x_525); +x_601 = lean_array_push(x_525, x_600); +x_602 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_602, 0, x_416); +lean_ctor_set(x_602, 1, x_495); +lean_ctor_set(x_602, 2, x_601); +x_603 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +lean_inc(x_401); +lean_inc(x_402); +x_604 = l_Lean_addMacroScope(x_402, x_603, x_401); +x_605 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115; +x_606 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118; +lean_inc(x_399); +x_607 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_607, 0, x_399); +lean_ctor_set(x_607, 1, x_605); +lean_ctor_set(x_607, 2, x_604); +lean_ctor_set(x_607, 3, x_606); +lean_inc(x_510); +x_608 = lean_array_push(x_510, x_607); +x_609 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_609, 0, x_416); +lean_ctor_set(x_609, 1, x_512); +lean_ctor_set(x_609, 2, x_608); +x_610 = lean_array_push(x_492, x_609); +x_611 = lean_array_push(x_610, x_479); +x_612 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_612, 0, x_416); +lean_ctor_set(x_612, 1, x_495); +lean_ctor_set(x_612, 2, x_611); +x_613 = lean_array_push(x_489, x_612); +x_614 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_614, 0, x_416); +lean_ctor_set(x_614, 1, x_468); +lean_ctor_set(x_614, 2, x_613); +x_615 = lean_array_push(x_489, x_614); +x_616 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_616, 0, x_416); +lean_ctor_set(x_616, 1, x_520); +lean_ctor_set(x_616, 2, x_615); +x_617 = lean_array_push(x_489, x_616); +x_618 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_618, 0, x_416); +lean_ctor_set(x_618, 1, x_523); +lean_ctor_set(x_618, 2, x_617); +lean_inc(x_525); +x_619 = lean_array_push(x_525, x_618); +x_620 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_620, 0, x_416); +lean_ctor_set(x_620, 1, x_495); +lean_ctor_set(x_620, 2, x_619); +x_621 = lean_array_push(x_492, x_602); +x_622 = lean_array_push(x_621, x_620); +x_623 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_623, 0, x_416); +lean_ctor_set(x_623, 1, x_468); +lean_ctor_set(x_623, 2, x_622); +lean_inc(x_549); +x_624 = lean_array_push(x_549, x_623); +x_625 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_625, 0, x_416); +lean_ctor_set(x_625, 1, x_551); +lean_ctor_set(x_625, 2, x_624); +x_626 = lean_array_push(x_492, x_625); +x_627 = lean_array_push(x_626, x_479); +x_628 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_628, 0, x_416); +lean_ctor_set(x_628, 1, x_495); +lean_ctor_set(x_628, 2, x_627); +x_629 = lean_array_push(x_489, x_628); +x_630 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_630, 0, x_416); +lean_ctor_set(x_630, 1, x_468); +lean_ctor_set(x_630, 2, x_629); +x_631 = lean_array_push(x_489, x_630); +x_632 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_632, 0, x_416); +lean_ctor_set(x_632, 1, x_520); +lean_ctor_set(x_632, 2, x_631); +x_633 = lean_array_push(x_489, x_632); +x_634 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_634, 0, x_416); +lean_ctor_set(x_634, 1, x_523); +lean_ctor_set(x_634, 2, x_633); +lean_inc(x_564); +x_635 = lean_array_push(x_564, x_634); +lean_inc(x_563); +x_636 = lean_array_push(x_635, x_563); +x_637 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_637, 0, x_416); +lean_ctor_set(x_637, 1, x_567); +lean_ctor_set(x_637, 2, x_636); +x_638 = lean_array_push(x_492, x_637); +x_639 = lean_array_push(x_638, x_479); +x_640 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_640, 0, x_416); +lean_ctor_set(x_640, 1, x_495); +lean_ctor_set(x_640, 2, x_639); +x_641 = lean_array_push(x_489, x_640); +x_642 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_642, 0, x_416); +lean_ctor_set(x_642, 1, x_468); +lean_ctor_set(x_642, 2, x_641); +x_643 = lean_array_push(x_489, x_642); +x_644 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_644, 0, x_416); +lean_ctor_set(x_644, 1, x_520); +lean_ctor_set(x_644, 2, x_643); +x_645 = lean_array_push(x_489, x_644); +x_646 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_646, 0, x_416); +lean_ctor_set(x_646, 1, x_523); +lean_ctor_set(x_646, 2, x_645); +x_647 = lean_array_push(x_578, x_646); +x_648 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_648, 0, x_416); +lean_ctor_set(x_648, 1, x_580); +lean_ctor_set(x_648, 2, x_647); +x_649 = lean_array_push(x_492, x_648); +x_650 = lean_array_push(x_649, x_479); +x_651 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_651, 0, x_416); +lean_ctor_set(x_651, 1, x_495); +lean_ctor_set(x_651, 2, x_650); +x_652 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +lean_inc(x_401); +lean_inc(x_402); +x_653 = l_Lean_addMacroScope(x_402, x_652, x_401); +x_654 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121; +x_655 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125; +lean_inc(x_399); +x_656 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_656, 0, x_399); +lean_ctor_set(x_656, 1, x_654); +lean_ctor_set(x_656, 2, x_653); +lean_ctor_set(x_656, 3, x_655); +lean_inc(x_510); +x_657 = lean_array_push(x_510, x_656); +x_658 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_658, 0, x_416); +lean_ctor_set(x_658, 1, x_512); +lean_ctor_set(x_658, 2, x_657); +x_659 = lean_array_push(x_492, x_658); +x_660 = lean_array_push(x_659, x_479); +x_661 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_661, 0, x_416); +lean_ctor_set(x_661, 1, x_495); +lean_ctor_set(x_661, 2, x_660); +x_662 = lean_array_push(x_489, x_661); +x_663 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_663, 0, x_416); +lean_ctor_set(x_663, 1, x_468); +lean_ctor_set(x_663, 2, x_662); +x_664 = lean_array_push(x_489, x_663); +x_665 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_665, 0, x_416); +lean_ctor_set(x_665, 1, x_520); +lean_ctor_set(x_665, 2, x_664); +x_666 = lean_array_push(x_489, x_665); +x_667 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_667, 0, x_416); +lean_ctor_set(x_667, 1, x_523); +lean_ctor_set(x_667, 2, x_666); +lean_inc(x_525); +x_668 = lean_array_push(x_525, x_667); +x_669 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_669, 0, x_416); +lean_ctor_set(x_669, 1, x_495); +lean_ctor_set(x_669, 2, x_668); +x_670 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +lean_inc(x_399); +x_671 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_671, 0, x_399); +lean_ctor_set(x_671, 1, x_670); +x_672 = lean_array_push(x_489, x_671); +x_673 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127; +x_674 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_674, 0, x_416); +lean_ctor_set(x_674, 1, x_673); +lean_ctor_set(x_674, 2, x_672); +x_675 = lean_array_push(x_492, x_674); +x_676 = lean_array_push(x_675, x_479); +x_677 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_677, 0, x_416); +lean_ctor_set(x_677, 1, x_495); +lean_ctor_set(x_677, 2, x_676); +x_678 = lean_array_push(x_489, x_677); +x_679 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_679, 0, x_416); +lean_ctor_set(x_679, 1, x_468); +lean_ctor_set(x_679, 2, x_678); +x_680 = lean_array_push(x_489, x_679); +x_681 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_681, 0, x_416); +lean_ctor_set(x_681, 1, x_520); +lean_ctor_set(x_681, 2, x_680); +x_682 = lean_array_push(x_489, x_681); +x_683 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_683, 0, x_416); +lean_ctor_set(x_683, 1, x_523); +lean_ctor_set(x_683, 2, x_682); +lean_inc(x_525); +x_684 = lean_array_push(x_525, x_683); +x_685 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_685, 0, x_416); +lean_ctor_set(x_685, 1, x_495); +lean_ctor_set(x_685, 2, x_684); +x_686 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +lean_inc(x_401); +lean_inc(x_402); +x_687 = l_Lean_addMacroScope(x_402, x_686, x_401); +x_688 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130; +x_689 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134; +lean_inc(x_399); +x_690 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_690, 0, x_399); +lean_ctor_set(x_690, 1, x_688); +lean_ctor_set(x_690, 2, x_687); +lean_ctor_set(x_690, 3, x_689); +lean_inc(x_510); +x_691 = lean_array_push(x_510, x_690); +x_692 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_692, 0, x_416); +lean_ctor_set(x_692, 1, x_512); +lean_ctor_set(x_692, 2, x_691); +x_693 = lean_array_push(x_492, x_692); +lean_inc(x_491); +x_694 = lean_array_push(x_693, x_491); +x_695 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_695, 0, x_416); +lean_ctor_set(x_695, 1, x_495); +lean_ctor_set(x_695, 2, x_694); +x_696 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +lean_inc(x_399); +x_697 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_697, 0, x_399); +lean_ctor_set(x_697, 1, x_696); +x_698 = lean_array_push(x_489, x_697); +x_699 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136; +x_700 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_700, 0, x_416); +lean_ctor_set(x_700, 1, x_699); +lean_ctor_set(x_700, 2, x_698); +x_701 = lean_array_push(x_492, x_700); +x_702 = lean_array_push(x_701, x_479); +x_703 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_703, 0, x_416); +lean_ctor_set(x_703, 1, x_495); +lean_ctor_set(x_703, 2, x_702); +x_704 = lean_array_push(x_492, x_695); +lean_inc(x_703); +x_705 = lean_array_push(x_704, x_703); +x_706 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_706, 0, x_416); +lean_ctor_set(x_706, 1, x_468); +lean_ctor_set(x_706, 2, x_705); +x_707 = lean_array_push(x_489, x_706); +x_708 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_708, 0, x_416); +lean_ctor_set(x_708, 1, x_520); +lean_ctor_set(x_708, 2, x_707); +x_709 = lean_array_push(x_489, x_708); +x_710 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_710, 0, x_416); +lean_ctor_set(x_710, 1, x_523); +lean_ctor_set(x_710, 2, x_709); +lean_inc(x_525); +x_711 = lean_array_push(x_525, x_710); +x_712 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_712, 0, x_416); +lean_ctor_set(x_712, 1, x_495); +lean_ctor_set(x_712, 2, x_711); +x_713 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +lean_inc(x_401); +lean_inc(x_402); +x_714 = l_Lean_addMacroScope(x_402, x_713, x_401); +x_715 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139; +x_716 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143; +lean_inc(x_399); +x_717 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_717, 0, x_399); +lean_ctor_set(x_717, 1, x_715); +lean_ctor_set(x_717, 2, x_714); +lean_ctor_set(x_717, 3, x_716); +lean_inc(x_510); +x_718 = lean_array_push(x_510, x_717); +x_719 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_719, 0, x_416); +lean_ctor_set(x_719, 1, x_512); +lean_ctor_set(x_719, 2, x_718); +x_720 = lean_array_push(x_492, x_719); +lean_inc(x_491); +x_721 = lean_array_push(x_720, x_491); +x_722 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_722, 0, x_416); +lean_ctor_set(x_722, 1, x_495); +lean_ctor_set(x_722, 2, x_721); +x_723 = lean_array_push(x_492, x_722); +lean_inc(x_703); +x_724 = lean_array_push(x_723, x_703); +x_725 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_725, 0, x_416); +lean_ctor_set(x_725, 1, x_468); +lean_ctor_set(x_725, 2, x_724); +x_726 = lean_array_push(x_489, x_725); +x_727 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_727, 0, x_416); +lean_ctor_set(x_727, 1, x_520); +lean_ctor_set(x_727, 2, x_726); +x_728 = lean_array_push(x_489, x_727); +x_729 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_729, 0, x_416); +lean_ctor_set(x_729, 1, x_523); +lean_ctor_set(x_729, 2, x_728); +lean_inc(x_525); +x_730 = lean_array_push(x_525, x_729); +x_731 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_731, 0, x_416); +lean_ctor_set(x_731, 1, x_495); +lean_ctor_set(x_731, 2, x_730); +x_732 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +x_733 = l_Lean_addMacroScope(x_402, x_732, x_401); +x_734 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146; +x_735 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150; +x_736 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_736, 0, x_399); +lean_ctor_set(x_736, 1, x_734); +lean_ctor_set(x_736, 2, x_733); +lean_ctor_set(x_736, 3, x_735); +x_737 = lean_array_push(x_510, x_736); +x_738 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_738, 0, x_416); +lean_ctor_set(x_738, 1, x_512); +lean_ctor_set(x_738, 2, x_737); +x_739 = lean_array_push(x_492, x_738); +x_740 = lean_array_push(x_739, x_491); +x_741 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_741, 0, x_416); +lean_ctor_set(x_741, 1, x_495); +lean_ctor_set(x_741, 2, x_740); +x_742 = lean_array_push(x_492, x_741); +lean_inc(x_703); +x_743 = lean_array_push(x_742, x_703); +x_744 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_744, 0, x_416); +lean_ctor_set(x_744, 1, x_468); +lean_ctor_set(x_744, 2, x_743); +x_745 = lean_array_push(x_489, x_744); +x_746 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_746, 0, x_416); +lean_ctor_set(x_746, 1, x_520); +lean_ctor_set(x_746, 2, x_745); +x_747 = lean_array_push(x_489, x_746); +x_748 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_748, 0, x_416); +lean_ctor_set(x_748, 1, x_523); +lean_ctor_set(x_748, 2, x_747); +lean_inc(x_525); +x_749 = lean_array_push(x_525, x_748); +x_750 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_750, 0, x_416); +lean_ctor_set(x_750, 1, x_495); +lean_ctor_set(x_750, 2, x_749); +x_751 = lean_array_push(x_489, x_703); +x_752 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_752, 0, x_416); +lean_ctor_set(x_752, 1, x_468); +lean_ctor_set(x_752, 2, x_751); +x_753 = lean_array_push(x_489, x_752); +x_754 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_754, 0, x_416); +lean_ctor_set(x_754, 1, x_520); +lean_ctor_set(x_754, 2, x_753); +x_755 = lean_array_push(x_489, x_754); +x_756 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_756, 0, x_416); +lean_ctor_set(x_756, 1, x_523); +lean_ctor_set(x_756, 2, x_755); +x_757 = lean_array_push(x_525, x_756); +x_758 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_758, 0, x_416); +lean_ctor_set(x_758, 1, x_495); +lean_ctor_set(x_758, 2, x_757); +x_759 = lean_array_push(x_477, x_669); +x_760 = lean_array_push(x_759, x_685); +x_761 = lean_array_push(x_760, x_712); +x_762 = lean_array_push(x_761, x_731); +x_763 = lean_array_push(x_762, x_750); +x_764 = lean_array_push(x_763, x_758); +x_765 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_765, 0, x_416); +lean_ctor_set(x_765, 1, x_468); +lean_ctor_set(x_765, 2, x_764); +x_766 = lean_array_push(x_549, x_765); +x_767 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_767, 0, x_416); +lean_ctor_set(x_767, 1, x_551); +lean_ctor_set(x_767, 2, x_766); +x_768 = lean_array_push(x_492, x_767); +x_769 = lean_array_push(x_768, x_479); +x_770 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_770, 0, x_416); +lean_ctor_set(x_770, 1, x_495); +lean_ctor_set(x_770, 2, x_769); +x_771 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151; +x_772 = lean_array_push(x_771, x_496); +x_773 = lean_array_push(x_772, x_584); +x_774 = lean_array_push(x_773, x_651); +x_775 = lean_array_push(x_774, x_770); +x_776 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_776, 0, x_416); +lean_ctor_set(x_776, 1, x_468); +lean_ctor_set(x_776, 2, x_775); +x_777 = lean_array_push(x_489, x_776); +x_778 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_778, 0, x_416); +lean_ctor_set(x_778, 1, x_520); +lean_ctor_set(x_778, 2, x_777); +x_779 = lean_array_push(x_489, x_778); +x_780 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_780, 0, x_416); +lean_ctor_set(x_780, 1, x_523); +lean_ctor_set(x_780, 2, x_779); +x_781 = lean_array_push(x_564, x_780); +x_782 = lean_array_push(x_781, x_563); +x_783 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_783, 0, x_416); +lean_ctor_set(x_783, 1, x_567); +lean_ctor_set(x_783, 2, x_782); +x_784 = lean_array_push(x_489, x_783); +x_785 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_785, 0, x_416); +lean_ctor_set(x_785, 1, x_468); +lean_ctor_set(x_785, 2, x_784); +x_786 = lean_array_push(x_489, x_785); +x_787 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8; +x_788 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_788, 0, x_416); +lean_ctor_set(x_788, 1, x_787); +lean_ctor_set(x_788, 2, x_786); +x_789 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_789, 0, x_788); +lean_ctor_set(x_789, 1, x_400); +return x_789; +} +} +} +} +static lean_object* _init_l_tacticDecreasing__tactic___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticDecreasing_tactic"); +return x_1; +} +} +static lean_object* _init_l_tacticDecreasing__tactic___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_tacticDecreasing__tactic___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_tacticDecreasing__tactic___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("decreasing_tactic"); +return x_1; +} +} +static lean_object* _init_l_tacticDecreasing__tactic___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_tacticDecreasing__tactic___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_tacticDecreasing__tactic___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_tacticDecreasing__tactic___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_tacticDecreasing__tactic___closed__4; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_tacticDecreasing__tactic() { +_start: +{ +lean_object* x_1; +x_1 = l_tacticDecreasing__tactic___closed__5; +return x_1; +} +} +LEAN_EXPORT lean_object* l___aux__Init__WFTactics______macroRules__tacticDecreasing__tactic__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_tacticDecreasing__tactic___closed__2; +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_2); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; uint8_t x_9; +lean_inc(x_2); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_2, 2); +lean_inc(x_11); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_12); +lean_dec(x_2); +x_13 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13; +lean_inc(x_10); +x_14 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_13); +x_15 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +lean_inc(x_10); +x_16 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_16, 0, x_10); +lean_ctor_set(x_16, 1, x_15); +x_17 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24; +lean_inc(x_10); +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_10); +lean_ctor_set(x_18, 1, x_17); +x_19 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +lean_inc(x_11); +lean_inc(x_12); +x_20 = l_Lean_addMacroScope(x_12, x_19, x_11); +x_21 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29; +x_22 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32; +lean_inc(x_10); +x_23 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_23, 0, x_10); +lean_ctor_set(x_23, 1, x_21); +lean_ctor_set(x_23, 2, x_20); +lean_ctor_set(x_23, 3, x_22); +x_24 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35; +x_25 = lean_array_push(x_24, x_23); +x_26 = lean_box(2); +x_27 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26; +x_28 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +lean_ctor_set(x_28, 2, x_25); +x_29 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36; +lean_inc(x_10); +x_30 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_30, 0, x_10); +lean_ctor_set(x_30, 1, x_29); +x_31 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +lean_inc(x_11); +lean_inc(x_12); +x_32 = l_Lean_addMacroScope(x_12, x_31, x_11); +x_33 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39; +x_34 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42; +lean_inc(x_10); +x_35 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_35, 0, x_10); +lean_ctor_set(x_35, 1, x_33); +lean_ctor_set(x_35, 2, x_32); +lean_ctor_set(x_35, 3, x_34); +x_36 = lean_array_push(x_24, x_35); +x_37 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_37, 0, x_26); +lean_ctor_set(x_37, 1, x_27); +lean_ctor_set(x_37, 2, x_36); +x_38 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +lean_inc(x_11); +lean_inc(x_12); +x_39 = l_Lean_addMacroScope(x_12, x_38, x_11); +x_40 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45; +x_41 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51; +lean_inc(x_10); +x_42 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_42, 0, x_10); +lean_ctor_set(x_42, 1, x_40); +lean_ctor_set(x_42, 2, x_39); +lean_ctor_set(x_42, 3, x_41); +x_43 = lean_array_push(x_24, x_42); +x_44 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_44, 0, x_26); +lean_ctor_set(x_44, 1, x_27); +lean_ctor_set(x_44, 2, x_43); +x_45 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +lean_inc(x_11); +lean_inc(x_12); +x_46 = l_Lean_addMacroScope(x_12, x_45, x_11); +x_47 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54; +x_48 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57; +lean_inc(x_10); +x_49 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_49, 0, x_10); +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_49, 2, x_46); +lean_ctor_set(x_49, 3, x_48); +x_50 = lean_array_push(x_24, x_49); +x_51 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_51, 0, x_26); +lean_ctor_set(x_51, 1, x_27); +lean_ctor_set(x_51, 2, x_50); +x_52 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +lean_inc(x_11); +lean_inc(x_12); +x_53 = l_Lean_addMacroScope(x_12, x_52, x_11); +x_54 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60; +x_55 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63; +lean_inc(x_10); +x_56 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_56, 0, x_10); +lean_ctor_set(x_56, 1, x_54); +lean_ctor_set(x_56, 2, x_53); +lean_ctor_set(x_56, 3, x_55); +x_57 = lean_array_push(x_24, x_56); +x_58 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_58, 0, x_26); +lean_ctor_set(x_58, 1, x_27); +lean_ctor_set(x_58, 2, x_57); +x_59 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +lean_inc(x_11); +lean_inc(x_12); +x_60 = l_Lean_addMacroScope(x_12, x_59, x_11); +x_61 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66; +x_62 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72; +lean_inc(x_10); +x_63 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_63, 0, x_10); +lean_ctor_set(x_63, 1, x_61); +lean_ctor_set(x_63, 2, x_60); +lean_ctor_set(x_63, 3, x_62); +x_64 = lean_array_push(x_24, x_63); +x_65 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_65, 0, x_26); +lean_ctor_set(x_65, 1, x_27); +lean_ctor_set(x_65, 2, x_64); +x_66 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73; +x_67 = lean_array_push(x_66, x_28); +lean_inc(x_30); +x_68 = lean_array_push(x_67, x_30); +x_69 = lean_array_push(x_68, x_37); +lean_inc(x_30); +x_70 = lean_array_push(x_69, x_30); +x_71 = lean_array_push(x_70, x_44); +lean_inc(x_30); +x_72 = lean_array_push(x_71, x_30); +x_73 = lean_array_push(x_72, x_51); +lean_inc(x_30); +x_74 = lean_array_push(x_73, x_30); +x_75 = lean_array_push(x_74, x_58); +x_76 = lean_array_push(x_75, x_30); +x_77 = lean_array_push(x_76, x_65); +x_78 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +x_79 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_79, 0, x_26); +lean_ctor_set(x_79, 1, x_78); +lean_ctor_set(x_79, 2, x_77); +x_80 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74; +lean_inc(x_10); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_10); +lean_ctor_set(x_81, 1, x_80); +x_82 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +x_83 = lean_array_push(x_82, x_18); +x_84 = lean_array_push(x_83, x_79); +x_85 = lean_array_push(x_84, x_81); +x_86 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_86, 0, x_26); +lean_ctor_set(x_86, 1, x_78); +lean_ctor_set(x_86, 2, x_85); +x_87 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75; +x_88 = lean_array_push(x_87, x_16); +x_89 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_90 = lean_array_push(x_88, x_89); +x_91 = lean_array_push(x_90, x_89); +x_92 = lean_array_push(x_91, x_89); +x_93 = lean_array_push(x_92, x_86); +x_94 = lean_array_push(x_93, x_89); +x_95 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21; +x_96 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_96, 0, x_26); +lean_ctor_set(x_96, 1, x_95); +lean_ctor_set(x_96, 2, x_94); +x_97 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76; +lean_inc(x_10); +x_98 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_98, 0, x_10); +lean_ctor_set(x_98, 1, x_97); +x_99 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77; +x_100 = lean_array_push(x_99, x_98); +x_101 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_101, 0, x_26); +lean_ctor_set(x_101, 1, x_78); +lean_ctor_set(x_101, 2, x_100); +x_102 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78; +x_103 = lean_array_push(x_102, x_96); +lean_inc(x_101); +x_104 = lean_array_push(x_103, x_101); +x_105 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19; +x_106 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_106, 0, x_26); +lean_ctor_set(x_106, 1, x_105); +lean_ctor_set(x_106, 2, x_104); +x_107 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81; +lean_inc(x_10); +x_108 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_108, 0, x_10); +lean_ctor_set(x_108, 1, x_107); +x_109 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +lean_inc(x_10); +x_110 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_110, 0, x_10); +lean_ctor_set(x_110, 1, x_109); +x_111 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84; +lean_inc(x_10); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_10); +lean_ctor_set(x_112, 1, x_111); +x_113 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +lean_inc(x_10); +x_114 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_114, 0, x_10); +lean_ctor_set(x_114, 1, x_113); +x_115 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +lean_inc(x_11); +lean_inc(x_12); +x_116 = l_Lean_addMacroScope(x_12, x_115, x_11); +x_117 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89; +x_118 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95; +lean_inc(x_10); +x_119 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_119, 0, x_10); +lean_ctor_set(x_119, 1, x_117); +lean_ctor_set(x_119, 2, x_116); +lean_ctor_set(x_119, 3, x_118); +x_120 = lean_array_push(x_102, x_114); +lean_inc(x_120); +x_121 = lean_array_push(x_120, x_119); +x_122 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86; +x_123 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_123, 0, x_26); +lean_ctor_set(x_123, 1, x_122); +lean_ctor_set(x_123, 2, x_121); +x_124 = lean_array_push(x_102, x_123); +x_125 = lean_array_push(x_124, x_89); +x_126 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_126, 0, x_26); +lean_ctor_set(x_126, 1, x_105); +lean_ctor_set(x_126, 2, x_125); +x_127 = lean_array_push(x_99, x_126); +x_128 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_128, 0, x_26); +lean_ctor_set(x_128, 1, x_78); +lean_ctor_set(x_128, 2, x_127); +x_129 = lean_array_push(x_99, x_128); +x_130 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17; +x_131 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_131, 0, x_26); +lean_ctor_set(x_131, 1, x_130); +lean_ctor_set(x_131, 2, x_129); +x_132 = lean_array_push(x_99, x_131); +x_133 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15; +x_134 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_134, 0, x_26); +lean_ctor_set(x_134, 1, x_133); +lean_ctor_set(x_134, 2, x_132); +x_135 = lean_array_push(x_102, x_112); +lean_inc(x_135); +x_136 = lean_array_push(x_135, x_134); +x_137 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_137, 0, x_26); +lean_ctor_set(x_137, 1, x_105); +lean_ctor_set(x_137, 2, x_136); +x_138 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +lean_inc(x_11); +lean_inc(x_12); +x_139 = l_Lean_addMacroScope(x_12, x_138, x_11); +x_140 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98; +x_141 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102; +lean_inc(x_10); +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_10); +lean_ctor_set(x_142, 1, x_140); +lean_ctor_set(x_142, 2, x_139); +lean_ctor_set(x_142, 3, x_141); +lean_inc(x_120); +x_143 = lean_array_push(x_120, x_142); +x_144 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_144, 0, x_26); +lean_ctor_set(x_144, 1, x_122); +lean_ctor_set(x_144, 2, x_143); +x_145 = lean_array_push(x_102, x_144); +x_146 = lean_array_push(x_145, x_89); +x_147 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_147, 0, x_26); +lean_ctor_set(x_147, 1, x_105); +lean_ctor_set(x_147, 2, x_146); +x_148 = lean_array_push(x_99, x_147); +x_149 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_149, 0, x_26); +lean_ctor_set(x_149, 1, x_78); +lean_ctor_set(x_149, 2, x_148); +x_150 = lean_array_push(x_99, x_149); +x_151 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_151, 0, x_26); +lean_ctor_set(x_151, 1, x_130); +lean_ctor_set(x_151, 2, x_150); +x_152 = lean_array_push(x_99, x_151); +x_153 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_153, 0, x_26); +lean_ctor_set(x_153, 1, x_133); +lean_ctor_set(x_153, 2, x_152); +lean_inc(x_135); +x_154 = lean_array_push(x_135, x_153); +x_155 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_155, 0, x_26); +lean_ctor_set(x_155, 1, x_105); +lean_ctor_set(x_155, 2, x_154); +x_156 = lean_array_push(x_102, x_137); +x_157 = lean_array_push(x_156, x_155); +x_158 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_158, 0, x_26); +lean_ctor_set(x_158, 1, x_78); +lean_ctor_set(x_158, 2, x_157); +x_159 = lean_array_push(x_102, x_110); +lean_inc(x_159); +x_160 = lean_array_push(x_159, x_158); +x_161 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83; +x_162 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_162, 0, x_26); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_162, 2, x_160); +x_163 = lean_array_push(x_102, x_162); +x_164 = lean_array_push(x_163, x_89); +x_165 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_165, 0, x_26); +lean_ctor_set(x_165, 1, x_105); +lean_ctor_set(x_165, 2, x_164); +x_166 = lean_array_push(x_99, x_165); +x_167 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_167, 0, x_26); +lean_ctor_set(x_167, 1, x_78); +lean_ctor_set(x_167, 2, x_166); +x_168 = lean_array_push(x_99, x_167); +x_169 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_169, 0, x_26); +lean_ctor_set(x_169, 1, x_130); +lean_ctor_set(x_169, 2, x_168); +x_170 = lean_array_push(x_99, x_169); +x_171 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_171, 0, x_26); +lean_ctor_set(x_171, 1, x_133); +lean_ctor_set(x_171, 2, x_170); +x_172 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103; +lean_inc(x_10); +x_173 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_173, 0, x_10); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_array_push(x_82, x_14); +lean_inc(x_174); +x_175 = lean_array_push(x_174, x_171); +lean_inc(x_173); +x_176 = lean_array_push(x_175, x_173); +x_177 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12; +x_178 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_178, 0, x_26); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_176); +x_179 = lean_array_push(x_102, x_178); +x_180 = lean_array_push(x_179, x_89); +x_181 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_181, 0, x_26); +lean_ctor_set(x_181, 1, x_105); +lean_ctor_set(x_181, 2, x_180); +x_182 = lean_array_push(x_99, x_181); +x_183 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_183, 0, x_26); +lean_ctor_set(x_183, 1, x_78); +lean_ctor_set(x_183, 2, x_182); +x_184 = lean_array_push(x_99, x_183); +x_185 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_185, 0, x_26); +lean_ctor_set(x_185, 1, x_130); +lean_ctor_set(x_185, 2, x_184); +x_186 = lean_array_push(x_99, x_185); +x_187 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_187, 0, x_26); +lean_ctor_set(x_187, 1, x_133); +lean_ctor_set(x_187, 2, x_186); +x_188 = lean_array_push(x_102, x_108); +lean_inc(x_188); +x_189 = lean_array_push(x_188, x_187); +x_190 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80; +x_191 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_191, 0, x_26); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set(x_191, 2, x_189); +x_192 = lean_array_push(x_102, x_191); +x_193 = lean_array_push(x_192, x_89); +x_194 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_194, 0, x_26); +lean_ctor_set(x_194, 1, x_105); +lean_ctor_set(x_194, 2, x_193); +x_195 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +lean_inc(x_11); +lean_inc(x_12); +x_196 = l_Lean_addMacroScope(x_12, x_195, x_11); +x_197 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106; +x_198 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112; +lean_inc(x_10); +x_199 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_199, 0, x_10); +lean_ctor_set(x_199, 1, x_197); +lean_ctor_set(x_199, 2, x_196); +lean_ctor_set(x_199, 3, x_198); +lean_inc(x_120); +x_200 = lean_array_push(x_120, x_199); +x_201 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_201, 0, x_26); +lean_ctor_set(x_201, 1, x_122); +lean_ctor_set(x_201, 2, x_200); +x_202 = lean_array_push(x_102, x_201); +x_203 = lean_array_push(x_202, x_89); +x_204 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_204, 0, x_26); +lean_ctor_set(x_204, 1, x_105); +lean_ctor_set(x_204, 2, x_203); +x_205 = lean_array_push(x_99, x_204); +x_206 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_206, 0, x_26); +lean_ctor_set(x_206, 1, x_78); +lean_ctor_set(x_206, 2, x_205); +x_207 = lean_array_push(x_99, x_206); +x_208 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_208, 0, x_26); +lean_ctor_set(x_208, 1, x_130); +lean_ctor_set(x_208, 2, x_207); +x_209 = lean_array_push(x_99, x_208); +x_210 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_210, 0, x_26); +lean_ctor_set(x_210, 1, x_133); +lean_ctor_set(x_210, 2, x_209); +lean_inc(x_135); +x_211 = lean_array_push(x_135, x_210); +x_212 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_212, 0, x_26); +lean_ctor_set(x_212, 1, x_105); +lean_ctor_set(x_212, 2, x_211); +x_213 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +lean_inc(x_11); +lean_inc(x_12); +x_214 = l_Lean_addMacroScope(x_12, x_213, x_11); +x_215 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115; +x_216 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118; +lean_inc(x_10); +x_217 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_217, 0, x_10); +lean_ctor_set(x_217, 1, x_215); +lean_ctor_set(x_217, 2, x_214); +lean_ctor_set(x_217, 3, x_216); +lean_inc(x_120); +x_218 = lean_array_push(x_120, x_217); +x_219 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_219, 0, x_26); +lean_ctor_set(x_219, 1, x_122); +lean_ctor_set(x_219, 2, x_218); +x_220 = lean_array_push(x_102, x_219); +x_221 = lean_array_push(x_220, x_89); +x_222 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_222, 0, x_26); +lean_ctor_set(x_222, 1, x_105); +lean_ctor_set(x_222, 2, x_221); +x_223 = lean_array_push(x_99, x_222); +x_224 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_224, 0, x_26); +lean_ctor_set(x_224, 1, x_78); +lean_ctor_set(x_224, 2, x_223); +x_225 = lean_array_push(x_99, x_224); +x_226 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_226, 0, x_26); +lean_ctor_set(x_226, 1, x_130); +lean_ctor_set(x_226, 2, x_225); +x_227 = lean_array_push(x_99, x_226); +x_228 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_228, 0, x_26); +lean_ctor_set(x_228, 1, x_133); +lean_ctor_set(x_228, 2, x_227); +lean_inc(x_135); +x_229 = lean_array_push(x_135, x_228); +x_230 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_230, 0, x_26); +lean_ctor_set(x_230, 1, x_105); +lean_ctor_set(x_230, 2, x_229); +x_231 = lean_array_push(x_102, x_212); +x_232 = lean_array_push(x_231, x_230); +x_233 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_233, 0, x_26); +lean_ctor_set(x_233, 1, x_78); +lean_ctor_set(x_233, 2, x_232); +lean_inc(x_159); +x_234 = lean_array_push(x_159, x_233); +x_235 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_235, 0, x_26); +lean_ctor_set(x_235, 1, x_161); +lean_ctor_set(x_235, 2, x_234); +x_236 = lean_array_push(x_102, x_235); +x_237 = lean_array_push(x_236, x_89); +x_238 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_238, 0, x_26); +lean_ctor_set(x_238, 1, x_105); +lean_ctor_set(x_238, 2, x_237); +x_239 = lean_array_push(x_99, x_238); +x_240 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_240, 0, x_26); +lean_ctor_set(x_240, 1, x_78); +lean_ctor_set(x_240, 2, x_239); +x_241 = lean_array_push(x_99, x_240); +x_242 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_242, 0, x_26); +lean_ctor_set(x_242, 1, x_130); +lean_ctor_set(x_242, 2, x_241); +x_243 = lean_array_push(x_99, x_242); +x_244 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_244, 0, x_26); +lean_ctor_set(x_244, 1, x_133); +lean_ctor_set(x_244, 2, x_243); +lean_inc(x_174); +x_245 = lean_array_push(x_174, x_244); +lean_inc(x_173); +x_246 = lean_array_push(x_245, x_173); +x_247 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_247, 0, x_26); +lean_ctor_set(x_247, 1, x_177); +lean_ctor_set(x_247, 2, x_246); +x_248 = lean_array_push(x_102, x_247); +x_249 = lean_array_push(x_248, x_89); +x_250 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_250, 0, x_26); +lean_ctor_set(x_250, 1, x_105); +lean_ctor_set(x_250, 2, x_249); +x_251 = lean_array_push(x_99, x_250); +x_252 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_252, 0, x_26); +lean_ctor_set(x_252, 1, x_78); +lean_ctor_set(x_252, 2, x_251); +x_253 = lean_array_push(x_99, x_252); +x_254 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_254, 0, x_26); +lean_ctor_set(x_254, 1, x_130); +lean_ctor_set(x_254, 2, x_253); +x_255 = lean_array_push(x_99, x_254); +x_256 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_256, 0, x_26); +lean_ctor_set(x_256, 1, x_133); +lean_ctor_set(x_256, 2, x_255); +x_257 = lean_array_push(x_188, x_256); +x_258 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_258, 0, x_26); +lean_ctor_set(x_258, 1, x_190); +lean_ctor_set(x_258, 2, x_257); +x_259 = lean_array_push(x_102, x_258); +x_260 = lean_array_push(x_259, x_89); +x_261 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_261, 0, x_26); +lean_ctor_set(x_261, 1, x_105); +lean_ctor_set(x_261, 2, x_260); +x_262 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +lean_inc(x_11); +lean_inc(x_12); +x_263 = l_Lean_addMacroScope(x_12, x_262, x_11); +x_264 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121; +x_265 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125; +lean_inc(x_10); +x_266 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_266, 0, x_10); +lean_ctor_set(x_266, 1, x_264); +lean_ctor_set(x_266, 2, x_263); +lean_ctor_set(x_266, 3, x_265); +lean_inc(x_120); +x_267 = lean_array_push(x_120, x_266); +x_268 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_268, 0, x_26); +lean_ctor_set(x_268, 1, x_122); +lean_ctor_set(x_268, 2, x_267); +x_269 = lean_array_push(x_102, x_268); +x_270 = lean_array_push(x_269, x_89); +x_271 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_271, 0, x_26); +lean_ctor_set(x_271, 1, x_105); +lean_ctor_set(x_271, 2, x_270); +x_272 = lean_array_push(x_99, x_271); +x_273 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_273, 0, x_26); +lean_ctor_set(x_273, 1, x_78); +lean_ctor_set(x_273, 2, x_272); +x_274 = lean_array_push(x_99, x_273); +x_275 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_275, 0, x_26); +lean_ctor_set(x_275, 1, x_130); +lean_ctor_set(x_275, 2, x_274); +x_276 = lean_array_push(x_99, x_275); +x_277 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_277, 0, x_26); +lean_ctor_set(x_277, 1, x_133); +lean_ctor_set(x_277, 2, x_276); +lean_inc(x_135); +x_278 = lean_array_push(x_135, x_277); +x_279 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_279, 0, x_26); +lean_ctor_set(x_279, 1, x_105); +lean_ctor_set(x_279, 2, x_278); +x_280 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +lean_inc(x_10); +x_281 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_281, 0, x_10); +lean_ctor_set(x_281, 1, x_280); +x_282 = lean_array_push(x_99, x_281); +x_283 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127; +x_284 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_284, 0, x_26); +lean_ctor_set(x_284, 1, x_283); +lean_ctor_set(x_284, 2, x_282); +x_285 = lean_array_push(x_102, x_284); +x_286 = lean_array_push(x_285, x_89); +x_287 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_287, 0, x_26); +lean_ctor_set(x_287, 1, x_105); +lean_ctor_set(x_287, 2, x_286); +x_288 = lean_array_push(x_99, x_287); +x_289 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_289, 0, x_26); +lean_ctor_set(x_289, 1, x_78); +lean_ctor_set(x_289, 2, x_288); +x_290 = lean_array_push(x_99, x_289); +x_291 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_291, 0, x_26); +lean_ctor_set(x_291, 1, x_130); +lean_ctor_set(x_291, 2, x_290); +x_292 = lean_array_push(x_99, x_291); +x_293 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_293, 0, x_26); +lean_ctor_set(x_293, 1, x_133); +lean_ctor_set(x_293, 2, x_292); +lean_inc(x_135); +x_294 = lean_array_push(x_135, x_293); +x_295 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_295, 0, x_26); +lean_ctor_set(x_295, 1, x_105); +lean_ctor_set(x_295, 2, x_294); +x_296 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +lean_inc(x_11); +lean_inc(x_12); +x_297 = l_Lean_addMacroScope(x_12, x_296, x_11); +x_298 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130; +x_299 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134; +lean_inc(x_10); +x_300 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_300, 0, x_10); +lean_ctor_set(x_300, 1, x_298); +lean_ctor_set(x_300, 2, x_297); +lean_ctor_set(x_300, 3, x_299); +lean_inc(x_120); +x_301 = lean_array_push(x_120, x_300); +x_302 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_302, 0, x_26); +lean_ctor_set(x_302, 1, x_122); +lean_ctor_set(x_302, 2, x_301); +x_303 = lean_array_push(x_102, x_302); +lean_inc(x_101); +x_304 = lean_array_push(x_303, x_101); +x_305 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_305, 0, x_26); +lean_ctor_set(x_305, 1, x_105); +lean_ctor_set(x_305, 2, x_304); +x_306 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +lean_inc(x_10); +x_307 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_307, 0, x_10); +lean_ctor_set(x_307, 1, x_306); +x_308 = lean_array_push(x_99, x_307); +x_309 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136; +x_310 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_310, 0, x_26); +lean_ctor_set(x_310, 1, x_309); +lean_ctor_set(x_310, 2, x_308); +x_311 = lean_array_push(x_102, x_310); +x_312 = lean_array_push(x_311, x_89); +x_313 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_313, 0, x_26); +lean_ctor_set(x_313, 1, x_105); +lean_ctor_set(x_313, 2, x_312); +x_314 = lean_array_push(x_102, x_305); +lean_inc(x_313); +x_315 = lean_array_push(x_314, x_313); +x_316 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_316, 0, x_26); +lean_ctor_set(x_316, 1, x_78); +lean_ctor_set(x_316, 2, x_315); +x_317 = lean_array_push(x_99, x_316); +x_318 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_318, 0, x_26); +lean_ctor_set(x_318, 1, x_130); +lean_ctor_set(x_318, 2, x_317); +x_319 = lean_array_push(x_99, x_318); +x_320 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_320, 0, x_26); +lean_ctor_set(x_320, 1, x_133); +lean_ctor_set(x_320, 2, x_319); +lean_inc(x_135); +x_321 = lean_array_push(x_135, x_320); +x_322 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_322, 0, x_26); +lean_ctor_set(x_322, 1, x_105); +lean_ctor_set(x_322, 2, x_321); +x_323 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +lean_inc(x_11); +lean_inc(x_12); +x_324 = l_Lean_addMacroScope(x_12, x_323, x_11); +x_325 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139; +x_326 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143; +lean_inc(x_10); +x_327 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_327, 0, x_10); +lean_ctor_set(x_327, 1, x_325); +lean_ctor_set(x_327, 2, x_324); +lean_ctor_set(x_327, 3, x_326); +lean_inc(x_120); +x_328 = lean_array_push(x_120, x_327); +x_329 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_329, 0, x_26); +lean_ctor_set(x_329, 1, x_122); +lean_ctor_set(x_329, 2, x_328); +x_330 = lean_array_push(x_102, x_329); +lean_inc(x_101); +x_331 = lean_array_push(x_330, x_101); +x_332 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_332, 0, x_26); +lean_ctor_set(x_332, 1, x_105); +lean_ctor_set(x_332, 2, x_331); +x_333 = lean_array_push(x_102, x_332); +lean_inc(x_313); +x_334 = lean_array_push(x_333, x_313); +x_335 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_335, 0, x_26); +lean_ctor_set(x_335, 1, x_78); +lean_ctor_set(x_335, 2, x_334); +x_336 = lean_array_push(x_99, x_335); +x_337 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_337, 0, x_26); +lean_ctor_set(x_337, 1, x_130); +lean_ctor_set(x_337, 2, x_336); +x_338 = lean_array_push(x_99, x_337); +x_339 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_339, 0, x_26); +lean_ctor_set(x_339, 1, x_133); +lean_ctor_set(x_339, 2, x_338); +lean_inc(x_135); +x_340 = lean_array_push(x_135, x_339); +x_341 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_341, 0, x_26); +lean_ctor_set(x_341, 1, x_105); +lean_ctor_set(x_341, 2, x_340); +x_342 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +x_343 = l_Lean_addMacroScope(x_12, x_342, x_11); +x_344 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146; +x_345 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150; +x_346 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_346, 0, x_10); +lean_ctor_set(x_346, 1, x_344); +lean_ctor_set(x_346, 2, x_343); +lean_ctor_set(x_346, 3, x_345); +x_347 = lean_array_push(x_120, x_346); +x_348 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_348, 0, x_26); +lean_ctor_set(x_348, 1, x_122); +lean_ctor_set(x_348, 2, x_347); +x_349 = lean_array_push(x_102, x_348); +x_350 = lean_array_push(x_349, x_101); +x_351 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_351, 0, x_26); +lean_ctor_set(x_351, 1, x_105); +lean_ctor_set(x_351, 2, x_350); +x_352 = lean_array_push(x_102, x_351); +lean_inc(x_313); +x_353 = lean_array_push(x_352, x_313); +x_354 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_354, 0, x_26); +lean_ctor_set(x_354, 1, x_78); +lean_ctor_set(x_354, 2, x_353); +x_355 = lean_array_push(x_99, x_354); +x_356 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_356, 0, x_26); +lean_ctor_set(x_356, 1, x_130); +lean_ctor_set(x_356, 2, x_355); +x_357 = lean_array_push(x_99, x_356); +x_358 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_358, 0, x_26); +lean_ctor_set(x_358, 1, x_133); +lean_ctor_set(x_358, 2, x_357); +lean_inc(x_135); +x_359 = lean_array_push(x_135, x_358); +x_360 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_360, 0, x_26); +lean_ctor_set(x_360, 1, x_105); +lean_ctor_set(x_360, 2, x_359); +x_361 = lean_array_push(x_99, x_313); +x_362 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_362, 0, x_26); +lean_ctor_set(x_362, 1, x_78); +lean_ctor_set(x_362, 2, x_361); +x_363 = lean_array_push(x_99, x_362); +x_364 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_364, 0, x_26); +lean_ctor_set(x_364, 1, x_130); +lean_ctor_set(x_364, 2, x_363); +x_365 = lean_array_push(x_99, x_364); +x_366 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_366, 0, x_26); +lean_ctor_set(x_366, 1, x_133); +lean_ctor_set(x_366, 2, x_365); +x_367 = lean_array_push(x_135, x_366); +x_368 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_368, 0, x_26); +lean_ctor_set(x_368, 1, x_105); +lean_ctor_set(x_368, 2, x_367); +x_369 = lean_array_push(x_87, x_279); +x_370 = lean_array_push(x_369, x_295); +x_371 = lean_array_push(x_370, x_322); +x_372 = lean_array_push(x_371, x_341); +x_373 = lean_array_push(x_372, x_360); +x_374 = lean_array_push(x_373, x_368); +x_375 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_375, 0, x_26); +lean_ctor_set(x_375, 1, x_78); +lean_ctor_set(x_375, 2, x_374); +x_376 = lean_array_push(x_159, x_375); +x_377 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_377, 0, x_26); +lean_ctor_set(x_377, 1, x_161); +lean_ctor_set(x_377, 2, x_376); +x_378 = lean_array_push(x_102, x_377); +x_379 = lean_array_push(x_378, x_89); +x_380 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_380, 0, x_26); +lean_ctor_set(x_380, 1, x_105); +lean_ctor_set(x_380, 2, x_379); +x_381 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151; +x_382 = lean_array_push(x_381, x_106); +x_383 = lean_array_push(x_382, x_194); +x_384 = lean_array_push(x_383, x_261); +x_385 = lean_array_push(x_384, x_380); +x_386 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_386, 0, x_26); +lean_ctor_set(x_386, 1, x_78); +lean_ctor_set(x_386, 2, x_385); +x_387 = lean_array_push(x_99, x_386); +x_388 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_388, 0, x_26); +lean_ctor_set(x_388, 1, x_130); +lean_ctor_set(x_388, 2, x_387); +x_389 = lean_array_push(x_99, x_388); +x_390 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_390, 0, x_26); +lean_ctor_set(x_390, 1, x_133); +lean_ctor_set(x_390, 2, x_389); +x_391 = lean_array_push(x_174, x_390); +x_392 = lean_array_push(x_391, x_173); +x_393 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_393, 0, x_26); +lean_ctor_set(x_393, 1, x_177); +lean_ctor_set(x_393, 2, x_392); +x_394 = lean_array_push(x_99, x_393); +x_395 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_395, 0, x_26); +lean_ctor_set(x_395, 1, x_78); +lean_ctor_set(x_395, 2, x_394); +x_396 = lean_array_push(x_99, x_395); +x_397 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8; +x_398 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_398, 0, x_26); +lean_ctor_set(x_398, 1, x_397); +lean_ctor_set(x_398, 2, x_396); +lean_ctor_set(x_8, 0, x_398); +return x_8; +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; +x_399 = lean_ctor_get(x_8, 0); +x_400 = lean_ctor_get(x_8, 1); +lean_inc(x_400); +lean_inc(x_399); +lean_dec(x_8); +x_401 = lean_ctor_get(x_2, 2); +lean_inc(x_401); +x_402 = lean_ctor_get(x_2, 1); +lean_inc(x_402); +lean_dec(x_2); +x_403 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13; +lean_inc(x_399); +x_404 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_404, 0, x_399); +lean_ctor_set(x_404, 1, x_403); +x_405 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20; +lean_inc(x_399); +x_406 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_406, 0, x_399); +lean_ctor_set(x_406, 1, x_405); +x_407 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24; +lean_inc(x_399); +x_408 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_408, 0, x_399); +lean_ctor_set(x_408, 1, x_407); +x_409 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30; +lean_inc(x_401); +lean_inc(x_402); +x_410 = l_Lean_addMacroScope(x_402, x_409, x_401); +x_411 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29; +x_412 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32; +lean_inc(x_399); +x_413 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_413, 0, x_399); +lean_ctor_set(x_413, 1, x_411); +lean_ctor_set(x_413, 2, x_410); +lean_ctor_set(x_413, 3, x_412); +x_414 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35; +x_415 = lean_array_push(x_414, x_413); +x_416 = lean_box(2); +x_417 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26; +x_418 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_418, 0, x_416); +lean_ctor_set(x_418, 1, x_417); +lean_ctor_set(x_418, 2, x_415); +x_419 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36; +lean_inc(x_399); +x_420 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_420, 0, x_399); +lean_ctor_set(x_420, 1, x_419); +x_421 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40; +lean_inc(x_401); +lean_inc(x_402); +x_422 = l_Lean_addMacroScope(x_402, x_421, x_401); +x_423 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39; +x_424 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42; +lean_inc(x_399); +x_425 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_425, 0, x_399); +lean_ctor_set(x_425, 1, x_423); +lean_ctor_set(x_425, 2, x_422); +lean_ctor_set(x_425, 3, x_424); +x_426 = lean_array_push(x_414, x_425); +x_427 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_427, 0, x_416); +lean_ctor_set(x_427, 1, x_417); +lean_ctor_set(x_427, 2, x_426); +x_428 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49; +lean_inc(x_401); +lean_inc(x_402); +x_429 = l_Lean_addMacroScope(x_402, x_428, x_401); +x_430 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45; +x_431 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51; +lean_inc(x_399); +x_432 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_432, 0, x_399); +lean_ctor_set(x_432, 1, x_430); +lean_ctor_set(x_432, 2, x_429); +lean_ctor_set(x_432, 3, x_431); +x_433 = lean_array_push(x_414, x_432); +x_434 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_434, 0, x_416); +lean_ctor_set(x_434, 1, x_417); +lean_ctor_set(x_434, 2, x_433); +x_435 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55; +lean_inc(x_401); +lean_inc(x_402); +x_436 = l_Lean_addMacroScope(x_402, x_435, x_401); +x_437 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54; +x_438 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57; +lean_inc(x_399); +x_439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_439, 0, x_399); +lean_ctor_set(x_439, 1, x_437); +lean_ctor_set(x_439, 2, x_436); +lean_ctor_set(x_439, 3, x_438); +x_440 = lean_array_push(x_414, x_439); +x_441 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_441, 0, x_416); +lean_ctor_set(x_441, 1, x_417); +lean_ctor_set(x_441, 2, x_440); +x_442 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61; +lean_inc(x_401); +lean_inc(x_402); +x_443 = l_Lean_addMacroScope(x_402, x_442, x_401); +x_444 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60; +x_445 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63; +lean_inc(x_399); +x_446 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_446, 0, x_399); +lean_ctor_set(x_446, 1, x_444); +lean_ctor_set(x_446, 2, x_443); +lean_ctor_set(x_446, 3, x_445); +x_447 = lean_array_push(x_414, x_446); +x_448 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_448, 0, x_416); +lean_ctor_set(x_448, 1, x_417); +lean_ctor_set(x_448, 2, x_447); +x_449 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70; +lean_inc(x_401); +lean_inc(x_402); +x_450 = l_Lean_addMacroScope(x_402, x_449, x_401); +x_451 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66; +x_452 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72; +lean_inc(x_399); +x_453 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_453, 0, x_399); +lean_ctor_set(x_453, 1, x_451); +lean_ctor_set(x_453, 2, x_450); +lean_ctor_set(x_453, 3, x_452); +x_454 = lean_array_push(x_414, x_453); +x_455 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_455, 0, x_416); +lean_ctor_set(x_455, 1, x_417); +lean_ctor_set(x_455, 2, x_454); +x_456 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73; +x_457 = lean_array_push(x_456, x_418); +lean_inc(x_420); +x_458 = lean_array_push(x_457, x_420); +x_459 = lean_array_push(x_458, x_427); +lean_inc(x_420); +x_460 = lean_array_push(x_459, x_420); +x_461 = lean_array_push(x_460, x_434); +lean_inc(x_420); +x_462 = lean_array_push(x_461, x_420); +x_463 = lean_array_push(x_462, x_441); +lean_inc(x_420); +x_464 = lean_array_push(x_463, x_420); +x_465 = lean_array_push(x_464, x_448); +x_466 = lean_array_push(x_465, x_420); +x_467 = lean_array_push(x_466, x_455); +x_468 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10; +x_469 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_469, 0, x_416); +lean_ctor_set(x_469, 1, x_468); +lean_ctor_set(x_469, 2, x_467); +x_470 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74; +lean_inc(x_399); +x_471 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_471, 0, x_399); +lean_ctor_set(x_471, 1, x_470); +x_472 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33; +x_473 = lean_array_push(x_472, x_408); +x_474 = lean_array_push(x_473, x_469); +x_475 = lean_array_push(x_474, x_471); +x_476 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_476, 0, x_416); +lean_ctor_set(x_476, 1, x_468); +lean_ctor_set(x_476, 2, x_475); +x_477 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75; +x_478 = lean_array_push(x_477, x_406); +x_479 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23; +x_480 = lean_array_push(x_478, x_479); +x_481 = lean_array_push(x_480, x_479); +x_482 = lean_array_push(x_481, x_479); +x_483 = lean_array_push(x_482, x_476); +x_484 = lean_array_push(x_483, x_479); +x_485 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21; +x_486 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_486, 0, x_416); +lean_ctor_set(x_486, 1, x_485); +lean_ctor_set(x_486, 2, x_484); +x_487 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76; +lean_inc(x_399); +x_488 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_488, 0, x_399); +lean_ctor_set(x_488, 1, x_487); +x_489 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77; +x_490 = lean_array_push(x_489, x_488); +x_491 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_491, 0, x_416); +lean_ctor_set(x_491, 1, x_468); +lean_ctor_set(x_491, 2, x_490); +x_492 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78; +x_493 = lean_array_push(x_492, x_486); +lean_inc(x_491); +x_494 = lean_array_push(x_493, x_491); +x_495 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19; +x_496 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_496, 0, x_416); +lean_ctor_set(x_496, 1, x_495); +lean_ctor_set(x_496, 2, x_494); +x_497 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81; +lean_inc(x_399); +x_498 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_498, 0, x_399); +lean_ctor_set(x_498, 1, x_497); +x_499 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82; +lean_inc(x_399); +x_500 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_500, 0, x_399); +lean_ctor_set(x_500, 1, x_499); +x_501 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84; +lean_inc(x_399); +x_502 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_502, 0, x_399); +lean_ctor_set(x_502, 1, x_501); +x_503 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85; +lean_inc(x_399); +x_504 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_504, 0, x_399); +lean_ctor_set(x_504, 1, x_503); +x_505 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93; +lean_inc(x_401); +lean_inc(x_402); +x_506 = l_Lean_addMacroScope(x_402, x_505, x_401); +x_507 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89; +x_508 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95; +lean_inc(x_399); +x_509 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_509, 0, x_399); +lean_ctor_set(x_509, 1, x_507); +lean_ctor_set(x_509, 2, x_506); +lean_ctor_set(x_509, 3, x_508); +x_510 = lean_array_push(x_492, x_504); +lean_inc(x_510); +x_511 = lean_array_push(x_510, x_509); +x_512 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86; +x_513 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_513, 0, x_416); +lean_ctor_set(x_513, 1, x_512); +lean_ctor_set(x_513, 2, x_511); +x_514 = lean_array_push(x_492, x_513); +x_515 = lean_array_push(x_514, x_479); +x_516 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_516, 0, x_416); +lean_ctor_set(x_516, 1, x_495); +lean_ctor_set(x_516, 2, x_515); +x_517 = lean_array_push(x_489, x_516); +x_518 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_518, 0, x_416); +lean_ctor_set(x_518, 1, x_468); +lean_ctor_set(x_518, 2, x_517); +x_519 = lean_array_push(x_489, x_518); +x_520 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17; +x_521 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_521, 0, x_416); +lean_ctor_set(x_521, 1, x_520); +lean_ctor_set(x_521, 2, x_519); +x_522 = lean_array_push(x_489, x_521); +x_523 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15; +x_524 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_524, 0, x_416); +lean_ctor_set(x_524, 1, x_523); +lean_ctor_set(x_524, 2, x_522); +x_525 = lean_array_push(x_492, x_502); +lean_inc(x_525); +x_526 = lean_array_push(x_525, x_524); +x_527 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_527, 0, x_416); +lean_ctor_set(x_527, 1, x_495); +lean_ctor_set(x_527, 2, x_526); +x_528 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100; +lean_inc(x_401); +lean_inc(x_402); +x_529 = l_Lean_addMacroScope(x_402, x_528, x_401); +x_530 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98; +x_531 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102; +lean_inc(x_399); +x_532 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_532, 0, x_399); +lean_ctor_set(x_532, 1, x_530); +lean_ctor_set(x_532, 2, x_529); +lean_ctor_set(x_532, 3, x_531); +lean_inc(x_510); +x_533 = lean_array_push(x_510, x_532); +x_534 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_534, 0, x_416); +lean_ctor_set(x_534, 1, x_512); +lean_ctor_set(x_534, 2, x_533); +x_535 = lean_array_push(x_492, x_534); +x_536 = lean_array_push(x_535, x_479); +x_537 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_537, 0, x_416); +lean_ctor_set(x_537, 1, x_495); +lean_ctor_set(x_537, 2, x_536); +x_538 = lean_array_push(x_489, x_537); +x_539 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_539, 0, x_416); +lean_ctor_set(x_539, 1, x_468); +lean_ctor_set(x_539, 2, x_538); +x_540 = lean_array_push(x_489, x_539); +x_541 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_541, 0, x_416); +lean_ctor_set(x_541, 1, x_520); +lean_ctor_set(x_541, 2, x_540); +x_542 = lean_array_push(x_489, x_541); +x_543 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_543, 0, x_416); +lean_ctor_set(x_543, 1, x_523); +lean_ctor_set(x_543, 2, x_542); +lean_inc(x_525); +x_544 = lean_array_push(x_525, x_543); +x_545 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_545, 0, x_416); +lean_ctor_set(x_545, 1, x_495); +lean_ctor_set(x_545, 2, x_544); +x_546 = lean_array_push(x_492, x_527); +x_547 = lean_array_push(x_546, x_545); +x_548 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_548, 0, x_416); +lean_ctor_set(x_548, 1, x_468); +lean_ctor_set(x_548, 2, x_547); +x_549 = lean_array_push(x_492, x_500); +lean_inc(x_549); +x_550 = lean_array_push(x_549, x_548); +x_551 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83; +x_552 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_552, 0, x_416); +lean_ctor_set(x_552, 1, x_551); +lean_ctor_set(x_552, 2, x_550); +x_553 = lean_array_push(x_492, x_552); +x_554 = lean_array_push(x_553, x_479); +x_555 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_555, 0, x_416); +lean_ctor_set(x_555, 1, x_495); +lean_ctor_set(x_555, 2, x_554); +x_556 = lean_array_push(x_489, x_555); +x_557 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_557, 0, x_416); +lean_ctor_set(x_557, 1, x_468); +lean_ctor_set(x_557, 2, x_556); +x_558 = lean_array_push(x_489, x_557); +x_559 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_559, 0, x_416); +lean_ctor_set(x_559, 1, x_520); +lean_ctor_set(x_559, 2, x_558); +x_560 = lean_array_push(x_489, x_559); +x_561 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_561, 0, x_416); +lean_ctor_set(x_561, 1, x_523); +lean_ctor_set(x_561, 2, x_560); +x_562 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103; +lean_inc(x_399); +x_563 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_563, 0, x_399); +lean_ctor_set(x_563, 1, x_562); +x_564 = lean_array_push(x_472, x_404); +lean_inc(x_564); +x_565 = lean_array_push(x_564, x_561); +lean_inc(x_563); +x_566 = lean_array_push(x_565, x_563); +x_567 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12; +x_568 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_568, 0, x_416); +lean_ctor_set(x_568, 1, x_567); +lean_ctor_set(x_568, 2, x_566); +x_569 = lean_array_push(x_492, x_568); +x_570 = lean_array_push(x_569, x_479); +x_571 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_571, 0, x_416); +lean_ctor_set(x_571, 1, x_495); +lean_ctor_set(x_571, 2, x_570); +x_572 = lean_array_push(x_489, x_571); +x_573 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_573, 0, x_416); +lean_ctor_set(x_573, 1, x_468); +lean_ctor_set(x_573, 2, x_572); +x_574 = lean_array_push(x_489, x_573); +x_575 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_575, 0, x_416); +lean_ctor_set(x_575, 1, x_520); +lean_ctor_set(x_575, 2, x_574); +x_576 = lean_array_push(x_489, x_575); +x_577 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_577, 0, x_416); +lean_ctor_set(x_577, 1, x_523); +lean_ctor_set(x_577, 2, x_576); +x_578 = lean_array_push(x_492, x_498); +lean_inc(x_578); +x_579 = lean_array_push(x_578, x_577); +x_580 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80; +x_581 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_581, 0, x_416); +lean_ctor_set(x_581, 1, x_580); +lean_ctor_set(x_581, 2, x_579); +x_582 = lean_array_push(x_492, x_581); +x_583 = lean_array_push(x_582, x_479); +x_584 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_584, 0, x_416); +lean_ctor_set(x_584, 1, x_495); +lean_ctor_set(x_584, 2, x_583); +x_585 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110; +lean_inc(x_401); +lean_inc(x_402); +x_586 = l_Lean_addMacroScope(x_402, x_585, x_401); +x_587 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106; +x_588 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112; +lean_inc(x_399); +x_589 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_589, 0, x_399); +lean_ctor_set(x_589, 1, x_587); +lean_ctor_set(x_589, 2, x_586); +lean_ctor_set(x_589, 3, x_588); +lean_inc(x_510); +x_590 = lean_array_push(x_510, x_589); +x_591 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_591, 0, x_416); +lean_ctor_set(x_591, 1, x_512); +lean_ctor_set(x_591, 2, x_590); +x_592 = lean_array_push(x_492, x_591); +x_593 = lean_array_push(x_592, x_479); +x_594 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_594, 0, x_416); +lean_ctor_set(x_594, 1, x_495); +lean_ctor_set(x_594, 2, x_593); +x_595 = lean_array_push(x_489, x_594); +x_596 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_596, 0, x_416); +lean_ctor_set(x_596, 1, x_468); +lean_ctor_set(x_596, 2, x_595); +x_597 = lean_array_push(x_489, x_596); +x_598 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_598, 0, x_416); +lean_ctor_set(x_598, 1, x_520); +lean_ctor_set(x_598, 2, x_597); +x_599 = lean_array_push(x_489, x_598); +x_600 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_600, 0, x_416); +lean_ctor_set(x_600, 1, x_523); +lean_ctor_set(x_600, 2, x_599); +lean_inc(x_525); +x_601 = lean_array_push(x_525, x_600); +x_602 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_602, 0, x_416); +lean_ctor_set(x_602, 1, x_495); +lean_ctor_set(x_602, 2, x_601); +x_603 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116; +lean_inc(x_401); +lean_inc(x_402); +x_604 = l_Lean_addMacroScope(x_402, x_603, x_401); +x_605 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115; +x_606 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118; +lean_inc(x_399); +x_607 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_607, 0, x_399); +lean_ctor_set(x_607, 1, x_605); +lean_ctor_set(x_607, 2, x_604); +lean_ctor_set(x_607, 3, x_606); +lean_inc(x_510); +x_608 = lean_array_push(x_510, x_607); +x_609 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_609, 0, x_416); +lean_ctor_set(x_609, 1, x_512); +lean_ctor_set(x_609, 2, x_608); +x_610 = lean_array_push(x_492, x_609); +x_611 = lean_array_push(x_610, x_479); +x_612 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_612, 0, x_416); +lean_ctor_set(x_612, 1, x_495); +lean_ctor_set(x_612, 2, x_611); +x_613 = lean_array_push(x_489, x_612); +x_614 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_614, 0, x_416); +lean_ctor_set(x_614, 1, x_468); +lean_ctor_set(x_614, 2, x_613); +x_615 = lean_array_push(x_489, x_614); +x_616 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_616, 0, x_416); +lean_ctor_set(x_616, 1, x_520); +lean_ctor_set(x_616, 2, x_615); +x_617 = lean_array_push(x_489, x_616); +x_618 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_618, 0, x_416); +lean_ctor_set(x_618, 1, x_523); +lean_ctor_set(x_618, 2, x_617); +lean_inc(x_525); +x_619 = lean_array_push(x_525, x_618); +x_620 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_620, 0, x_416); +lean_ctor_set(x_620, 1, x_495); +lean_ctor_set(x_620, 2, x_619); +x_621 = lean_array_push(x_492, x_602); +x_622 = lean_array_push(x_621, x_620); +x_623 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_623, 0, x_416); +lean_ctor_set(x_623, 1, x_468); +lean_ctor_set(x_623, 2, x_622); +lean_inc(x_549); +x_624 = lean_array_push(x_549, x_623); +x_625 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_625, 0, x_416); +lean_ctor_set(x_625, 1, x_551); +lean_ctor_set(x_625, 2, x_624); +x_626 = lean_array_push(x_492, x_625); +x_627 = lean_array_push(x_626, x_479); +x_628 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_628, 0, x_416); +lean_ctor_set(x_628, 1, x_495); +lean_ctor_set(x_628, 2, x_627); +x_629 = lean_array_push(x_489, x_628); +x_630 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_630, 0, x_416); +lean_ctor_set(x_630, 1, x_468); +lean_ctor_set(x_630, 2, x_629); +x_631 = lean_array_push(x_489, x_630); +x_632 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_632, 0, x_416); +lean_ctor_set(x_632, 1, x_520); +lean_ctor_set(x_632, 2, x_631); +x_633 = lean_array_push(x_489, x_632); +x_634 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_634, 0, x_416); +lean_ctor_set(x_634, 1, x_523); +lean_ctor_set(x_634, 2, x_633); +lean_inc(x_564); +x_635 = lean_array_push(x_564, x_634); +lean_inc(x_563); +x_636 = lean_array_push(x_635, x_563); +x_637 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_637, 0, x_416); +lean_ctor_set(x_637, 1, x_567); +lean_ctor_set(x_637, 2, x_636); +x_638 = lean_array_push(x_492, x_637); +x_639 = lean_array_push(x_638, x_479); +x_640 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_640, 0, x_416); +lean_ctor_set(x_640, 1, x_495); +lean_ctor_set(x_640, 2, x_639); +x_641 = lean_array_push(x_489, x_640); +x_642 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_642, 0, x_416); +lean_ctor_set(x_642, 1, x_468); +lean_ctor_set(x_642, 2, x_641); +x_643 = lean_array_push(x_489, x_642); +x_644 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_644, 0, x_416); +lean_ctor_set(x_644, 1, x_520); +lean_ctor_set(x_644, 2, x_643); +x_645 = lean_array_push(x_489, x_644); +x_646 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_646, 0, x_416); +lean_ctor_set(x_646, 1, x_523); +lean_ctor_set(x_646, 2, x_645); +x_647 = lean_array_push(x_578, x_646); +x_648 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_648, 0, x_416); +lean_ctor_set(x_648, 1, x_580); +lean_ctor_set(x_648, 2, x_647); +x_649 = lean_array_push(x_492, x_648); +x_650 = lean_array_push(x_649, x_479); +x_651 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_651, 0, x_416); +lean_ctor_set(x_651, 1, x_495); +lean_ctor_set(x_651, 2, x_650); +x_652 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123; +lean_inc(x_401); +lean_inc(x_402); +x_653 = l_Lean_addMacroScope(x_402, x_652, x_401); +x_654 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121; +x_655 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125; +lean_inc(x_399); +x_656 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_656, 0, x_399); +lean_ctor_set(x_656, 1, x_654); +lean_ctor_set(x_656, 2, x_653); +lean_ctor_set(x_656, 3, x_655); +lean_inc(x_510); +x_657 = lean_array_push(x_510, x_656); +x_658 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_658, 0, x_416); +lean_ctor_set(x_658, 1, x_512); +lean_ctor_set(x_658, 2, x_657); +x_659 = lean_array_push(x_492, x_658); +x_660 = lean_array_push(x_659, x_479); +x_661 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_661, 0, x_416); +lean_ctor_set(x_661, 1, x_495); +lean_ctor_set(x_661, 2, x_660); +x_662 = lean_array_push(x_489, x_661); +x_663 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_663, 0, x_416); +lean_ctor_set(x_663, 1, x_468); +lean_ctor_set(x_663, 2, x_662); +x_664 = lean_array_push(x_489, x_663); +x_665 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_665, 0, x_416); +lean_ctor_set(x_665, 1, x_520); +lean_ctor_set(x_665, 2, x_664); +x_666 = lean_array_push(x_489, x_665); +x_667 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_667, 0, x_416); +lean_ctor_set(x_667, 1, x_523); +lean_ctor_set(x_667, 2, x_666); +lean_inc(x_525); +x_668 = lean_array_push(x_525, x_667); +x_669 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_669, 0, x_416); +lean_ctor_set(x_669, 1, x_495); +lean_ctor_set(x_669, 2, x_668); +x_670 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126; +lean_inc(x_399); +x_671 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_671, 0, x_399); +lean_ctor_set(x_671, 1, x_670); +x_672 = lean_array_push(x_489, x_671); +x_673 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127; +x_674 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_674, 0, x_416); +lean_ctor_set(x_674, 1, x_673); +lean_ctor_set(x_674, 2, x_672); +x_675 = lean_array_push(x_492, x_674); +x_676 = lean_array_push(x_675, x_479); +x_677 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_677, 0, x_416); +lean_ctor_set(x_677, 1, x_495); +lean_ctor_set(x_677, 2, x_676); +x_678 = lean_array_push(x_489, x_677); +x_679 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_679, 0, x_416); +lean_ctor_set(x_679, 1, x_468); +lean_ctor_set(x_679, 2, x_678); +x_680 = lean_array_push(x_489, x_679); +x_681 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_681, 0, x_416); +lean_ctor_set(x_681, 1, x_520); +lean_ctor_set(x_681, 2, x_680); +x_682 = lean_array_push(x_489, x_681); +x_683 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_683, 0, x_416); +lean_ctor_set(x_683, 1, x_523); +lean_ctor_set(x_683, 2, x_682); +lean_inc(x_525); +x_684 = lean_array_push(x_525, x_683); +x_685 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_685, 0, x_416); +lean_ctor_set(x_685, 1, x_495); +lean_ctor_set(x_685, 2, x_684); +x_686 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132; +lean_inc(x_401); +lean_inc(x_402); +x_687 = l_Lean_addMacroScope(x_402, x_686, x_401); +x_688 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130; +x_689 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134; +lean_inc(x_399); +x_690 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_690, 0, x_399); +lean_ctor_set(x_690, 1, x_688); +lean_ctor_set(x_690, 2, x_687); +lean_ctor_set(x_690, 3, x_689); +lean_inc(x_510); +x_691 = lean_array_push(x_510, x_690); +x_692 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_692, 0, x_416); +lean_ctor_set(x_692, 1, x_512); +lean_ctor_set(x_692, 2, x_691); +x_693 = lean_array_push(x_492, x_692); +lean_inc(x_491); +x_694 = lean_array_push(x_693, x_491); +x_695 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_695, 0, x_416); +lean_ctor_set(x_695, 1, x_495); +lean_ctor_set(x_695, 2, x_694); +x_696 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135; +lean_inc(x_399); +x_697 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_697, 0, x_399); +lean_ctor_set(x_697, 1, x_696); +x_698 = lean_array_push(x_489, x_697); +x_699 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136; +x_700 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_700, 0, x_416); +lean_ctor_set(x_700, 1, x_699); +lean_ctor_set(x_700, 2, x_698); +x_701 = lean_array_push(x_492, x_700); +x_702 = lean_array_push(x_701, x_479); +x_703 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_703, 0, x_416); +lean_ctor_set(x_703, 1, x_495); +lean_ctor_set(x_703, 2, x_702); +x_704 = lean_array_push(x_492, x_695); +lean_inc(x_703); +x_705 = lean_array_push(x_704, x_703); +x_706 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_706, 0, x_416); +lean_ctor_set(x_706, 1, x_468); +lean_ctor_set(x_706, 2, x_705); +x_707 = lean_array_push(x_489, x_706); +x_708 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_708, 0, x_416); +lean_ctor_set(x_708, 1, x_520); +lean_ctor_set(x_708, 2, x_707); +x_709 = lean_array_push(x_489, x_708); +x_710 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_710, 0, x_416); +lean_ctor_set(x_710, 1, x_523); +lean_ctor_set(x_710, 2, x_709); +lean_inc(x_525); +x_711 = lean_array_push(x_525, x_710); +x_712 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_712, 0, x_416); +lean_ctor_set(x_712, 1, x_495); +lean_ctor_set(x_712, 2, x_711); +x_713 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141; +lean_inc(x_401); +lean_inc(x_402); +x_714 = l_Lean_addMacroScope(x_402, x_713, x_401); +x_715 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139; +x_716 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143; +lean_inc(x_399); +x_717 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_717, 0, x_399); +lean_ctor_set(x_717, 1, x_715); +lean_ctor_set(x_717, 2, x_714); +lean_ctor_set(x_717, 3, x_716); +lean_inc(x_510); +x_718 = lean_array_push(x_510, x_717); +x_719 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_719, 0, x_416); +lean_ctor_set(x_719, 1, x_512); +lean_ctor_set(x_719, 2, x_718); +x_720 = lean_array_push(x_492, x_719); +lean_inc(x_491); +x_721 = lean_array_push(x_720, x_491); +x_722 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_722, 0, x_416); +lean_ctor_set(x_722, 1, x_495); +lean_ctor_set(x_722, 2, x_721); +x_723 = lean_array_push(x_492, x_722); +lean_inc(x_703); +x_724 = lean_array_push(x_723, x_703); +x_725 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_725, 0, x_416); +lean_ctor_set(x_725, 1, x_468); +lean_ctor_set(x_725, 2, x_724); +x_726 = lean_array_push(x_489, x_725); +x_727 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_727, 0, x_416); +lean_ctor_set(x_727, 1, x_520); +lean_ctor_set(x_727, 2, x_726); +x_728 = lean_array_push(x_489, x_727); +x_729 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_729, 0, x_416); +lean_ctor_set(x_729, 1, x_523); +lean_ctor_set(x_729, 2, x_728); +lean_inc(x_525); +x_730 = lean_array_push(x_525, x_729); +x_731 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_731, 0, x_416); +lean_ctor_set(x_731, 1, x_495); +lean_ctor_set(x_731, 2, x_730); +x_732 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148; +x_733 = l_Lean_addMacroScope(x_402, x_732, x_401); +x_734 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146; +x_735 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150; +x_736 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_736, 0, x_399); +lean_ctor_set(x_736, 1, x_734); +lean_ctor_set(x_736, 2, x_733); +lean_ctor_set(x_736, 3, x_735); +x_737 = lean_array_push(x_510, x_736); +x_738 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_738, 0, x_416); +lean_ctor_set(x_738, 1, x_512); +lean_ctor_set(x_738, 2, x_737); +x_739 = lean_array_push(x_492, x_738); +x_740 = lean_array_push(x_739, x_491); +x_741 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_741, 0, x_416); +lean_ctor_set(x_741, 1, x_495); +lean_ctor_set(x_741, 2, x_740); +x_742 = lean_array_push(x_492, x_741); +lean_inc(x_703); +x_743 = lean_array_push(x_742, x_703); +x_744 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_744, 0, x_416); +lean_ctor_set(x_744, 1, x_468); +lean_ctor_set(x_744, 2, x_743); +x_745 = lean_array_push(x_489, x_744); +x_746 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_746, 0, x_416); +lean_ctor_set(x_746, 1, x_520); +lean_ctor_set(x_746, 2, x_745); +x_747 = lean_array_push(x_489, x_746); +x_748 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_748, 0, x_416); +lean_ctor_set(x_748, 1, x_523); +lean_ctor_set(x_748, 2, x_747); +lean_inc(x_525); +x_749 = lean_array_push(x_525, x_748); +x_750 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_750, 0, x_416); +lean_ctor_set(x_750, 1, x_495); +lean_ctor_set(x_750, 2, x_749); +x_751 = lean_array_push(x_489, x_703); +x_752 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_752, 0, x_416); +lean_ctor_set(x_752, 1, x_468); +lean_ctor_set(x_752, 2, x_751); +x_753 = lean_array_push(x_489, x_752); +x_754 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_754, 0, x_416); +lean_ctor_set(x_754, 1, x_520); +lean_ctor_set(x_754, 2, x_753); +x_755 = lean_array_push(x_489, x_754); +x_756 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_756, 0, x_416); +lean_ctor_set(x_756, 1, x_523); +lean_ctor_set(x_756, 2, x_755); +x_757 = lean_array_push(x_525, x_756); +x_758 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_758, 0, x_416); +lean_ctor_set(x_758, 1, x_495); +lean_ctor_set(x_758, 2, x_757); +x_759 = lean_array_push(x_477, x_669); +x_760 = lean_array_push(x_759, x_685); +x_761 = lean_array_push(x_760, x_712); +x_762 = lean_array_push(x_761, x_731); +x_763 = lean_array_push(x_762, x_750); +x_764 = lean_array_push(x_763, x_758); +x_765 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_765, 0, x_416); +lean_ctor_set(x_765, 1, x_468); +lean_ctor_set(x_765, 2, x_764); +x_766 = lean_array_push(x_549, x_765); +x_767 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_767, 0, x_416); +lean_ctor_set(x_767, 1, x_551); +lean_ctor_set(x_767, 2, x_766); +x_768 = lean_array_push(x_492, x_767); +x_769 = lean_array_push(x_768, x_479); +x_770 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_770, 0, x_416); +lean_ctor_set(x_770, 1, x_495); +lean_ctor_set(x_770, 2, x_769); +x_771 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151; +x_772 = lean_array_push(x_771, x_496); +x_773 = lean_array_push(x_772, x_584); +x_774 = lean_array_push(x_773, x_651); +x_775 = lean_array_push(x_774, x_770); +x_776 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_776, 0, x_416); +lean_ctor_set(x_776, 1, x_468); +lean_ctor_set(x_776, 2, x_775); +x_777 = lean_array_push(x_489, x_776); +x_778 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_778, 0, x_416); +lean_ctor_set(x_778, 1, x_520); +lean_ctor_set(x_778, 2, x_777); +x_779 = lean_array_push(x_489, x_778); +x_780 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_780, 0, x_416); +lean_ctor_set(x_780, 1, x_523); +lean_ctor_set(x_780, 2, x_779); +x_781 = lean_array_push(x_564, x_780); +x_782 = lean_array_push(x_781, x_563); +x_783 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_783, 0, x_416); +lean_ctor_set(x_783, 1, x_567); +lean_ctor_set(x_783, 2, x_782); +x_784 = lean_array_push(x_489, x_783); +x_785 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_785, 0, x_416); +lean_ctor_set(x_785, 1, x_468); +lean_ctor_set(x_785, 2, x_784); +x_786 = lean_array_push(x_489, x_785); +x_787 = l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8; +x_788 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_788, 0, x_416); +lean_ctor_set(x_788, 1, x_787); +lean_ctor_set(x_788, 2, x_786); +x_789 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_789, 0, x_788); +lean_ctor_set(x_789, 1, x_400); +return x_789; +} +} +} +} +lean_object* initialize_Init_SizeOf(lean_object*); +lean_object* initialize_Init_WF(lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_WFTactics(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_SizeOf(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_WF(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_tacticDefault__decreasing__tactic___closed__1 = _init_l_tacticDefault__decreasing__tactic___closed__1(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__1); +l_tacticDefault__decreasing__tactic___closed__2 = _init_l_tacticDefault__decreasing__tactic___closed__2(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__2); +l_tacticDefault__decreasing__tactic___closed__3 = _init_l_tacticDefault__decreasing__tactic___closed__3(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__3); +l_tacticDefault__decreasing__tactic___closed__4 = _init_l_tacticDefault__decreasing__tactic___closed__4(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__4); +l_tacticDefault__decreasing__tactic___closed__5 = _init_l_tacticDefault__decreasing__tactic___closed__5(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic___closed__5); +l_tacticDefault__decreasing__tactic = _init_l_tacticDefault__decreasing__tactic(); +lean_mark_persistent(l_tacticDefault__decreasing__tactic); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__1); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__2); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__3); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__4); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__5); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__6); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__7); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__8); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__9); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__10); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__11); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__12); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__13); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__14); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__15); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__16); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__17); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__18); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__19); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__20); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__21); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__22); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__23); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__24); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__25); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__26); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__27); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__28); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__29); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__30); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__31); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__32); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__33); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__34); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__35); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__36); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__37); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__38); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__39); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__40); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__41); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__42); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__43); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__44); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__45); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__46); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__47); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__48); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__49); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__50); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__51); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__52); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__53); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__54); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__55); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__56); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__57); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__58); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__59); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__60); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__61); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__62); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__63); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__64); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__65); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__66); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__67); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__68); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__69); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__70); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__71); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__72); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__73); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__74); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__75); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__76); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__77); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__78); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__79); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__80); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__81); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__82); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__83); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__84); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__85); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__86); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__87); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__88); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__89); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__90); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__91); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__92); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__93); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__94); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__95); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__96); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__97); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__98); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__99); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__100); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__101); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__102); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__103); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__104); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__105); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__106); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__107); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__108); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__109); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__110); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__111); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__112); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__113); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__114); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__115); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__116); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__117); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__118); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__119); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__120); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__121); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__122); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__123); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__124); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__125); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__126); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__127); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__128); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__129); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__130); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__131); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__132); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__133); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__134); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__135); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__136); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__137); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__138); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__139); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__140); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__141); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__142); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__143); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__144); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__145); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__146); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__147); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__148); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__149); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__150); +l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151 = _init_l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151(); +lean_mark_persistent(l___aux__Init__WFTactics______macroRules__tacticDefault__decreasing__tactic__1___closed__151); +l_tacticDecreasing__tactic___closed__1 = _init_l_tacticDecreasing__tactic___closed__1(); +lean_mark_persistent(l_tacticDecreasing__tactic___closed__1); +l_tacticDecreasing__tactic___closed__2 = _init_l_tacticDecreasing__tactic___closed__2(); +lean_mark_persistent(l_tacticDecreasing__tactic___closed__2); +l_tacticDecreasing__tactic___closed__3 = _init_l_tacticDecreasing__tactic___closed__3(); +lean_mark_persistent(l_tacticDecreasing__tactic___closed__3); +l_tacticDecreasing__tactic___closed__4 = _init_l_tacticDecreasing__tactic___closed__4(); +lean_mark_persistent(l_tacticDecreasing__tactic___closed__4); +l_tacticDecreasing__tactic___closed__5 = _init_l_tacticDecreasing__tactic___closed__5(); +lean_mark_persistent(l_tacticDecreasing__tactic___closed__5); +l_tacticDecreasing__tactic = _init_l_tacticDecreasing__tactic(); +lean_mark_persistent(l_tacticDecreasing__tactic); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Compiler/IR/Basic.c b/stage0/stdlib/Lean/Compiler/IR/Basic.c index bbaa317734..04bb0080ce 100644 --- a/stage0/stdlib/Lean/Compiler/IR/Basic.c +++ b/stage0/stdlib/Lean/Compiler/IR/Basic.c @@ -2850,7 +2850,7 @@ x_13 = l_Lean_IR_reshapeAux___closed__2; x_14 = lean_string_append(x_12, x_13); x_15 = l_Lean_IR_reshapeAux___closed__3; x_16 = l_Lean_IR_reshapeAux___closed__4; -x_17 = lean_unsigned_to_nat(94u); +x_17 = lean_unsigned_to_nat(95u); x_18 = lean_unsigned_to_nat(4u); x_19 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_15, x_16, x_17, x_18, x_14); lean_dec(x_14); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Basic.c b/stage0/stdlib/Lean/Elab/Deriving/Basic.c index 8a432a631a..10c456eca5 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Basic.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Basic.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_initializing(lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_elabDeriving___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_derivingHandlersRef; size_t lean_usize_add(size_t, size_t); @@ -41,6 +42,7 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_Lean_Elab_elabDeriving___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange___closed__4; lean_object* lean_environment_find(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1; static lean_object* l_Lean_Elab_defaultHandler___closed__5; lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_registerBuiltinDerivingHandlerWithArgs___closed__1; @@ -54,7 +56,6 @@ lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*) lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_resolveGlobalConstNoOverload___at_Lean_Elab_elabDeriving___spec__7___closed__2; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getOptDerivingClasses(lean_object*); @@ -62,8 +63,8 @@ static lean_object* l_Lean_resolveGlobalConstNoOverload___at_Lean_Elab_elabDeriv static lean_object* l_Lean_Elab_elabDeriving___lambda__2___closed__1; static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange___closed__2; static lean_object* l_Lean_Elab_registerBuiltinDerivingHandlerWithArgs___lambda__2___closed__1; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2; uint8_t lean_usize_dec_lt(size_t, size_t); uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -95,7 +96,7 @@ static lean_object* l_Lean_Elab_elabDeriving___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Command_expandDeclId___spec__12(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_22_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_registerBuiltinDerivingHandler___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -158,11 +159,11 @@ lean_object* l_List_mapTRAux___at_Lean_Elab_Term_CollectPatternVars_collect_proc lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__18(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_defaultHandler(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3; static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_elabDeriving___spec__8___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_elabDeriving___spec__16(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__1(lean_object*, lean_object*); @@ -187,7 +188,6 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_elabDeriving lean_object* l_Lean_throwError___at___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabDeriving___closed__11; -lean_object* lean_io_initializing(lean_object*); static lean_object* l_Lean_Elab_getOptDerivingClasses___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_elabDeriving___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; @@ -394,7 +394,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_registerBuiltinDerivingHandlerWithArgs(lean _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_io_initializing(x_3); +x_4 = l_Lean_initializing(x_3); x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); x_6 = lean_unbox(x_5); @@ -4439,7 +4439,7 @@ return x_23; } } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4449,7 +4449,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2() { _start: { lean_object* x_1; @@ -4457,21 +4457,21 @@ x_1 = lean_mk_string("Deriving"); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -4604,13 +4604,13 @@ l_Lean_Elab_getOptDerivingClasses___rarg___closed__1 = _init_l_Lean_Elab_getOptD lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___rarg___closed__1); l_Lean_Elab_getOptDerivingClasses___rarg___closed__2 = _init_l_Lean_Elab_getOptDerivingClasses___rarg___closed__2(); lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___rarg___closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491____closed__3); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1491_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__2); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494____closed__3); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1494_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c index 2679e58a9b..379ebd58ff 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Fix.c @@ -1807,100 +1807,116 @@ return x_66; } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_dec(x_43); lean_dec(x_4); -lean_dec(x_1); x_67 = l_Lean_instInhabitedExpr; x_68 = lean_unsigned_to_nat(0u); x_69 = lean_array_get(x_67, x_5, x_68); lean_dec(x_5); -x_70 = l_Lean_mkApp(x_3, x_69); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -lean_inc(x_70); -x_71 = lean_infer_type(x_70, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_71) == 0) +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_3); +lean_inc(x_2); +x_70 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_replaceRecApps_loop(x_1, x_2, x_3, x_69, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_70) == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_71, 0); +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); -lean_inc(x_73); -lean_dec(x_71); +lean_dec(x_70); +x_73 = l_Lean_mkApp(x_3, x_71); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_74 = lean_whnf(x_72, x_9, x_10, x_11, x_12, x_73); +lean_inc(x_73); +x_74 = lean_infer_type(x_73, x_9, x_10, x_11, x_12, x_72); if (lean_obj_tag(x_74) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_object* x_75; lean_object* x_76; lean_object* x_77; x_75 = lean_ctor_get(x_74, 0); lean_inc(x_75); x_76 = lean_ctor_get(x_74, 1); lean_inc(x_76); lean_dec(x_74); -x_77 = l_Lean_Expr_bindingDomain_x21(x_75); -lean_dec(x_75); -x_78 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_mkDecreasingProof(x_77, x_2, x_7, x_8, x_9, x_10, x_11, x_12, x_76); -if (lean_obj_tag(x_78) == 0) +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_77 = lean_whnf(x_75, x_9, x_10, x_11, x_12, x_76); +if (lean_obj_tag(x_77) == 0) { -uint8_t x_79; -x_79 = !lean_is_exclusive(x_78); -if (x_79 == 0) -{ -lean_object* x_80; lean_object* x_81; -x_80 = lean_ctor_get(x_78, 0); -x_81 = l_Lean_mkApp(x_70, x_80); -lean_ctor_set(x_78, 0, x_81); -return x_78; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_78, 0); -x_83 = lean_ctor_get(x_78, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +x_80 = l_Lean_Expr_bindingDomain_x21(x_78); lean_dec(x_78); -x_84 = l_Lean_mkApp(x_70, x_82); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -return x_85; +x_81 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_mkDecreasingProof(x_80, x_2, x_7, x_8, x_9, x_10, x_11, x_12, x_79); +if (lean_obj_tag(x_81) == 0) +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_81); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; +x_83 = lean_ctor_get(x_81, 0); +x_84 = l_Lean_mkApp(x_73, x_83); +lean_ctor_set(x_81, 0, x_84); +return x_81; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_81, 0); +x_86 = lean_ctor_get(x_81, 1); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_81); +x_87 = l_Lean_mkApp(x_73, x_85); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } else { -uint8_t x_86; -lean_dec(x_70); -x_86 = !lean_is_exclusive(x_78); -if (x_86 == 0) +uint8_t x_89; +lean_dec(x_73); +x_89 = !lean_is_exclusive(x_81); +if (x_89 == 0) { -return x_78; +return x_81; } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_78, 0); -x_88 = lean_ctor_get(x_78, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_78); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_81, 0); +x_91 = lean_ctor_get(x_81, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_81); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } else { -uint8_t x_90; -lean_dec(x_70); +uint8_t x_93; +lean_dec(x_73); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -1908,54 +1924,85 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); -x_90 = !lean_is_exclusive(x_74); -if (x_90 == 0) +x_93 = !lean_is_exclusive(x_77); +if (x_93 == 0) +{ +return x_77; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_77, 0); +x_95 = lean_ctor_get(x_77, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_77); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ +uint8_t x_97; +lean_dec(x_73); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +x_97 = !lean_is_exclusive(x_74); +if (x_97 == 0) { return x_74; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_74, 0); -x_92 = lean_ctor_get(x_74, 1); -lean_inc(x_92); -lean_inc(x_91); +lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_98 = lean_ctor_get(x_74, 0); +x_99 = lean_ctor_get(x_74, 1); +lean_inc(x_99); +lean_inc(x_98); lean_dec(x_74); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +return x_100; } } } else { -uint8_t x_94; -lean_dec(x_70); +uint8_t x_101; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_3); lean_dec(x_2); -x_94 = !lean_is_exclusive(x_71); -if (x_94 == 0) +x_101 = !lean_is_exclusive(x_70); +if (x_101 == 0) { -return x_71; +return x_70; } else { -lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_95 = lean_ctor_get(x_71, 0); -x_96 = lean_ctor_get(x_71, 1); -lean_inc(x_96); -lean_inc(x_95); -lean_dec(x_71); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set(x_97, 1, x_96); -return x_97; +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_70, 0); +x_103 = lean_ctor_get(x_70, 1); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_70); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; } } } @@ -2394,100 +2441,116 @@ return x_66; } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_dec(x_43); lean_dec(x_4); -lean_dec(x_1); x_67 = l_Lean_instInhabitedExpr; x_68 = lean_unsigned_to_nat(0u); x_69 = lean_array_get(x_67, x_5, x_68); lean_dec(x_5); -x_70 = l_Lean_mkApp(x_3, x_69); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -lean_inc(x_70); -x_71 = lean_infer_type(x_70, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_71) == 0) +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_3); +lean_inc(x_2); +x_70 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_replaceRecApps_loop(x_1, x_2, x_3, x_69, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_70) == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_71, 0); +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); -lean_inc(x_73); -lean_dec(x_71); +lean_dec(x_70); +x_73 = l_Lean_mkApp(x_3, x_71); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_74 = lean_whnf(x_72, x_9, x_10, x_11, x_12, x_73); +lean_inc(x_73); +x_74 = lean_infer_type(x_73, x_9, x_10, x_11, x_12, x_72); if (lean_obj_tag(x_74) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_object* x_75; lean_object* x_76; lean_object* x_77; x_75 = lean_ctor_get(x_74, 0); lean_inc(x_75); x_76 = lean_ctor_get(x_74, 1); lean_inc(x_76); lean_dec(x_74); -x_77 = l_Lean_Expr_bindingDomain_x21(x_75); -lean_dec(x_75); -x_78 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_mkDecreasingProof(x_77, x_2, x_7, x_8, x_9, x_10, x_11, x_12, x_76); -if (lean_obj_tag(x_78) == 0) +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_77 = lean_whnf(x_75, x_9, x_10, x_11, x_12, x_76); +if (lean_obj_tag(x_77) == 0) { -uint8_t x_79; -x_79 = !lean_is_exclusive(x_78); -if (x_79 == 0) -{ -lean_object* x_80; lean_object* x_81; -x_80 = lean_ctor_get(x_78, 0); -x_81 = l_Lean_mkApp(x_70, x_80); -lean_ctor_set(x_78, 0, x_81); -return x_78; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_78, 0); -x_83 = lean_ctor_get(x_78, 1); -lean_inc(x_83); -lean_inc(x_82); +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +x_80 = l_Lean_Expr_bindingDomain_x21(x_78); lean_dec(x_78); -x_84 = l_Lean_mkApp(x_70, x_82); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -return x_85; +x_81 = l___private_Lean_Elab_PreDefinition_WF_Fix_0__Lean_Elab_WF_mkDecreasingProof(x_80, x_2, x_7, x_8, x_9, x_10, x_11, x_12, x_79); +if (lean_obj_tag(x_81) == 0) +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_81); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; +x_83 = lean_ctor_get(x_81, 0); +x_84 = l_Lean_mkApp(x_73, x_83); +lean_ctor_set(x_81, 0, x_84); +return x_81; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_81, 0); +x_86 = lean_ctor_get(x_81, 1); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_81); +x_87 = l_Lean_mkApp(x_73, x_85); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } else { -uint8_t x_86; -lean_dec(x_70); -x_86 = !lean_is_exclusive(x_78); -if (x_86 == 0) +uint8_t x_89; +lean_dec(x_73); +x_89 = !lean_is_exclusive(x_81); +if (x_89 == 0) { -return x_78; +return x_81; } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_78, 0); -x_88 = lean_ctor_get(x_78, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_78); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_81, 0); +x_91 = lean_ctor_get(x_81, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_81); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +return x_92; } } } else { -uint8_t x_90; -lean_dec(x_70); +uint8_t x_93; +lean_dec(x_73); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -2495,54 +2558,85 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_2); -x_90 = !lean_is_exclusive(x_74); -if (x_90 == 0) +x_93 = !lean_is_exclusive(x_77); +if (x_93 == 0) +{ +return x_77; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_77, 0); +x_95 = lean_ctor_get(x_77, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_77); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ +uint8_t x_97; +lean_dec(x_73); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +x_97 = !lean_is_exclusive(x_74); +if (x_97 == 0) { return x_74; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_74, 0); -x_92 = lean_ctor_get(x_74, 1); -lean_inc(x_92); -lean_inc(x_91); +lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_98 = lean_ctor_get(x_74, 0); +x_99 = lean_ctor_get(x_74, 1); +lean_inc(x_99); +lean_inc(x_98); lean_dec(x_74); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +return x_100; } } } else { -uint8_t x_94; -lean_dec(x_70); +uint8_t x_101; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_3); lean_dec(x_2); -x_94 = !lean_is_exclusive(x_71); -if (x_94 == 0) +x_101 = !lean_is_exclusive(x_70); +if (x_101 == 0) { -return x_71; +return x_70; } else { -lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_95 = lean_ctor_get(x_71, 0); -x_96 = lean_ctor_get(x_71, 1); -lean_inc(x_96); -lean_inc(x_95); -lean_dec(x_71); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set(x_97, 1, x_96); -return x_97; +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_70, 0); +x_103 = lean_ctor_get(x_70, 1); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_70); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; } } } diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c index 6f803a42c0..d82f43b951 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c @@ -30,6 +30,7 @@ static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinitio lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_isOnlyOneUnaryDef___closed__1; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___spec__2___closed__5; +static lean_object* l_Lean_Elab_wfRecursion___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_isOnlyOneUnaryDef___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_wfRecursion___closed__1; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___spec__2___closed__10; @@ -45,6 +46,7 @@ extern lean_object* l_Lean_levelZero; lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs_mkSum___spec__1___closed__7; static lean_object* l___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___lambda__1___closed__2; +static lean_object* l_Lean_Elab_wfRecursion___closed__3; lean_object* l_Lean_Elab_applyAttributesOf(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_addAndCompileUnsafe___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -62,7 +64,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs_mkSum___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_WF_registerEqnsInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1000_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1006_(lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs_mkSum___spec__1___closed__10; extern lean_object* l_Lean_Elab_instInhabitedPreDefinition; lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_addNonRecAux(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1881,6 +1883,23 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +static lean_object* _init_l_Lean_Elab_wfRecursion___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" :=\n"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_wfRecursion___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_wfRecursion___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_wfRecursion(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -1995,51 +2014,51 @@ lean_inc(x_8); x_43 = l_Lean_Elab_eraseRecAppSyntax(x_39, x_8, x_9, x_42); if (lean_obj_tag(x_43) == 0) { -lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); x_45 = lean_ctor_get(x_43, 1); lean_inc(x_45); lean_dec(x_43); x_46 = l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___spec__2___closed__6; -x_61 = lean_st_ref_get(x_9, x_45); -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_62, 3); -lean_inc(x_63); -lean_dec(x_62); -x_64 = lean_ctor_get_uint8(x_63, sizeof(void*)*1); -lean_dec(x_63); -if (x_64 == 0) +x_66 = lean_st_ref_get(x_9, x_45); +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_67, 3); +lean_inc(x_68); +lean_dec(x_67); +x_69 = lean_ctor_get_uint8(x_68, sizeof(void*)*1); +lean_dec(x_68); +if (x_69 == 0) { -lean_object* x_65; uint8_t x_66; -x_65 = lean_ctor_get(x_61, 1); -lean_inc(x_65); -lean_dec(x_61); -x_66 = 0; -x_47 = x_66; -x_48 = x_65; -goto block_60; +lean_object* x_70; uint8_t x_71; +x_70 = lean_ctor_get(x_66, 1); +lean_inc(x_70); +lean_dec(x_66); +x_71 = 0; +x_47 = x_71; +x_48 = x_70; +goto block_65; } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; -x_67 = lean_ctor_get(x_61, 1); -lean_inc(x_67); -lean_dec(x_61); -x_68 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_67); -x_69 = lean_ctor_get(x_68, 0); -lean_inc(x_69); -x_70 = lean_ctor_get(x_68, 1); -lean_inc(x_70); -lean_dec(x_68); -x_71 = lean_unbox(x_69); -lean_dec(x_69); -x_47 = x_71; -x_48 = x_70; -goto block_60; +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; +x_72 = lean_ctor_get(x_66, 1); +lean_inc(x_72); +lean_dec(x_66); +x_73 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_46, x_4, x_5, x_6, x_7, x_8, x_9, x_72); +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +lean_dec(x_73); +x_76 = lean_unbox(x_74); +lean_dec(x_74); +x_47 = x_76; +x_48 = x_75; +goto block_65; } -block_60: +block_65: { if (x_47 == 0) { @@ -2049,7 +2068,7 @@ return x_49; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; x_50 = lean_ctor_get(x_44, 3); lean_inc(x_50); x_51 = lean_alloc_ctor(4, 1, 0); @@ -2058,25 +2077,36 @@ x_52 = l_Lean_Elab_wfRecursion___closed__2; x_53 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___spec__2___closed__8; +x_54 = l_Lean_Elab_wfRecursion___closed__4; x_55 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); -x_56 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_46, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_48); -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -lean_dec(x_56); -x_59 = l_Lean_Elab_wfRecursion___lambda__1(x_12, x_13, x_1, x_44, x_57, x_4, x_5, x_6, x_7, x_8, x_9, x_58); -lean_dec(x_57); -return x_59; +x_56 = lean_ctor_get(x_44, 5); +lean_inc(x_56); +x_57 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_57, 0, x_56); +x_58 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs___spec__2___closed__8; +x_60 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +x_61 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_46, x_60, x_4, x_5, x_6, x_7, x_8, x_9, x_48); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_61, 1); +lean_inc(x_63); +lean_dec(x_61); +x_64 = l_Lean_Elab_wfRecursion___lambda__1(x_12, x_13, x_1, x_44, x_62, x_4, x_5, x_6, x_7, x_8, x_9, x_63); +lean_dec(x_62); +return x_64; } } } else { -uint8_t x_72; +uint8_t x_77; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2084,110 +2114,110 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_72 = !lean_is_exclusive(x_43); -if (x_72 == 0) +x_77 = !lean_is_exclusive(x_43); +if (x_77 == 0) { return x_43; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_43, 0); -x_74 = lean_ctor_get(x_43, 1); -lean_inc(x_74); -lean_inc(x_73); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_43, 0); +x_79 = lean_ctor_get(x_43, 1); +lean_inc(x_79); +lean_inc(x_78); lean_dec(x_43); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -return x_75; +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; } } } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; +lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; lean_dec(x_1); -x_76 = lean_ctor_get(x_38, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_38, 1); -lean_inc(x_77); +x_81 = lean_ctor_get(x_38, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_38, 1); +lean_inc(x_82); lean_dec(x_38); -x_78 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_77); +x_83 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_82); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_79 = !lean_is_exclusive(x_78); -if (x_79 == 0) +x_84 = !lean_is_exclusive(x_83); +if (x_84 == 0) { -lean_object* x_80; -x_80 = lean_ctor_get(x_78, 0); -lean_dec(x_80); -lean_ctor_set_tag(x_78, 1); -lean_ctor_set(x_78, 0, x_76); -return x_78; +lean_object* x_85; +x_85 = lean_ctor_get(x_83, 0); +lean_dec(x_85); +lean_ctor_set_tag(x_83, 1); +lean_ctor_set(x_83, 0, x_81); +return x_83; } else { -lean_object* x_81; lean_object* x_82; -x_81 = lean_ctor_get(x_78, 1); -lean_inc(x_81); -lean_dec(x_78); -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_76); -lean_ctor_set(x_82, 1, x_81); -return x_82; +lean_object* x_86; lean_object* x_87; +x_86 = lean_ctor_get(x_83, 1); +lean_inc(x_86); +lean_dec(x_83); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_81); +lean_ctor_set(x_87, 1, x_86); +return x_87; } } } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; +lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_dec(x_30); lean_dec(x_25); lean_dec(x_3); lean_dec(x_1); -x_83 = lean_ctor_get(x_36, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_36, 1); -lean_inc(x_84); +x_88 = lean_ctor_get(x_36, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_36, 1); +lean_inc(x_89); lean_dec(x_36); -x_85 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_84); +x_90 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_89); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_86 = !lean_is_exclusive(x_85); -if (x_86 == 0) +x_91 = !lean_is_exclusive(x_90); +if (x_91 == 0) { -lean_object* x_87; -x_87 = lean_ctor_get(x_85, 0); -lean_dec(x_87); -lean_ctor_set_tag(x_85, 1); -lean_ctor_set(x_85, 0, x_83); -return x_85; +lean_object* x_92; +x_92 = lean_ctor_get(x_90, 0); +lean_dec(x_92); +lean_ctor_set_tag(x_90, 1); +lean_ctor_set(x_90, 0, x_88); +return x_90; } else { -lean_object* x_88; lean_object* x_89; -x_88 = lean_ctor_get(x_85, 1); -lean_inc(x_88); -lean_dec(x_85); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_83); -lean_ctor_set(x_89, 1, x_88); -return x_89; +lean_object* x_93; lean_object* x_94; +x_93 = lean_ctor_get(x_90, 1); +lean_inc(x_93); +lean_dec(x_90); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_88); +lean_ctor_set(x_94, 1, x_93); +return x_94; } } } else { -uint8_t x_90; +uint8_t x_95; lean_dec(x_25); lean_dec(x_9); lean_dec(x_8); @@ -2197,146 +2227,146 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_90 = !lean_is_exclusive(x_29); -if (x_90 == 0) +x_95 = !lean_is_exclusive(x_29); +if (x_95 == 0) { return x_29; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_29, 0); -x_92 = lean_ctor_get(x_29, 1); -lean_inc(x_92); -lean_inc(x_91); +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_29, 0); +x_97 = lean_ctor_get(x_29, 1); +lean_inc(x_97); +lean_inc(x_96); lean_dec(x_29); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -return x_93; +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_98, 1, x_97); +return x_98; } } } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; +lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_94 = lean_ctor_get(x_24, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_24, 1); -lean_inc(x_95); -lean_dec(x_24); -x_96 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_95); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_97 = !lean_is_exclusive(x_96); -if (x_97 == 0) -{ -lean_object* x_98; -x_98 = lean_ctor_get(x_96, 0); -lean_dec(x_98); -lean_ctor_set_tag(x_96, 1); -lean_ctor_set(x_96, 0, x_94); -return x_96; -} -else -{ -lean_object* x_99; lean_object* x_100; -x_99 = lean_ctor_get(x_96, 1); +x_99 = lean_ctor_get(x_24, 0); lean_inc(x_99); -lean_dec(x_96); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_94); -lean_ctor_set(x_100, 1, x_99); -return x_100; -} -} -} -else -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_101 = lean_ctor_get(x_21, 0); -lean_inc(x_101); -x_102 = lean_ctor_get(x_21, 1); -lean_inc(x_102); -lean_dec(x_21); -x_103 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_102); +x_100 = lean_ctor_get(x_24, 1); +lean_inc(x_100); +lean_dec(x_24); +x_101 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_100); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_104 = !lean_is_exclusive(x_103); -if (x_104 == 0) +x_102 = !lean_is_exclusive(x_101); +if (x_102 == 0) { -lean_object* x_105; -x_105 = lean_ctor_get(x_103, 0); -lean_dec(x_105); -lean_ctor_set_tag(x_103, 1); -lean_ctor_set(x_103, 0, x_101); -return x_103; -} -else -{ -lean_object* x_106; lean_object* x_107; -x_106 = lean_ctor_get(x_103, 1); -lean_inc(x_106); +lean_object* x_103; +x_103 = lean_ctor_get(x_101, 0); lean_dec(x_103); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_101); -lean_ctor_set(x_107, 1, x_106); -return x_107; +lean_ctor_set_tag(x_101, 1); +lean_ctor_set(x_101, 0, x_99); +return x_101; +} +else +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_101, 1); +lean_inc(x_104); +lean_dec(x_101); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_99); +lean_ctor_set(x_105, 1, x_104); +return x_105; } } } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; +lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_108 = lean_ctor_get(x_19, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_19, 1); -lean_inc(x_109); -lean_dec(x_19); -x_110 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_109); +x_106 = lean_ctor_get(x_21, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_21, 1); +lean_inc(x_107); +lean_dec(x_21); +x_108 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_107); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +x_109 = !lean_is_exclusive(x_108); +if (x_109 == 0) { -lean_object* x_112; -x_112 = lean_ctor_get(x_110, 0); -lean_dec(x_112); -lean_ctor_set_tag(x_110, 1); -lean_ctor_set(x_110, 0, x_108); -return x_110; +lean_object* x_110; +x_110 = lean_ctor_get(x_108, 0); +lean_dec(x_110); +lean_ctor_set_tag(x_108, 1); +lean_ctor_set(x_108, 0, x_106); +return x_108; } else { -lean_object* x_113; lean_object* x_114; -x_113 = lean_ctor_get(x_110, 1); +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_108, 1); +lean_inc(x_111); +lean_dec(x_108); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_106); +lean_ctor_set(x_112, 1, x_111); +return x_112; +} +} +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_113 = lean_ctor_get(x_19, 0); lean_inc(x_113); -lean_dec(x_110); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_108); -lean_ctor_set(x_114, 1, x_113); -return x_114; +x_114 = lean_ctor_get(x_19, 1); +lean_inc(x_114); +lean_dec(x_19); +x_115 = l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_114); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_116 = !lean_is_exclusive(x_115); +if (x_116 == 0) +{ +lean_object* x_117; +x_117 = lean_ctor_get(x_115, 0); +lean_dec(x_117); +lean_ctor_set_tag(x_115, 1); +lean_ctor_set(x_115, 0, x_113); +return x_115; +} +else +{ +lean_object* x_118; lean_object* x_119; +x_118 = lean_ctor_get(x_115, 1); +lean_inc(x_118); +lean_dec(x_115); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_113); +lean_ctor_set(x_119, 1, x_118); +return x_119; } } } @@ -2388,7 +2418,7 @@ lean_dec(x_5); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1000_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1006_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -2498,7 +2528,11 @@ l_Lean_Elab_wfRecursion___closed__1 = _init_l_Lean_Elab_wfRecursion___closed__1( lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__1); l_Lean_Elab_wfRecursion___closed__2 = _init_l_Lean_Elab_wfRecursion___closed__2(); lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__2); -res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1000_(lean_io_mk_world()); +l_Lean_Elab_wfRecursion___closed__3 = _init_l_Lean_Elab_wfRecursion___closed__3(); +lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__3); +l_Lean_Elab_wfRecursion___closed__4 = _init_l_Lean_Elab_wfRecursion___closed__4(); +lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__4); +res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_1006_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index e3f44c37c9..0a1c176cd3 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -37,7 +37,7 @@ lean_object* lean_erase_macro_scopes(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withoutModifyingState___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___spec__4___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___spec__5___closed__14; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782_(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange___closed__6; @@ -223,7 +223,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange___closed lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltDArrow___boxed(lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -247,9 +247,9 @@ static lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__2___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___closed__1; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_ElimApp_State_alts___default___closed__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -16042,7 +16042,7 @@ x_16 = l_Lean_Elab_Tactic_elabCasesTargets___lambda__2(x_14, x_15, x_3, x_4, x_5 return x_16; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1() { _start: { lean_object* x_1; @@ -16050,21 +16050,21 @@ x_1 = lean_mk_string("cases"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___closed__2; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -16897,7 +16897,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed__2; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -17381,11 +17381,11 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Tactic_elabCasesTargets___boxed__const__1 = _init_l_Lean_Elab_Tactic_elabCasesTargets___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Tactic_elabCasesTargets___boxed__const__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779____closed__2); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5779_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__1); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782____closed__2); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_5782_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c index e71ef7e47d..30bd12686a 100644 --- a/stage0/stdlib/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -1904,127 +1904,182 @@ lean_inc(x_2); x_14 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_infer(x_2, x_3, x_4, x_5, x_6, x_13); if (lean_obj_tag(x_14) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_52; lean_object* x_53; uint8_t x_54; uint8_t x_55; x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); -x_17 = l_Lean_Meta_mkEq___closed__2; -x_18 = lean_unsigned_to_nat(3u); -x_19 = l_Lean_Expr_isAppOfArity(x_12, x_17, x_18); -if (x_19 == 0) +x_52 = l_Lean_Meta_mkEq___closed__2; +x_53 = lean_unsigned_to_nat(3u); +x_54 = l_Lean_Expr_isAppOfArity(x_15, x_52, x_53); +x_55 = l_Lean_Expr_isAppOfArity(x_12, x_52, x_53); +if (x_54 == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +if (x_55 == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_dec(x_15); lean_dec(x_2); -x_20 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); -x_21 = l_Lean_Meta_mkEqSymm___closed__5; -x_22 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_20); -x_23 = l_Lean_Meta_mkEqTrans___closed__2; -x_24 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_23, x_22, x_3, x_4, x_5, x_6, x_16); -return x_24; +x_56 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); +x_57 = l_Lean_Meta_mkEqSymm___closed__5; +x_58 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = l_Lean_Meta_mkEqTrans___closed__2; +x_60 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_59, x_58, x_3, x_4, x_5, x_6, x_16); +return x_60; } else { -uint8_t x_25; -x_25 = l_Lean_Expr_isAppOfArity(x_15, x_17, x_18); -if (x_25 == 0) +lean_object* x_61; +x_61 = lean_box(0); +x_17 = x_61; +goto block_51; +} +} +else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +if (x_55 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_15); +lean_dec(x_2); +x_62 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); +x_63 = l_Lean_Meta_mkEqSymm___closed__5; +x_64 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_62); +x_65 = l_Lean_Meta_mkEqTrans___closed__2; +x_66 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_65, x_64, x_3, x_4, x_5, x_6, x_16); +return x_66; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_67 = l_Lean_Expr_appFn_x21(x_15); +x_68 = l_Lean_Expr_appFn_x21(x_67); +x_69 = l_Lean_Expr_appArg_x21(x_68); +lean_dec(x_68); +x_70 = l_Lean_Expr_appArg_x21(x_67); +lean_dec(x_67); +x_71 = l_Lean_Expr_appArg_x21(x_15); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_69); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_73); +x_17 = x_74; +goto block_51; +} +} +block_51: +{ +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_dec(x_12); lean_dec(x_1); -x_26 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); -x_27 = l_Lean_Meta_mkEqSymm___closed__5; -x_28 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_26); -x_29 = l_Lean_Meta_mkEqTrans___closed__2; -x_30 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_29, x_28, x_3, x_4, x_5, x_6, x_16); -return x_30; +x_18 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); +x_19 = l_Lean_Meta_mkEqSymm___closed__5; +x_20 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +x_21 = l_Lean_Meta_mkEqTrans___closed__2; +x_22 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_21, x_20, x_3, x_4, x_5, x_6, x_16); +return x_22; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_31 = l_Lean_Expr_appFn_x21(x_12); -x_32 = l_Lean_Expr_appFn_x21(x_31); -x_33 = l_Lean_Expr_appArg_x21(x_32); -lean_dec(x_32); -x_34 = l_Lean_Expr_appArg_x21(x_31); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_15); +x_23 = lean_ctor_get(x_17, 0); +lean_inc(x_23); +lean_dec(x_17); +x_24 = l_Lean_Expr_appFn_x21(x_12); +x_25 = l_Lean_Expr_appFn_x21(x_24); +x_26 = l_Lean_Expr_appArg_x21(x_25); +lean_dec(x_25); +x_27 = l_Lean_Expr_appArg_x21(x_24); +lean_dec(x_24); +x_28 = l_Lean_Expr_appArg_x21(x_12); +lean_dec(x_12); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_dec(x_23); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +lean_inc(x_26); +x_31 = l_Lean_Meta_getLevel(x_26, x_3, x_4, x_5, x_6, x_16); +if (lean_obj_tag(x_31) == 0) +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_33 = lean_ctor_get(x_31, 0); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +x_36 = l_Lean_Meta_mkEqTrans___closed__2; +x_37 = l_Lean_mkConst(x_36, x_35); +x_38 = l_Lean_mkApp6(x_37, x_26, x_27, x_28, x_30, x_1, x_2); +lean_ctor_set(x_31, 0, x_38); +return x_31; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_39 = lean_ctor_get(x_31, 0); +x_40 = lean_ctor_get(x_31, 1); +lean_inc(x_40); +lean_inc(x_39); lean_dec(x_31); -x_35 = l_Lean_Expr_appArg_x21(x_12); -lean_dec(x_12); -x_36 = l_Lean_Expr_appArg_x21(x_15); -lean_dec(x_15); -lean_inc(x_33); -x_37 = l_Lean_Meta_getLevel(x_33, x_3, x_4, x_5, x_6, x_16); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_box(0); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_Meta_mkEqTrans___closed__2; -x_43 = l_Lean_mkConst(x_42, x_41); -x_44 = l_Lean_mkApp6(x_43, x_33, x_34, x_35, x_36, x_1, x_2); -lean_ctor_set(x_37, 0, x_44); -return x_37; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_45 = lean_ctor_get(x_37, 0); -x_46 = lean_ctor_get(x_37, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_37); -x_47 = lean_box(0); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Meta_mkEqTrans___closed__2; -x_50 = l_Lean_mkConst(x_49, x_48); -x_51 = l_Lean_mkApp6(x_50, x_33, x_34, x_35, x_36, x_1, x_2); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_46); -return x_52; +x_41 = lean_box(0); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Lean_Meta_mkEqTrans___closed__2; +x_44 = l_Lean_mkConst(x_43, x_42); +x_45 = l_Lean_mkApp6(x_44, x_26, x_27, x_28, x_30, x_1, x_2); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_40); +return x_46; } } else { -uint8_t x_53; -lean_dec(x_36); -lean_dec(x_35); -lean_dec(x_34); -lean_dec(x_33); +uint8_t x_47; +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); lean_dec(x_2); lean_dec(x_1); -x_53 = !lean_is_exclusive(x_37); -if (x_53 == 0) +x_47 = !lean_is_exclusive(x_31); +if (x_47 == 0) { -return x_37; +return x_31; } else { -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_37, 0); -x_55 = lean_ctor_get(x_37, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_37); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_31, 0); +x_49 = lean_ctor_get(x_31, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_31); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } @@ -2032,7 +2087,7 @@ return x_56; } else { -uint8_t x_57; +uint8_t x_75; lean_dec(x_12); lean_dec(x_6); lean_dec(x_5); @@ -2040,81 +2095,81 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_57 = !lean_is_exclusive(x_14); -if (x_57 == 0) +x_75 = !lean_is_exclusive(x_14); +if (x_75 == 0) { return x_14; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_14, 0); -x_59 = lean_ctor_get(x_14, 1); -lean_inc(x_59); -lean_inc(x_58); +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_14, 0); +x_77 = lean_ctor_get(x_14, 1); +lean_inc(x_77); +lean_inc(x_76); lean_dec(x_14); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -return x_60; +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; } } } else { -uint8_t x_61; +uint8_t x_79; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_61 = !lean_is_exclusive(x_11); -if (x_61 == 0) +x_79 = !lean_is_exclusive(x_11); +if (x_79 == 0) { return x_11; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_11, 0); -x_63 = lean_ctor_get(x_11, 1); -lean_inc(x_63); -lean_inc(x_62); +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_11, 0); +x_81 = lean_ctor_get(x_11, 1); +lean_inc(x_81); +lean_inc(x_80); lean_dec(x_11); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; } } } else { -lean_object* x_65; +lean_object* x_83; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_1); -lean_ctor_set(x_65, 1, x_7); -return x_65; +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_1); +lean_ctor_set(x_83, 1, x_7); +return x_83; } } else { -lean_object* x_66; +lean_object* x_84; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_2); -lean_ctor_set(x_66, 1, x_7); -return x_66; +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_2); +lean_ctor_set(x_84, 1, x_7); +return x_84; } } } @@ -2365,211 +2420,182 @@ lean_inc(x_2); x_14 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_infer(x_2, x_3, x_4, x_5, x_6, x_13); if (lean_obj_tag(x_14) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_56; lean_object* x_57; uint8_t x_58; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; lean_object* x_21; x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); -x_56 = l_Lean_Meta_mkHEq___closed__2; -x_57 = lean_unsigned_to_nat(4u); -x_58 = l_Lean_Expr_isAppOfArity(x_12, x_56, x_57); -if (x_58 == 0) +x_17 = l_Lean_Meta_mkHEq___closed__2; +x_18 = lean_unsigned_to_nat(4u); +x_19 = l_Lean_Expr_isAppOfArity(x_15, x_17, x_18); +x_20 = l_Lean_Expr_isAppOfArity(x_12, x_17, x_18); +if (x_19 == 0) { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -lean_dec(x_15); -lean_dec(x_2); -x_59 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); -x_60 = l_Lean_Meta_mkHEqSymm___closed__4; -x_61 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = l_Lean_Meta_mkHEqTrans___closed__1; -x_63 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_62, x_61, x_3, x_4, x_5, x_6, x_16); -return x_63; +lean_object* x_65; +x_65 = lean_box(0); +x_21 = x_65; +goto block_64; } else { -uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_64 = l_Lean_Expr_isAppOfArity(x_15, x_56, x_57); -x_65 = l_Lean_Expr_appFn_x21(x_12); -x_66 = l_Lean_Expr_appFn_x21(x_65); +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_66 = l_Lean_Expr_appFn_x21(x_15); x_67 = l_Lean_Expr_appFn_x21(x_66); -x_68 = l_Lean_Expr_appArg_x21(x_67); +x_68 = l_Lean_Expr_appFn_x21(x_67); +x_69 = l_Lean_Expr_appArg_x21(x_68); +lean_dec(x_68); +x_70 = l_Lean_Expr_appArg_x21(x_67); lean_dec(x_67); -x_69 = l_Lean_Expr_appArg_x21(x_66); +x_71 = l_Lean_Expr_appArg_x21(x_66); lean_dec(x_66); -x_70 = l_Lean_Expr_appArg_x21(x_65); -lean_dec(x_65); -x_71 = l_Lean_Expr_appArg_x21(x_12); -lean_dec(x_12); -x_72 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_72, 0, x_70); -lean_ctor_set(x_72, 1, x_71); +x_72 = l_Lean_Expr_appArg_x21(x_15); x_73 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_73, 0, x_69); +lean_ctor_set(x_73, 0, x_71); lean_ctor_set(x_73, 1, x_72); x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_68); +lean_ctor_set(x_74, 0, x_70); lean_ctor_set(x_74, 1, x_73); -if (x_64 == 0) -{ -lean_object* x_75; -x_75 = lean_box(0); -x_17 = x_75; -x_18 = x_74; -goto block_55; +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_69); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +x_21 = x_76; +goto block_64; } -else +block_64: { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_76 = l_Lean_Expr_appFn_x21(x_15); -x_77 = l_Lean_Expr_appFn_x21(x_76); -x_78 = l_Lean_Expr_appFn_x21(x_77); -x_79 = l_Lean_Expr_appArg_x21(x_78); -lean_dec(x_78); -x_80 = l_Lean_Expr_appArg_x21(x_77); -lean_dec(x_77); -x_81 = l_Lean_Expr_appArg_x21(x_76); -lean_dec(x_76); -x_82 = l_Lean_Expr_appArg_x21(x_15); -x_83 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -x_84 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_84, 0, x_80); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_79); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_86, 0, x_85); -x_17 = x_86; -x_18 = x_74; -goto block_55; -} -} -block_55: +if (x_20 == 0) { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_20); -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_1); -x_21 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); -x_22 = l_Lean_Meta_mkHEqSymm___closed__4; -x_23 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -x_24 = l_Lean_Meta_mkHEqTrans___closed__1; -x_25 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_24, x_23, x_3, x_4, x_5, x_6, x_16); -return x_25; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_21); lean_dec(x_15); -x_26 = lean_ctor_get(x_17, 0); -lean_inc(x_26); -lean_dec(x_17); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -lean_dec(x_27); -x_29 = lean_ctor_get(x_18, 0); -lean_inc(x_29); -lean_dec(x_18); -x_30 = lean_ctor_get(x_19, 0); -lean_inc(x_30); -lean_dec(x_19); -x_31 = lean_ctor_get(x_20, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_20, 1); -lean_inc(x_32); -lean_dec(x_20); -x_33 = lean_ctor_get(x_28, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_28, 1); -lean_inc(x_34); -lean_dec(x_28); -lean_inc(x_29); -x_35 = l_Lean_Meta_getLevel(x_29, x_3, x_4, x_5, x_6, x_16); -if (lean_obj_tag(x_35) == 0) -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_box(0); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -x_40 = l_Lean_Meta_mkHEqTrans___closed__1; -x_41 = l_Lean_mkConst(x_40, x_39); -x_42 = l_Lean_mkApp8(x_41, x_29, x_31, x_33, x_30, x_32, x_34, x_1, x_2); -lean_ctor_set(x_35, 0, x_42); -return x_35; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_43 = lean_ctor_get(x_35, 0); -x_44 = lean_ctor_get(x_35, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_35); -x_45 = lean_box(0); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_43); -lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_Meta_mkHEqTrans___closed__1; -x_48 = l_Lean_mkConst(x_47, x_46); -x_49 = l_Lean_mkApp8(x_48, x_29, x_31, x_33, x_30, x_32, x_34, x_1, x_2); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_44); -return x_50; -} -} -else -{ -uint8_t x_51; -lean_dec(x_34); -lean_dec(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); lean_dec(x_2); -lean_dec(x_1); -x_51 = !lean_is_exclusive(x_35); -if (x_51 == 0) -{ -return x_35; +x_22 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); +x_23 = l_Lean_Meta_mkHEqSymm___closed__4; +x_24 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l_Lean_Meta_mkHEqTrans___closed__1; +x_26 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_25, x_24, x_3, x_4, x_5, x_6, x_16); +return x_26; } else { -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_35, 0); -x_53 = lean_ctor_get(x_35, 1); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_12); +lean_dec(x_1); +x_27 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); +x_28 = l_Lean_Meta_mkHEqSymm___closed__4; +x_29 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = l_Lean_Meta_mkHEqTrans___closed__1; +x_31 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_30, x_29, x_3, x_4, x_5, x_6, x_16); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_15); +x_32 = lean_ctor_get(x_21, 0); +lean_inc(x_32); +lean_dec(x_21); +x_33 = l_Lean_Expr_appFn_x21(x_12); +x_34 = l_Lean_Expr_appFn_x21(x_33); +x_35 = l_Lean_Expr_appFn_x21(x_34); +x_36 = l_Lean_Expr_appArg_x21(x_35); +lean_dec(x_35); +x_37 = l_Lean_Expr_appArg_x21(x_34); +lean_dec(x_34); +x_38 = l_Lean_Expr_appArg_x21(x_33); +lean_dec(x_33); +x_39 = l_Lean_Expr_appArg_x21(x_12); +lean_dec(x_12); +x_40 = lean_ctor_get(x_32, 1); +lean_inc(x_40); +lean_dec(x_32); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); +lean_dec(x_41); +lean_inc(x_36); +x_44 = l_Lean_Meta_getLevel(x_36, x_3, x_4, x_5, x_6, x_16); +if (lean_obj_tag(x_44) == 0) +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_box(0); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = l_Lean_Meta_mkHEqTrans___closed__1; +x_50 = l_Lean_mkConst(x_49, x_48); +x_51 = l_Lean_mkApp8(x_50, x_36, x_38, x_42, x_37, x_39, x_43, x_1, x_2); +lean_ctor_set(x_44, 0, x_51); +return x_44; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_52 = lean_ctor_get(x_44, 0); +x_53 = lean_ctor_get(x_44, 1); lean_inc(x_53); lean_inc(x_52); -lean_dec(x_35); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; +lean_dec(x_44); +x_54 = lean_box(0); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_52); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_Meta_mkHEqTrans___closed__1; +x_57 = l_Lean_mkConst(x_56, x_55); +x_58 = l_Lean_mkApp8(x_57, x_36, x_38, x_42, x_37, x_39, x_43, x_1, x_2); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_53); +return x_59; +} +} +else +{ +uint8_t x_60; +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_2); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_44); +if (x_60 == 0) +{ +return x_44; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_44, 0); +x_62 = lean_ctor_get(x_44, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_44); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; +} } } } @@ -2577,7 +2603,7 @@ return x_54; } else { -uint8_t x_87; +uint8_t x_77; lean_dec(x_12); lean_dec(x_6); lean_dec(x_5); @@ -2585,81 +2611,81 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_87 = !lean_is_exclusive(x_14); -if (x_87 == 0) +x_77 = !lean_is_exclusive(x_14); +if (x_77 == 0) { return x_14; } else { -lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_88 = lean_ctor_get(x_14, 0); -x_89 = lean_ctor_get(x_14, 1); -lean_inc(x_89); -lean_inc(x_88); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_14, 0); +x_79 = lean_ctor_get(x_14, 1); +lean_inc(x_79); +lean_inc(x_78); lean_dec(x_14); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_88); -lean_ctor_set(x_90, 1, x_89); -return x_90; +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; } } } else { -uint8_t x_91; +uint8_t x_81; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_91 = !lean_is_exclusive(x_11); -if (x_91 == 0) +x_81 = !lean_is_exclusive(x_11); +if (x_81 == 0) { return x_11; } else { -lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_92 = lean_ctor_get(x_11, 0); -x_93 = lean_ctor_get(x_11, 1); -lean_inc(x_93); -lean_inc(x_92); +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_11, 0); +x_83 = lean_ctor_get(x_11, 1); +lean_inc(x_83); +lean_inc(x_82); lean_dec(x_11); -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_93); -return x_94; +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; } } } else { -lean_object* x_95; +lean_object* x_85; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_1); -lean_ctor_set(x_95, 1, x_7); -return x_95; +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_1); +lean_ctor_set(x_85, 1, x_7); +return x_85; } } else { -lean_object* x_96; +lean_object* x_86; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_2); -lean_ctor_set(x_96, 1, x_7); -return x_96; +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_2); +lean_ctor_set(x_86, 1, x_7); +return x_86; } } } @@ -3070,339 +3096,252 @@ lean_inc(x_1); x_13 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_infer(x_1, x_3, x_4, x_5, x_6, x_12); if (lean_obj_tag(x_13) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_59; lean_object* x_68; lean_object* x_93; lean_object* x_94; uint8_t x_95; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_23; lean_object* x_68; lean_object* x_69; uint8_t x_70; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_93 = l_Lean_Meta_mkEq___closed__2; -x_94 = lean_unsigned_to_nat(3u); -x_95 = l_Lean_Expr_isAppOfArity(x_11, x_93, x_94); +x_68 = l_Lean_Meta_mkEq___closed__2; +x_69 = lean_unsigned_to_nat(3u); +x_70 = l_Lean_Expr_isAppOfArity(x_11, x_68, x_69); +if (x_70 == 0) +{ +lean_object* x_71; +x_71 = lean_box(0); +x_23 = x_71; +goto block_67; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_72 = l_Lean_Expr_appFn_x21(x_11); +x_73 = l_Lean_Expr_appFn_x21(x_72); +x_74 = l_Lean_Expr_appArg_x21(x_73); +lean_dec(x_73); +x_75 = l_Lean_Expr_appArg_x21(x_72); +lean_dec(x_72); +x_76 = l_Lean_Expr_appArg_x21(x_11); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_74); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +x_23 = x_79; +goto block_67; +} +block_22: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_16); +x_17 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_14); +x_18 = l_Lean_Meta_mkCongrArg___closed__5; +x_19 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = l_Lean_Meta_mkCongrArg___closed__2; +x_21 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_20, x_19, x_3, x_4, x_5, x_6, x_15); +return x_21; +} +block_67: +{ if (lean_obj_tag(x_14) == 7) { -lean_object* x_96; lean_object* x_97; uint8_t x_98; -x_96 = lean_ctor_get(x_14, 1); -lean_inc(x_96); -x_97 = lean_ctor_get(x_14, 2); -lean_inc(x_97); -x_98 = l_Lean_Expr_hasLooseBVars(x_97); -if (x_98 == 0) -{ -lean_object* x_99; lean_object* x_100; -x_99 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_99, 0, x_96); -lean_ctor_set(x_99, 1, x_97); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -if (x_95 == 0) -{ -x_59 = x_100; -goto block_67; -} -else -{ -x_68 = x_100; -goto block_92; -} -} -else -{ -lean_object* x_101; -lean_dec(x_97); -lean_dec(x_96); -x_101 = lean_box(0); -if (x_95 == 0) -{ -x_59 = x_101; -goto block_67; -} -else -{ -x_68 = x_101; -goto block_92; -} -} -} -else -{ -lean_object* x_102; -x_102 = lean_box(0); -if (x_95 == 0) -{ -x_59 = x_102; -goto block_67; -} -else -{ -x_68 = x_102; -goto block_92; -} -} -block_58: -{ -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_17); -lean_dec(x_1); -x_18 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_11); -x_19 = l_Lean_Meta_mkEqSymm___closed__5; -x_20 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_18); -x_21 = l_Lean_Meta_mkCongrArg___closed__2; -x_22 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_21, x_20, x_3, x_4, x_5, x_6, x_15); -return x_22; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_11); -x_23 = lean_ctor_get(x_16, 0); -lean_inc(x_23); -lean_dec(x_16); -x_24 = lean_ctor_get(x_23, 1); +lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_24 = lean_ctor_get(x_14, 1); lean_inc(x_24); -lean_dec(x_23); -x_25 = lean_ctor_get(x_17, 0); +x_25 = lean_ctor_get(x_14, 2); lean_inc(x_25); -x_26 = lean_ctor_get(x_17, 1); -lean_inc(x_26); -lean_dec(x_17); -x_27 = lean_ctor_get(x_24, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_24, 1); -lean_inc(x_28); +x_26 = l_Lean_Expr_hasLooseBVars(x_25); +if (x_26 == 0) +{ +lean_dec(x_14); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_25); lean_dec(x_24); +lean_dec(x_1); +x_27 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_11); +x_28 = l_Lean_Meta_mkEqSymm___closed__5; +x_29 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = l_Lean_Meta_mkCongrArg___closed__2; +x_31 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_30, x_29, x_3, x_4, x_5, x_6, x_15); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_11); +x_32 = lean_ctor_get(x_23, 0); +lean_inc(x_32); +lean_dec(x_23); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec(x_33); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); +lean_inc(x_24); +x_36 = l_Lean_Meta_getLevel(x_24, x_3, x_4, x_5, x_6, x_15); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec(x_36); lean_inc(x_25); -x_29 = l_Lean_Meta_getLevel(x_25, x_3, x_4, x_5, x_6, x_15); -if (lean_obj_tag(x_29) == 0) +x_39 = l_Lean_Meta_getLevel(x_25, x_3, x_4, x_5, x_6, x_38); +if (lean_obj_tag(x_39) == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -lean_inc(x_26); -x_32 = l_Lean_Meta_getLevel(x_26, x_3, x_4, x_5, x_6, x_31); -if (lean_obj_tag(x_32) == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -uint8_t x_33; -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_34 = lean_ctor_get(x_32, 0); -x_35 = lean_box(0); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_35); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_30); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_Meta_mkCongrArg___closed__2; -x_39 = l_Lean_mkConst(x_38, x_37); -x_40 = l_Lean_mkApp6(x_39, x_25, x_26, x_27, x_28, x_1, x_2); -lean_ctor_set(x_32, 0, x_40); -return x_32; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_41 = lean_ctor_get(x_32, 0); -x_42 = lean_ctor_get(x_32, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_32); -x_43 = lean_box(0); +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_box(0); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 0, x_37); lean_ctor_set(x_44, 1, x_43); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_30); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Meta_mkCongrArg___closed__2; -x_47 = l_Lean_mkConst(x_46, x_45); -x_48 = l_Lean_mkApp6(x_47, x_25, x_26, x_27, x_28, x_1, x_2); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_42); -return x_49; +x_45 = l_Lean_Meta_mkCongrArg___closed__2; +x_46 = l_Lean_mkConst(x_45, x_44); +x_47 = l_Lean_mkApp6(x_46, x_24, x_25, x_34, x_35, x_1, x_2); +lean_ctor_set(x_39, 0, x_47); +return x_39; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_48 = lean_ctor_get(x_39, 0); +x_49 = lean_ctor_get(x_39, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_39); +x_50 = lean_box(0); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_48); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_37); +lean_ctor_set(x_52, 1, x_51); +x_53 = l_Lean_Meta_mkCongrArg___closed__2; +x_54 = l_Lean_mkConst(x_53, x_52); +x_55 = l_Lean_mkApp6(x_54, x_24, x_25, x_34, x_35, x_1, x_2); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_49); +return x_56; } } else { -uint8_t x_50; -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); +uint8_t x_57; +lean_dec(x_37); +lean_dec(x_35); +lean_dec(x_34); lean_dec(x_25); +lean_dec(x_24); lean_dec(x_2); lean_dec(x_1); -x_50 = !lean_is_exclusive(x_32); -if (x_50 == 0) +x_57 = !lean_is_exclusive(x_39); +if (x_57 == 0) { -return x_32; +return x_39; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_32, 0); -x_52 = lean_ctor_get(x_32, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_32); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_39, 0); +x_59 = lean_ctor_get(x_39, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_39); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +return x_60; } } } else { -uint8_t x_54; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); +uint8_t x_61; +lean_dec(x_35); +lean_dec(x_34); lean_dec(x_25); +lean_dec(x_24); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_54 = !lean_is_exclusive(x_29); -if (x_54 == 0) +x_61 = !lean_is_exclusive(x_36); +if (x_61 == 0) { -return x_29; +return x_36; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_29, 0); -x_56 = lean_ctor_get(x_29, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_29); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} -} -block_67: -{ -if (lean_obj_tag(x_59) == 0) -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -lean_dec(x_11); -lean_dec(x_2); -x_60 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_14); -x_61 = l_Lean_Meta_mkCongrArg___closed__5; -x_62 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_60); -x_63 = l_Lean_Meta_mkCongrArg___closed__2; -x_64 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_63, x_62, x_3, x_4, x_5, x_6, x_15); +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_36, 0); +x_63 = lean_ctor_get(x_36, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_36); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); return x_64; } +} +} +} else { -lean_object* x_65; lean_object* x_66; -lean_dec(x_14); -x_65 = lean_ctor_get(x_59, 0); -lean_inc(x_65); -lean_dec(x_59); -x_66 = lean_box(0); -x_16 = x_66; -x_17 = x_65; -goto block_58; -} -} -block_92: -{ -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_object* x_65; +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); lean_dec(x_11); lean_dec(x_2); -x_69 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_14); -x_70 = l_Lean_Meta_mkCongrArg___closed__5; -x_71 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = l_Lean_Meta_mkCongrArg___closed__2; -x_73 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_72, x_71, x_3, x_4, x_5, x_6, x_15); -return x_73; +x_65 = lean_box(0); +x_16 = x_65; +goto block_22; +} } else { -uint8_t x_74; -lean_dec(x_14); -x_74 = !lean_is_exclusive(x_68); -if (x_74 == 0) -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_75 = lean_ctor_get(x_68, 0); -x_76 = l_Lean_Expr_appFn_x21(x_11); -x_77 = l_Lean_Expr_appFn_x21(x_76); -x_78 = l_Lean_Expr_appArg_x21(x_77); -lean_dec(x_77); -x_79 = l_Lean_Expr_appArg_x21(x_76); -lean_dec(x_76); -x_80 = l_Lean_Expr_appArg_x21(x_11); -x_81 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_81, 0, x_79); -lean_ctor_set(x_81, 1, x_80); -x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_78); -lean_ctor_set(x_82, 1, x_81); -lean_ctor_set(x_68, 0, x_82); -x_16 = x_68; -x_17 = x_75; -goto block_58; -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_83 = lean_ctor_get(x_68, 0); -lean_inc(x_83); -lean_dec(x_68); -x_84 = l_Lean_Expr_appFn_x21(x_11); -x_85 = l_Lean_Expr_appFn_x21(x_84); -x_86 = l_Lean_Expr_appArg_x21(x_85); -lean_dec(x_85); -x_87 = l_Lean_Expr_appArg_x21(x_84); -lean_dec(x_84); -x_88 = l_Lean_Expr_appArg_x21(x_11); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_86); -lean_ctor_set(x_90, 1, x_89); -x_91 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_91, 0, x_90); -x_16 = x_91; -x_17 = x_83; -goto block_58; -} +lean_object* x_66; +lean_dec(x_23); +lean_dec(x_11); +lean_dec(x_2); +x_66 = lean_box(0); +x_16 = x_66; +goto block_22; } } } else { -uint8_t x_103; +uint8_t x_80; lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); @@ -3410,63 +3349,63 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_103 = !lean_is_exclusive(x_13); -if (x_103 == 0) +x_80 = !lean_is_exclusive(x_13); +if (x_80 == 0) { return x_13; } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_104 = lean_ctor_get(x_13, 0); -x_105 = lean_ctor_get(x_13, 1); -lean_inc(x_105); -lean_inc(x_104); +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_13, 0); +x_82 = lean_ctor_get(x_13, 1); +lean_inc(x_82); +lean_inc(x_81); lean_dec(x_13); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_104); -lean_ctor_set(x_106, 1, x_105); -return x_106; +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +return x_83; } } } else { -uint8_t x_107; +uint8_t x_84; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_107 = !lean_is_exclusive(x_10); -if (x_107 == 0) +x_84 = !lean_is_exclusive(x_10); +if (x_84 == 0) { return x_10; } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_108 = lean_ctor_get(x_10, 0); -x_109 = lean_ctor_get(x_10, 1); -lean_inc(x_109); -lean_inc(x_108); +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_10, 0); +x_86 = lean_ctor_get(x_10, 1); +lean_inc(x_86); +lean_inc(x_85); lean_dec(x_10); -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -return x_110; +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; } } } else { -lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_111 = l_Lean_Expr_appArg_x21(x_2); +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = l_Lean_Expr_appArg_x21(x_2); lean_dec(x_2); -x_112 = l_Lean_mkApp(x_1, x_111); -x_113 = l_Lean_Meta_mkEqRefl(x_112, x_3, x_4, x_5, x_6, x_7); -return x_113; +x_89 = l_Lean_mkApp(x_1, x_88); +x_90 = l_Lean_Meta_mkEqRefl(x_89, x_3, x_4, x_5, x_6, x_7); +return x_90; } } } @@ -3864,326 +3803,337 @@ lean_inc(x_2); x_14 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_infer(x_2, x_3, x_4, x_5, x_6, x_13); if (lean_obj_tag(x_14) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_81; lean_object* x_82; uint8_t x_83; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; lean_object* x_21; x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); -x_81 = l_Lean_Meta_mkEq___closed__2; -x_82 = lean_unsigned_to_nat(3u); -x_83 = l_Lean_Expr_isAppOfArity(x_12, x_81, x_82); -if (x_83 == 0) +x_17 = l_Lean_Meta_mkEq___closed__2; +x_18 = lean_unsigned_to_nat(3u); +x_19 = l_Lean_Expr_isAppOfArity(x_15, x_17, x_18); +x_20 = l_Lean_Expr_isAppOfArity(x_12, x_17, x_18); +if (x_19 == 0) { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +lean_object* x_90; +x_90 = lean_box(0); +x_21 = x_90; +goto block_89; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_91 = l_Lean_Expr_appFn_x21(x_15); +x_92 = l_Lean_Expr_appFn_x21(x_91); +x_93 = l_Lean_Expr_appArg_x21(x_92); +lean_dec(x_92); +x_94 = l_Lean_Expr_appArg_x21(x_91); +lean_dec(x_91); +x_95 = l_Lean_Expr_appArg_x21(x_15); +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_98, 0, x_97); +x_21 = x_98; +goto block_89; +} +block_89: +{ +if (x_20 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_21); lean_dec(x_15); lean_dec(x_2); -x_84 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); -x_85 = l_Lean_Meta_mkEqSymm___closed__5; -x_86 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_84); -x_87 = l_Lean_Meta_mkCongr___closed__2; -x_88 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_87, x_86, x_3, x_4, x_5, x_6, x_16); +x_22 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); +x_23 = l_Lean_Meta_mkEqSymm___closed__5; +x_24 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l_Lean_Meta_mkCongr___closed__2; +x_26 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_25, x_24, x_3, x_4, x_5, x_6, x_16); +return x_26; +} +else +{ +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_12); +lean_dec(x_1); +x_27 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); +x_28 = l_Lean_Meta_mkEqSymm___closed__5; +x_29 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = l_Lean_Meta_mkCongr___closed__2; +x_31 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_30, x_29, x_3, x_4, x_5, x_6, x_16); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_15); +x_32 = lean_ctor_get(x_21, 0); +lean_inc(x_32); +lean_dec(x_21); +x_33 = l_Lean_Expr_appFn_x21(x_12); +x_34 = l_Lean_Expr_appFn_x21(x_33); +x_35 = l_Lean_Expr_appArg_x21(x_34); +lean_dec(x_34); +x_36 = l_Lean_Expr_appArg_x21(x_33); +lean_dec(x_33); +x_37 = l_Lean_Expr_appArg_x21(x_12); +x_38 = lean_ctor_get(x_32, 1); +lean_inc(x_38); +x_39 = lean_ctor_get(x_32, 0); +lean_inc(x_39); +lean_dec(x_32); +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_38, 1); +lean_inc(x_41); +lean_dec(x_38); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_42 = l_Lean_Meta_whnfD(x_35, x_3, x_4, x_5, x_6, x_16); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +if (lean_obj_tag(x_43) == 7) +{ +lean_object* x_52; uint8_t x_53; +x_52 = lean_ctor_get(x_43, 2); +lean_inc(x_52); +lean_dec(x_43); +x_53 = l_Lean_Expr_hasLooseBVars(x_52); +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_12); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_39); +x_54 = l_Lean_Meta_getLevel(x_39, x_3, x_4, x_5, x_6, x_44); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec(x_54); +lean_inc(x_52); +x_57 = l_Lean_Meta_getLevel(x_52, x_3, x_4, x_5, x_6, x_56); +if (lean_obj_tag(x_57) == 0) +{ +uint8_t x_58; +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_59 = lean_ctor_get(x_57, 0); +x_60 = lean_box(0); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_55); +lean_ctor_set(x_62, 1, x_61); +x_63 = l_Lean_Meta_mkCongr___closed__2; +x_64 = l_Lean_mkConst(x_63, x_62); +x_65 = l_Lean_mkApp8(x_64, x_39, x_52, x_36, x_37, x_40, x_41, x_1, x_2); +lean_ctor_set(x_57, 0, x_65); +return x_57; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_66 = lean_ctor_get(x_57, 0); +x_67 = lean_ctor_get(x_57, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_57); +x_68 = lean_box(0); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_66); +lean_ctor_set(x_69, 1, x_68); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_55); +lean_ctor_set(x_70, 1, x_69); +x_71 = l_Lean_Meta_mkCongr___closed__2; +x_72 = l_Lean_mkConst(x_71, x_70); +x_73 = l_Lean_mkApp8(x_72, x_39, x_52, x_36, x_37, x_40, x_41, x_1, x_2); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_67); +return x_74; +} +} +else +{ +uint8_t x_75; +lean_dec(x_55); +lean_dec(x_52); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_2); +lean_dec(x_1); +x_75 = !lean_is_exclusive(x_57); +if (x_75 == 0) +{ +return x_57; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_57, 0); +x_77 = lean_ctor_get(x_57, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_57); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +else +{ +uint8_t x_79; +lean_dec(x_52); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_79 = !lean_is_exclusive(x_54); +if (x_79 == 0) +{ +return x_54; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_54, 0); +x_81 = lean_ctor_get(x_54, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_54); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; +} +} +} +else +{ +lean_object* x_83; +lean_dec(x_52); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_2); +x_83 = lean_box(0); +x_45 = x_83; +goto block_51; +} +} +else +{ +lean_object* x_84; +lean_dec(x_43); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_2); +x_84 = lean_box(0); +x_45 = x_84; +goto block_51; +} +block_51: +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +lean_dec(x_45); +x_46 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); +x_47 = l_Lean_Meta_mkCongrArg___closed__5; +x_48 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_46); +x_49 = l_Lean_Meta_mkCongr___closed__2; +x_50 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_49, x_48, x_3, x_4, x_5, x_6, x_44); +return x_50; +} +} +else +{ +uint8_t x_85; +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_42); +if (x_85 == 0) +{ +return x_42; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_42, 0); +x_87 = lean_ctor_get(x_42, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_42); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); return x_88; } -else -{ -uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_89 = l_Lean_Expr_isAppOfArity(x_15, x_81, x_82); -x_90 = l_Lean_Expr_appFn_x21(x_12); -x_91 = l_Lean_Expr_appFn_x21(x_90); -x_92 = l_Lean_Expr_appArg_x21(x_91); -lean_dec(x_91); -x_93 = l_Lean_Expr_appArg_x21(x_90); -lean_dec(x_90); -x_94 = l_Lean_Expr_appArg_x21(x_12); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_92); -lean_ctor_set(x_96, 1, x_95); -if (x_89 == 0) -{ -lean_object* x_97; -x_97 = lean_box(0); -x_17 = x_97; -x_18 = x_96; -goto block_80; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_98 = l_Lean_Expr_appFn_x21(x_15); -x_99 = l_Lean_Expr_appFn_x21(x_98); -x_100 = l_Lean_Expr_appArg_x21(x_99); -lean_dec(x_99); -x_101 = l_Lean_Expr_appArg_x21(x_98); -lean_dec(x_98); -x_102 = l_Lean_Expr_appArg_x21(x_15); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_101); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_100); -lean_ctor_set(x_104, 1, x_103); -x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_104); -x_17 = x_105; -x_18 = x_96; -goto block_80; } } -block_80: -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_12); -lean_dec(x_1); -x_20 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_2, x_15); -x_21 = l_Lean_Meta_mkEqSymm___closed__5; -x_22 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_20); -x_23 = l_Lean_Meta_mkCongr___closed__2; -x_24 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_23, x_22, x_3, x_4, x_5, x_6, x_16); -return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_dec(x_15); -x_25 = lean_ctor_get(x_17, 0); -lean_inc(x_25); -lean_dec(x_17); -x_26 = lean_ctor_get(x_25, 1); -lean_inc(x_26); -x_27 = lean_ctor_get(x_18, 0); -lean_inc(x_27); -lean_dec(x_18); -x_28 = lean_ctor_get(x_19, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_19, 1); -lean_inc(x_29); -lean_dec(x_19); -x_30 = lean_ctor_get(x_25, 0); -lean_inc(x_30); -lean_dec(x_25); -x_31 = lean_ctor_get(x_26, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_26, 1); -lean_inc(x_32); -lean_dec(x_26); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_33 = l_Lean_Meta_whnfD(x_27, x_3, x_4, x_5, x_6, x_16); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -if (lean_obj_tag(x_34) == 7) -{ -lean_object* x_43; uint8_t x_44; -x_43 = lean_ctor_get(x_34, 2); -lean_inc(x_43); -lean_dec(x_34); -x_44 = l_Lean_Expr_hasLooseBVars(x_43); -if (x_44 == 0) -{ -lean_object* x_45; -lean_dec(x_12); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_30); -x_45 = l_Lean_Meta_getLevel(x_30, x_3, x_4, x_5, x_6, x_35); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec(x_45); -lean_inc(x_43); -x_48 = l_Lean_Meta_getLevel(x_43, x_3, x_4, x_5, x_6, x_47); -if (lean_obj_tag(x_48) == 0) -{ -uint8_t x_49; -x_49 = !lean_is_exclusive(x_48); -if (x_49 == 0) -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_50 = lean_ctor_get(x_48, 0); -x_51 = lean_box(0); -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_46); -lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_Meta_mkCongr___closed__2; -x_55 = l_Lean_mkConst(x_54, x_53); -x_56 = l_Lean_mkApp8(x_55, x_30, x_43, x_28, x_29, x_31, x_32, x_1, x_2); -lean_ctor_set(x_48, 0, x_56); -return x_48; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_57 = lean_ctor_get(x_48, 0); -x_58 = lean_ctor_get(x_48, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_48); -x_59 = lean_box(0); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_46); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_Meta_mkCongr___closed__2; -x_63 = l_Lean_mkConst(x_62, x_61); -x_64 = l_Lean_mkApp8(x_63, x_30, x_43, x_28, x_29, x_31, x_32, x_1, x_2); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_58); -return x_65; } } else { -uint8_t x_66; -lean_dec(x_46); -lean_dec(x_43); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_2); -lean_dec(x_1); -x_66 = !lean_is_exclusive(x_48); -if (x_66 == 0) -{ -return x_48; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_48, 0); -x_68 = lean_ctor_get(x_48, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_48); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} -} -else -{ -uint8_t x_70; -lean_dec(x_43); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_70 = !lean_is_exclusive(x_45); -if (x_70 == 0) -{ -return x_45; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_71 = lean_ctor_get(x_45, 0); -x_72 = lean_ctor_get(x_45, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_45); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -return x_73; -} -} -} -else -{ -lean_object* x_74; -lean_dec(x_43); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_2); -x_74 = lean_box(0); -x_36 = x_74; -goto block_42; -} -} -else -{ -lean_object* x_75; -lean_dec(x_34); -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_2); -x_75 = lean_box(0); -x_36 = x_75; -goto block_42; -} -block_42: -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_36); -x_37 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_hasTypeMsg(x_1, x_12); -x_38 = l_Lean_Meta_mkCongrArg___closed__5; -x_39 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_37); -x_40 = l_Lean_Meta_mkCongr___closed__2; -x_41 = l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg(x_40, x_39, x_3, x_4, x_5, x_6, x_35); -return x_41; -} -} -else -{ -uint8_t x_76; -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_28); +uint8_t x_99; lean_dec(x_12); lean_dec(x_6); lean_dec(x_5); @@ -4191,103 +4141,71 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_76 = !lean_is_exclusive(x_33); -if (x_76 == 0) -{ -return x_33; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_33, 0); -x_78 = lean_ctor_get(x_33, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_33); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; -} -} -} -} -} -else -{ -uint8_t x_106; -lean_dec(x_12); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_106 = !lean_is_exclusive(x_14); -if (x_106 == 0) +x_99 = !lean_is_exclusive(x_14); +if (x_99 == 0) { return x_14; } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_107 = lean_ctor_get(x_14, 0); -x_108 = lean_ctor_get(x_14, 1); -lean_inc(x_108); -lean_inc(x_107); +lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_100 = lean_ctor_get(x_14, 0); +x_101 = lean_ctor_get(x_14, 1); +lean_inc(x_101); +lean_inc(x_100); lean_dec(x_14); -x_109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_109, 0, x_107); -lean_ctor_set(x_109, 1, x_108); -return x_109; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_100); +lean_ctor_set(x_102, 1, x_101); +return x_102; } } } else { -uint8_t x_110; +uint8_t x_103; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_110 = !lean_is_exclusive(x_11); -if (x_110 == 0) +x_103 = !lean_is_exclusive(x_11); +if (x_103 == 0) { return x_11; } else { -lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_111 = lean_ctor_get(x_11, 0); -x_112 = lean_ctor_get(x_11, 1); -lean_inc(x_112); -lean_inc(x_111); +lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_104 = lean_ctor_get(x_11, 0); +x_105 = lean_ctor_get(x_11, 1); +lean_inc(x_105); +lean_inc(x_104); lean_dec(x_11); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_111); -lean_ctor_set(x_113, 1, x_112); -return x_113; +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_104); +lean_ctor_set(x_106, 1, x_105); +return x_106; } } } else { -lean_object* x_114; lean_object* x_115; -x_114 = l_Lean_Expr_appArg_x21(x_2); +lean_object* x_107; lean_object* x_108; +x_107 = l_Lean_Expr_appArg_x21(x_2); lean_dec(x_2); -x_115 = l_Lean_Meta_mkCongrFun(x_1, x_114, x_3, x_4, x_5, x_6, x_7); -return x_115; +x_108 = l_Lean_Meta_mkCongrFun(x_1, x_107, x_3, x_4, x_5, x_6, x_7); +return x_108; } } else { -lean_object* x_116; lean_object* x_117; -x_116 = l_Lean_Expr_appArg_x21(x_1); +lean_object* x_109; lean_object* x_110; +x_109 = l_Lean_Expr_appArg_x21(x_1); lean_dec(x_1); -x_117 = l_Lean_Meta_mkCongrArg(x_116, x_2, x_3, x_4, x_5, x_6, x_7); -return x_117; +x_110 = l_Lean_Meta_mkCongrArg(x_109, x_2, x_3, x_4, x_5, x_6, x_7); +return x_110; } } } diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index 10b1e2458c..fa65e659d8 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -27227,15 +27227,15 @@ LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Meta_sortFVarIds___spec__1___la _start: { lean_object* x_4; lean_object* x_5; -lean_inc(x_2); -lean_inc(x_1); -x_4 = lean_local_ctx_find(x_1, x_2); lean_inc(x_3); -x_5 = lean_local_ctx_find(x_1, x_3); -if (lean_obj_tag(x_4) == 0) -{ +lean_inc(x_1); +x_4 = lean_local_ctx_find(x_1, x_3); +lean_inc(x_2); +x_5 = lean_local_ctx_find(x_1, x_2); if (lean_obj_tag(x_5) == 0) { +if (lean_obj_tag(x_4) == 0) +{ uint8_t x_6; x_6 = l_Lean_Name_quickLt(x_2, x_3); lean_dec(x_3); @@ -27245,7 +27245,7 @@ return x_6; else { uint8_t x_7; -lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); x_7 = 1; @@ -27256,22 +27256,22 @@ else { lean_dec(x_3); lean_dec(x_2); -if (lean_obj_tag(x_5) == 0) +if (lean_obj_tag(x_4) == 0) { uint8_t x_8; -lean_dec(x_4); +lean_dec(x_5); x_8 = 0; return x_8; } else { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_9 = lean_ctor_get(x_4, 0); +x_9 = lean_ctor_get(x_5, 0); lean_inc(x_9); -lean_dec(x_4); -x_10 = lean_ctor_get(x_5, 0); -lean_inc(x_10); lean_dec(x_5); +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +lean_dec(x_4); x_11 = l_Lean_LocalDecl_index(x_9); lean_dec(x_9); x_12 = l_Lean_LocalDecl_index(x_10); @@ -27311,16 +27311,16 @@ lean_inc(x_2); x_86 = lean_array_get(x_2, x_3, x_19); lean_inc(x_2); x_87 = lean_array_get(x_2, x_3, x_4); -lean_inc(x_86); -lean_inc(x_1); -x_88 = lean_local_ctx_find(x_1, x_86); lean_inc(x_87); lean_inc(x_1); -x_89 = lean_local_ctx_find(x_1, x_87); -if (lean_obj_tag(x_88) == 0) -{ +x_88 = lean_local_ctx_find(x_1, x_87); +lean_inc(x_86); +lean_inc(x_1); +x_89 = lean_local_ctx_find(x_1, x_86); if (lean_obj_tag(x_89) == 0) { +if (lean_obj_tag(x_88) == 0) +{ uint8_t x_90; x_90 = l_Lean_Name_quickLt(x_86, x_87); lean_dec(x_87); @@ -27341,7 +27341,7 @@ goto block_85; else { lean_object* x_92; -lean_dec(x_89); +lean_dec(x_88); lean_dec(x_87); lean_dec(x_86); x_92 = lean_array_swap(x_3, x_4, x_19); @@ -27353,21 +27353,21 @@ else { lean_dec(x_87); lean_dec(x_86); -if (lean_obj_tag(x_89) == 0) +if (lean_obj_tag(x_88) == 0) { -lean_dec(x_88); +lean_dec(x_89); x_20 = x_3; goto block_85; } else { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; -x_93 = lean_ctor_get(x_88, 0); +x_93 = lean_ctor_get(x_89, 0); lean_inc(x_93); -lean_dec(x_88); -x_94 = lean_ctor_get(x_89, 0); -lean_inc(x_94); lean_dec(x_89); +x_94 = lean_ctor_get(x_88, 0); +lean_inc(x_94); +lean_dec(x_88); x_95 = l_Lean_LocalDecl_index(x_93); lean_dec(x_93); x_96 = l_Lean_LocalDecl_index(x_94); @@ -27396,16 +27396,16 @@ lean_inc(x_2); x_46 = lean_array_get(x_2, x_20, x_5); lean_inc(x_2); x_70 = lean_array_get(x_2, x_20, x_4); -lean_inc(x_46); -lean_inc(x_1); -x_71 = lean_local_ctx_find(x_1, x_46); lean_inc(x_70); lean_inc(x_1); -x_72 = lean_local_ctx_find(x_1, x_70); -if (lean_obj_tag(x_71) == 0) -{ +x_71 = lean_local_ctx_find(x_1, x_70); +lean_inc(x_46); +lean_inc(x_1); +x_72 = lean_local_ctx_find(x_1, x_46); if (lean_obj_tag(x_72) == 0) { +if (lean_obj_tag(x_71) == 0) +{ uint8_t x_73; x_73 = l_Lean_Name_quickLt(x_46, x_70); lean_dec(x_70); @@ -27428,7 +27428,7 @@ goto block_45; else { lean_object* x_76; -lean_dec(x_72); +lean_dec(x_71); lean_dec(x_70); lean_dec(x_46); x_76 = lean_box(0); @@ -27439,10 +27439,10 @@ goto block_45; else { lean_dec(x_70); -if (lean_obj_tag(x_72) == 0) +if (lean_obj_tag(x_71) == 0) { lean_object* x_77; -lean_dec(x_71); +lean_dec(x_72); x_77 = lean_box(0); x_47 = x_77; goto block_69; @@ -27450,12 +27450,12 @@ goto block_69; else { lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; -x_78 = lean_ctor_get(x_71, 0); +x_78 = lean_ctor_get(x_72, 0); lean_inc(x_78); -lean_dec(x_71); -x_79 = lean_ctor_get(x_72, 0); -lean_inc(x_79); lean_dec(x_72); +x_79 = lean_ctor_get(x_71, 0); +lean_inc(x_79); +lean_dec(x_71); x_80 = l_Lean_LocalDecl_index(x_78); lean_dec(x_78); x_81 = l_Lean_LocalDecl_index(x_79); @@ -27489,16 +27489,16 @@ lean_inc(x_2); x_23 = lean_array_get(x_2, x_22, x_19); lean_inc(x_2); x_24 = lean_array_get(x_2, x_22, x_5); -lean_inc(x_23); -lean_inc(x_1); -x_25 = lean_local_ctx_find(x_1, x_23); lean_inc(x_24); lean_inc(x_1); -x_26 = lean_local_ctx_find(x_1, x_24); -if (lean_obj_tag(x_25) == 0) -{ +x_25 = lean_local_ctx_find(x_1, x_24); +lean_inc(x_23); +lean_inc(x_1); +x_26 = lean_local_ctx_find(x_1, x_23); if (lean_obj_tag(x_26) == 0) { +if (lean_obj_tag(x_25) == 0) +{ uint8_t x_27; x_27 = l_Lean_Name_quickLt(x_23, x_24); lean_dec(x_23); @@ -27530,7 +27530,7 @@ goto block_15; else { lean_object* x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_26); +lean_dec(x_25); lean_dec(x_24); lean_dec(x_23); x_32 = lean_array_swap(x_22, x_19, x_5); @@ -27547,10 +27547,10 @@ goto block_15; else { lean_dec(x_23); -if (lean_obj_tag(x_26) == 0) +if (lean_obj_tag(x_25) == 0) { lean_object* x_35; -lean_dec(x_25); +lean_dec(x_26); lean_dec(x_19); lean_inc_n(x_4, 2); lean_inc(x_2); @@ -27561,12 +27561,12 @@ goto block_15; else { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; -x_36 = lean_ctor_get(x_25, 0); +x_36 = lean_ctor_get(x_26, 0); lean_inc(x_36); -lean_dec(x_25); -x_37 = lean_ctor_get(x_26, 0); -lean_inc(x_37); lean_dec(x_26); +x_37 = lean_ctor_get(x_25, 0); +lean_inc(x_37); +lean_dec(x_25); x_38 = l_Lean_LocalDecl_index(x_36); lean_dec(x_36); x_39 = l_Lean_LocalDecl_index(x_37); @@ -27607,16 +27607,16 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_47); lean_inc(x_2); x_48 = lean_array_get(x_2, x_20, x_19); -lean_inc(x_48); -lean_inc(x_1); -x_49 = lean_local_ctx_find(x_1, x_48); lean_inc(x_46); lean_inc(x_1); -x_50 = lean_local_ctx_find(x_1, x_46); -if (lean_obj_tag(x_49) == 0) -{ +x_49 = lean_local_ctx_find(x_1, x_46); +lean_inc(x_48); +lean_inc(x_1); +x_50 = lean_local_ctx_find(x_1, x_48); if (lean_obj_tag(x_50) == 0) { +if (lean_obj_tag(x_49) == 0) +{ uint8_t x_51; x_51 = l_Lean_Name_quickLt(x_48, x_46); lean_dec(x_48); @@ -27648,7 +27648,7 @@ goto block_15; else { lean_object* x_56; lean_object* x_57; lean_object* x_58; -lean_dec(x_50); +lean_dec(x_49); lean_dec(x_48); lean_dec(x_46); x_56 = lean_array_swap(x_20, x_19, x_5); @@ -27665,10 +27665,10 @@ goto block_15; else { lean_dec(x_48); -if (lean_obj_tag(x_50) == 0) +if (lean_obj_tag(x_49) == 0) { lean_object* x_59; -lean_dec(x_49); +lean_dec(x_50); lean_dec(x_19); lean_inc_n(x_4, 2); lean_inc(x_2); @@ -27679,12 +27679,12 @@ goto block_15; else { lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_60 = lean_ctor_get(x_49, 0); +x_60 = lean_ctor_get(x_50, 0); lean_inc(x_60); -lean_dec(x_49); -x_61 = lean_ctor_get(x_50, 0); -lean_inc(x_61); lean_dec(x_50); +x_61 = lean_ctor_get(x_49, 0); +lean_inc(x_61); +lean_dec(x_49); x_62 = l_Lean_LocalDecl_index(x_60); lean_dec(x_60); x_63 = l_Lean_LocalDecl_index(x_61); diff --git a/stage0/stdlib/Lean/Meta/ExprDefEq.c b/stage0/stdlib/Lean/Meta/ExprDefEq.c index f2d4224670..2c7bbc2512 100644 --- a/stage0/stdlib/Lean/Meta/ExprDefEq.c +++ b/stage0/stdlib/Lean/Meta/ExprDefEq.c @@ -46829,24 +46829,23 @@ return x_73; LEAN_EXPORT uint8_t l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_sameHeadSymbol(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = l_Lean_Expr_getAppFn(x_1); -if (lean_obj_tag(x_3) == 4) -{ -lean_object* x_4; -lean_dec(x_3); -x_4 = l_Lean_Expr_getAppFn(x_2); +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Expr_getAppFn(x_2); +x_4 = l_Lean_Expr_getAppFn(x_1); if (lean_obj_tag(x_4) == 4) { -uint8_t x_5; lean_dec(x_4); +if (lean_obj_tag(x_3) == 4) +{ +uint8_t x_5; +lean_dec(x_3); x_5 = 1; return x_5; } else { uint8_t x_6; -lean_dec(x_4); +lean_dec(x_3); x_6 = 0; return x_6; } @@ -46854,6 +46853,7 @@ return x_6; else { uint8_t x_7; +lean_dec(x_4); lean_dec(x_3); x_7 = 0; return x_7; diff --git a/stage0/stdlib/Lean/Meta/IndPredBelow.c b/stage0/stdlib/Lean/Meta/IndPredBelow.c index 0db4529162..0696aea213 100644 --- a/stage0/stdlib/Lean/Meta/IndPredBelow.c +++ b/stage0/stdlib/Lean/Meta/IndPredBelow.c @@ -15141,27 +15141,27 @@ x_19 = lean_usize_of_nat(x_18); lean_dec(x_18); x_20 = 0; x_21 = l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__2(x_19, x_20, x_17); -x_22 = lean_array_get_size(x_14); -x_23 = lean_array_get_size(x_21); +x_22 = lean_array_get_size(x_21); +x_23 = lean_array_get_size(x_14); x_24 = lean_unsigned_to_nat(0u); -x_25 = lean_nat_dec_eq(x_22, x_24); -lean_inc(x_22); +x_25 = lean_nat_dec_eq(x_23, x_24); +lean_inc(x_23); lean_inc(x_21); -x_26 = l_Array_toSubarray___rarg(x_21, x_24, x_22); +x_26 = l_Array_toSubarray___rarg(x_21, x_24, x_23); x_27 = l_Array_ofSubarray___rarg(x_26); x_28 = l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; x_29 = lean_st_ref_get(x_10, x_11); if (x_25 == 0) { -lean_dec(x_23); +lean_dec(x_22); x_30 = x_5; goto block_95; } else { uint8_t x_96; -x_96 = lean_nat_dec_eq(x_23, x_24); -lean_dec(x_23); +x_96 = lean_nat_dec_eq(x_22, x_24); +lean_dec(x_22); if (x_96 == 0) { lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; @@ -15181,9 +15181,9 @@ goto block_95; block_95: { lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_85; lean_object* x_86; uint8_t x_87; -lean_inc(x_22); +lean_inc(x_23); lean_inc(x_30); -x_31 = l_Array_toSubarray___rarg(x_30, x_24, x_22); +x_31 = l_Array_toSubarray___rarg(x_30, x_24, x_23); x_32 = l_Array_ofSubarray___rarg(x_31); x_33 = l_Lean_Expr_replaceFVars(x_6, x_32, x_27); lean_dec(x_32); @@ -15231,7 +15231,7 @@ if (x_34 == 0) lean_object* x_36; lean_object* x_37; lean_dec(x_14); x_36 = lean_box(0); -x_37 = l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3___lambda__1(x_30, x_22, x_27, x_21, x_33, x_3, x_4, x_28, x_36, x_7, x_8, x_9, x_10, x_35); +x_37 = l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3___lambda__1(x_30, x_23, x_27, x_21, x_33, x_3, x_4, x_28, x_36, x_7, x_8, x_9, x_10, x_35); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -15254,7 +15254,7 @@ x_44 = l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3_ x_45 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); -x_46 = lean_usize_of_nat(x_22); +x_46 = lean_usize_of_nat(x_23); x_47 = l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__2(x_46, x_20, x_14); x_48 = lean_array_to_list(lean_box(0), x_47); x_49 = l_List_mapTRAux___at_Lean_MessageData_instCoeListExprMessageData___spec__1(x_48, x_39); @@ -15280,18 +15280,18 @@ x_59 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_59, 0, x_57); lean_ctor_set(x_59, 1, x_58); x_60 = lean_array_get_size(x_30); -lean_inc(x_22); +lean_inc(x_23); lean_inc(x_30); -x_61 = l_Array_toSubarray___rarg(x_30, x_22, x_60); +x_61 = l_Array_toSubarray___rarg(x_30, x_23, x_60); x_62 = l_Array_ofSubarray___rarg(x_61); lean_inc(x_27); x_63 = l_Array_append___rarg(x_27, x_62); x_64 = lean_array_get_size(x_63); x_65 = l_Array_toSubarray___rarg(x_63, x_24, x_64); x_66 = lean_array_get_size(x_21); -lean_inc(x_22); +lean_inc(x_23); lean_inc(x_21); -x_67 = l_Array_toSubarray___rarg(x_21, x_22, x_66); +x_67 = l_Array_toSubarray___rarg(x_21, x_23, x_66); x_68 = l_Array_ofSubarray___rarg(x_65); x_69 = l_Array_ofSubarray___rarg(x_67); x_70 = l_Array_append___rarg(x_68, x_69); @@ -15315,7 +15315,7 @@ lean_inc(x_81); x_82 = lean_ctor_get(x_80, 1); lean_inc(x_82); lean_dec(x_80); -x_83 = l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3___lambda__1(x_30, x_22, x_27, x_21, x_33, x_3, x_4, x_28, x_81, x_7, x_8, x_9, x_10, x_82); +x_83 = l_Array_mapIdxM_map___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__3___lambda__1(x_30, x_23, x_27, x_21, x_33, x_3, x_4, x_28, x_81, x_7, x_8, x_9, x_10, x_82); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -17516,36 +17516,33 @@ _start: switch (lean_obj_tag(x_5)) { case 0: { -lean_object* x_13; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec(x_7); lean_dec(x_6); -x_13 = l_Lean_Expr_constName_x3f(x_5); +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_13); +x_15 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_13) == 0) +if (lean_obj_tag(x_15) == 0) { -lean_object* x_14; +lean_object* x_16; +lean_dec(x_14); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_3); -lean_ctor_set(x_14, 1, x_12); -return x_14; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_3); +lean_ctor_set(x_16, 1, x_12); +return x_16; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_13, 0); -lean_inc(x_15); -lean_dec(x_13); -x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_16); -if (lean_obj_tag(x_17) == 0) +if (lean_obj_tag(x_14) == 0) { -lean_object* x_18; +lean_object* x_17; lean_dec(x_15); lean_dec(x_11); lean_dec(x_10); @@ -17553,22 +17550,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_3); -lean_ctor_set(x_18, 1, x_12); -return x_18; +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_3); +lean_ctor_set(x_17, 1, x_12); +return x_17; } else { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_17, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_15, 0); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_ctor_get(x_14, 0); lean_inc(x_19); -lean_dec(x_17); +lean_dec(x_14); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_20 = l_Lean_Meta_isInductivePredicate(x_15, x_8, x_9, x_10, x_11, x_12); +x_20 = l_Lean_Meta_isInductivePredicate(x_18, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; uint8_t x_22; @@ -17882,36 +17882,33 @@ return x_84; } case 1: { -lean_object* x_85; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_dec(x_7); lean_dec(x_6); -x_85 = l_Lean_Expr_constName_x3f(x_5); +x_85 = lean_unsigned_to_nat(0u); +x_86 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_85); +x_87 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_85) == 0) +if (lean_obj_tag(x_87) == 0) { -lean_object* x_86; +lean_object* x_88; +lean_dec(x_86); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_86 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_86, 0, x_3); -lean_ctor_set(x_86, 1, x_12); -return x_86; +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_3); +lean_ctor_set(x_88, 1, x_12); +return x_88; } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_85, 0); -lean_inc(x_87); -lean_dec(x_85); -x_88 = lean_unsigned_to_nat(0u); -x_89 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_88); -if (lean_obj_tag(x_89) == 0) +if (lean_obj_tag(x_86) == 0) { -lean_object* x_90; +lean_object* x_89; lean_dec(x_87); lean_dec(x_11); lean_dec(x_10); @@ -17919,22 +17916,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_3); -lean_ctor_set(x_90, 1, x_12); -return x_90; +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_3); +lean_ctor_set(x_89, 1, x_12); +return x_89; } else { -lean_object* x_91; lean_object* x_92; -x_91 = lean_ctor_get(x_89, 0); +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_87, 0); +lean_inc(x_90); +lean_dec(x_87); +x_91 = lean_ctor_get(x_86, 0); lean_inc(x_91); -lean_dec(x_89); +lean_dec(x_86); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_92 = l_Lean_Meta_isInductivePredicate(x_87, x_8, x_9, x_10, x_11, x_12); +x_92 = l_Lean_Meta_isInductivePredicate(x_90, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_92) == 0) { lean_object* x_93; uint8_t x_94; @@ -18248,36 +18248,33 @@ return x_156; } case 2: { -lean_object* x_157; +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_dec(x_7); lean_dec(x_6); -x_157 = l_Lean_Expr_constName_x3f(x_5); +x_157 = lean_unsigned_to_nat(0u); +x_158 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_157); +x_159 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_157) == 0) +if (lean_obj_tag(x_159) == 0) { -lean_object* x_158; +lean_object* x_160; +lean_dec(x_158); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_3); -lean_ctor_set(x_158, 1, x_12); -return x_158; +x_160 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_160, 0, x_3); +lean_ctor_set(x_160, 1, x_12); +return x_160; } else { -lean_object* x_159; lean_object* x_160; lean_object* x_161; -x_159 = lean_ctor_get(x_157, 0); -lean_inc(x_159); -lean_dec(x_157); -x_160 = lean_unsigned_to_nat(0u); -x_161 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_160); -if (lean_obj_tag(x_161) == 0) +if (lean_obj_tag(x_158) == 0) { -lean_object* x_162; +lean_object* x_161; lean_dec(x_159); lean_dec(x_11); lean_dec(x_10); @@ -18285,22 +18282,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_162 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_162, 0, x_3); -lean_ctor_set(x_162, 1, x_12); -return x_162; +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_3); +lean_ctor_set(x_161, 1, x_12); +return x_161; } else { -lean_object* x_163; lean_object* x_164; -x_163 = lean_ctor_get(x_161, 0); +lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_162 = lean_ctor_get(x_159, 0); +lean_inc(x_162); +lean_dec(x_159); +x_163 = lean_ctor_get(x_158, 0); lean_inc(x_163); -lean_dec(x_161); +lean_dec(x_158); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_164 = l_Lean_Meta_isInductivePredicate(x_159, x_8, x_9, x_10, x_11, x_12); +x_164 = l_Lean_Meta_isInductivePredicate(x_162, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_164) == 0) { lean_object* x_165; uint8_t x_166; @@ -18614,36 +18614,33 @@ return x_228; } case 3: { -lean_object* x_229; +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_dec(x_7); lean_dec(x_6); -x_229 = l_Lean_Expr_constName_x3f(x_5); +x_229 = lean_unsigned_to_nat(0u); +x_230 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_229); +x_231 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_229) == 0) +if (lean_obj_tag(x_231) == 0) { -lean_object* x_230; +lean_object* x_232; +lean_dec(x_230); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_230 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_230, 0, x_3); -lean_ctor_set(x_230, 1, x_12); -return x_230; +x_232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_232, 0, x_3); +lean_ctor_set(x_232, 1, x_12); +return x_232; } else { -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_229, 0); -lean_inc(x_231); -lean_dec(x_229); -x_232 = lean_unsigned_to_nat(0u); -x_233 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_232); -if (lean_obj_tag(x_233) == 0) +if (lean_obj_tag(x_230) == 0) { -lean_object* x_234; +lean_object* x_233; lean_dec(x_231); lean_dec(x_11); lean_dec(x_10); @@ -18651,22 +18648,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_234 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_234, 0, x_3); -lean_ctor_set(x_234, 1, x_12); -return x_234; +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_3); +lean_ctor_set(x_233, 1, x_12); +return x_233; } else { -lean_object* x_235; lean_object* x_236; -x_235 = lean_ctor_get(x_233, 0); +lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_234 = lean_ctor_get(x_231, 0); +lean_inc(x_234); +lean_dec(x_231); +x_235 = lean_ctor_get(x_230, 0); lean_inc(x_235); -lean_dec(x_233); +lean_dec(x_230); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_236 = l_Lean_Meta_isInductivePredicate(x_231, x_8, x_9, x_10, x_11, x_12); +x_236 = l_Lean_Meta_isInductivePredicate(x_234, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_236) == 0) { lean_object* x_237; uint8_t x_238; @@ -18980,36 +18980,33 @@ return x_300; } case 4: { -lean_object* x_301; +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_dec(x_7); lean_dec(x_6); -x_301 = l_Lean_Expr_constName_x3f(x_5); +x_301 = lean_unsigned_to_nat(0u); +x_302 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_301); +x_303 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_301) == 0) +if (lean_obj_tag(x_303) == 0) { -lean_object* x_302; +lean_object* x_304; +lean_dec(x_302); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_302 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_302, 0, x_3); -lean_ctor_set(x_302, 1, x_12); -return x_302; +x_304 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_304, 0, x_3); +lean_ctor_set(x_304, 1, x_12); +return x_304; } else { -lean_object* x_303; lean_object* x_304; lean_object* x_305; -x_303 = lean_ctor_get(x_301, 0); -lean_inc(x_303); -lean_dec(x_301); -x_304 = lean_unsigned_to_nat(0u); -x_305 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_304); -if (lean_obj_tag(x_305) == 0) +if (lean_obj_tag(x_302) == 0) { -lean_object* x_306; +lean_object* x_305; lean_dec(x_303); lean_dec(x_11); lean_dec(x_10); @@ -19017,22 +19014,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_306 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_306, 0, x_3); -lean_ctor_set(x_306, 1, x_12); -return x_306; +x_305 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_305, 0, x_3); +lean_ctor_set(x_305, 1, x_12); +return x_305; } else { -lean_object* x_307; lean_object* x_308; -x_307 = lean_ctor_get(x_305, 0); +lean_object* x_306; lean_object* x_307; lean_object* x_308; +x_306 = lean_ctor_get(x_303, 0); +lean_inc(x_306); +lean_dec(x_303); +x_307 = lean_ctor_get(x_302, 0); lean_inc(x_307); -lean_dec(x_305); +lean_dec(x_302); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_308 = l_Lean_Meta_isInductivePredicate(x_303, x_8, x_9, x_10, x_11, x_12); +x_308 = l_Lean_Meta_isInductivePredicate(x_306, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_308) == 0) { lean_object* x_309; uint8_t x_310; @@ -19363,36 +19363,33 @@ goto _start; } case 6: { -lean_object* x_379; +lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_dec(x_7); lean_dec(x_6); -x_379 = l_Lean_Expr_constName_x3f(x_5); +x_379 = lean_unsigned_to_nat(0u); +x_380 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_379); +x_381 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_379) == 0) +if (lean_obj_tag(x_381) == 0) { -lean_object* x_380; +lean_object* x_382; +lean_dec(x_380); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_380 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_380, 0, x_3); -lean_ctor_set(x_380, 1, x_12); -return x_380; +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_3); +lean_ctor_set(x_382, 1, x_12); +return x_382; } else { -lean_object* x_381; lean_object* x_382; lean_object* x_383; -x_381 = lean_ctor_get(x_379, 0); -lean_inc(x_381); -lean_dec(x_379); -x_382 = lean_unsigned_to_nat(0u); -x_383 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_382); -if (lean_obj_tag(x_383) == 0) +if (lean_obj_tag(x_380) == 0) { -lean_object* x_384; +lean_object* x_383; lean_dec(x_381); lean_dec(x_11); lean_dec(x_10); @@ -19400,22 +19397,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_384 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_384, 0, x_3); -lean_ctor_set(x_384, 1, x_12); -return x_384; +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_3); +lean_ctor_set(x_383, 1, x_12); +return x_383; } else { -lean_object* x_385; lean_object* x_386; -x_385 = lean_ctor_get(x_383, 0); +lean_object* x_384; lean_object* x_385; lean_object* x_386; +x_384 = lean_ctor_get(x_381, 0); +lean_inc(x_384); +lean_dec(x_381); +x_385 = lean_ctor_get(x_380, 0); lean_inc(x_385); -lean_dec(x_383); +lean_dec(x_380); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_386 = l_Lean_Meta_isInductivePredicate(x_381, x_8, x_9, x_10, x_11, x_12); +x_386 = l_Lean_Meta_isInductivePredicate(x_384, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_386) == 0) { lean_object* x_387; uint8_t x_388; @@ -19729,36 +19729,33 @@ return x_450; } case 7: { -lean_object* x_451; +lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_dec(x_7); lean_dec(x_6); -x_451 = l_Lean_Expr_constName_x3f(x_5); +x_451 = lean_unsigned_to_nat(0u); +x_452 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_451); +x_453 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_451) == 0) +if (lean_obj_tag(x_453) == 0) { -lean_object* x_452; +lean_object* x_454; +lean_dec(x_452); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_452 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_452, 0, x_3); -lean_ctor_set(x_452, 1, x_12); -return x_452; +x_454 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_454, 0, x_3); +lean_ctor_set(x_454, 1, x_12); +return x_454; } else { -lean_object* x_453; lean_object* x_454; lean_object* x_455; -x_453 = lean_ctor_get(x_451, 0); -lean_inc(x_453); -lean_dec(x_451); -x_454 = lean_unsigned_to_nat(0u); -x_455 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_454); -if (lean_obj_tag(x_455) == 0) +if (lean_obj_tag(x_452) == 0) { -lean_object* x_456; +lean_object* x_455; lean_dec(x_453); lean_dec(x_11); lean_dec(x_10); @@ -19766,22 +19763,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_456 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_456, 0, x_3); -lean_ctor_set(x_456, 1, x_12); -return x_456; +x_455 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_455, 0, x_3); +lean_ctor_set(x_455, 1, x_12); +return x_455; } else { -lean_object* x_457; lean_object* x_458; -x_457 = lean_ctor_get(x_455, 0); +lean_object* x_456; lean_object* x_457; lean_object* x_458; +x_456 = lean_ctor_get(x_453, 0); +lean_inc(x_456); +lean_dec(x_453); +x_457 = lean_ctor_get(x_452, 0); lean_inc(x_457); -lean_dec(x_455); +lean_dec(x_452); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_458 = l_Lean_Meta_isInductivePredicate(x_453, x_8, x_9, x_10, x_11, x_12); +x_458 = l_Lean_Meta_isInductivePredicate(x_456, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_458) == 0) { lean_object* x_459; uint8_t x_460; @@ -20095,36 +20095,33 @@ return x_522; } case 8: { -lean_object* x_523; +lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_dec(x_7); lean_dec(x_6); -x_523 = l_Lean_Expr_constName_x3f(x_5); +x_523 = lean_unsigned_to_nat(0u); +x_524 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_523); +x_525 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_523) == 0) +if (lean_obj_tag(x_525) == 0) { -lean_object* x_524; +lean_object* x_526; +lean_dec(x_524); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_524 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_524, 0, x_3); -lean_ctor_set(x_524, 1, x_12); -return x_524; +x_526 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_526, 0, x_3); +lean_ctor_set(x_526, 1, x_12); +return x_526; } else { -lean_object* x_525; lean_object* x_526; lean_object* x_527; -x_525 = lean_ctor_get(x_523, 0); -lean_inc(x_525); -lean_dec(x_523); -x_526 = lean_unsigned_to_nat(0u); -x_527 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_526); -if (lean_obj_tag(x_527) == 0) +if (lean_obj_tag(x_524) == 0) { -lean_object* x_528; +lean_object* x_527; lean_dec(x_525); lean_dec(x_11); lean_dec(x_10); @@ -20132,22 +20129,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_528 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_528, 0, x_3); -lean_ctor_set(x_528, 1, x_12); -return x_528; +x_527 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_527, 0, x_3); +lean_ctor_set(x_527, 1, x_12); +return x_527; } else { -lean_object* x_529; lean_object* x_530; -x_529 = lean_ctor_get(x_527, 0); +lean_object* x_528; lean_object* x_529; lean_object* x_530; +x_528 = lean_ctor_get(x_525, 0); +lean_inc(x_528); +lean_dec(x_525); +x_529 = lean_ctor_get(x_524, 0); lean_inc(x_529); -lean_dec(x_527); +lean_dec(x_524); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_530 = l_Lean_Meta_isInductivePredicate(x_525, x_8, x_9, x_10, x_11, x_12); +x_530 = l_Lean_Meta_isInductivePredicate(x_528, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_530) == 0) { lean_object* x_531; uint8_t x_532; @@ -20461,36 +20461,33 @@ return x_594; } case 9: { -lean_object* x_595; +lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_dec(x_7); lean_dec(x_6); -x_595 = l_Lean_Expr_constName_x3f(x_5); +x_595 = lean_unsigned_to_nat(0u); +x_596 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_595); +x_597 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_595) == 0) +if (lean_obj_tag(x_597) == 0) { -lean_object* x_596; +lean_object* x_598; +lean_dec(x_596); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_596 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_596, 0, x_3); -lean_ctor_set(x_596, 1, x_12); -return x_596; +x_598 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_598, 0, x_3); +lean_ctor_set(x_598, 1, x_12); +return x_598; } else { -lean_object* x_597; lean_object* x_598; lean_object* x_599; -x_597 = lean_ctor_get(x_595, 0); -lean_inc(x_597); -lean_dec(x_595); -x_598 = lean_unsigned_to_nat(0u); -x_599 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_598); -if (lean_obj_tag(x_599) == 0) +if (lean_obj_tag(x_596) == 0) { -lean_object* x_600; +lean_object* x_599; lean_dec(x_597); lean_dec(x_11); lean_dec(x_10); @@ -20498,22 +20495,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_600 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_600, 0, x_3); -lean_ctor_set(x_600, 1, x_12); -return x_600; +x_599 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_599, 0, x_3); +lean_ctor_set(x_599, 1, x_12); +return x_599; } else { -lean_object* x_601; lean_object* x_602; -x_601 = lean_ctor_get(x_599, 0); +lean_object* x_600; lean_object* x_601; lean_object* x_602; +x_600 = lean_ctor_get(x_597, 0); +lean_inc(x_600); +lean_dec(x_597); +x_601 = lean_ctor_get(x_596, 0); lean_inc(x_601); -lean_dec(x_599); +lean_dec(x_596); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_602 = l_Lean_Meta_isInductivePredicate(x_597, x_8, x_9, x_10, x_11, x_12); +x_602 = l_Lean_Meta_isInductivePredicate(x_600, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_602) == 0) { lean_object* x_603; uint8_t x_604; @@ -20827,36 +20827,33 @@ return x_666; } case 10: { -lean_object* x_667; +lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_dec(x_7); lean_dec(x_6); -x_667 = l_Lean_Expr_constName_x3f(x_5); +x_667 = lean_unsigned_to_nat(0u); +x_668 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_667); +x_669 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_667) == 0) +if (lean_obj_tag(x_669) == 0) { -lean_object* x_668; +lean_object* x_670; +lean_dec(x_668); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_668 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_668, 0, x_3); -lean_ctor_set(x_668, 1, x_12); -return x_668; +x_670 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_670, 0, x_3); +lean_ctor_set(x_670, 1, x_12); +return x_670; } else { -lean_object* x_669; lean_object* x_670; lean_object* x_671; -x_669 = lean_ctor_get(x_667, 0); -lean_inc(x_669); -lean_dec(x_667); -x_670 = lean_unsigned_to_nat(0u); -x_671 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_670); -if (lean_obj_tag(x_671) == 0) +if (lean_obj_tag(x_668) == 0) { -lean_object* x_672; +lean_object* x_671; lean_dec(x_669); lean_dec(x_11); lean_dec(x_10); @@ -20864,22 +20861,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_672 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_672, 0, x_3); -lean_ctor_set(x_672, 1, x_12); -return x_672; +x_671 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_671, 0, x_3); +lean_ctor_set(x_671, 1, x_12); +return x_671; } else { -lean_object* x_673; lean_object* x_674; -x_673 = lean_ctor_get(x_671, 0); +lean_object* x_672; lean_object* x_673; lean_object* x_674; +x_672 = lean_ctor_get(x_669, 0); +lean_inc(x_672); +lean_dec(x_669); +x_673 = lean_ctor_get(x_668, 0); lean_inc(x_673); -lean_dec(x_671); +lean_dec(x_668); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_674 = l_Lean_Meta_isInductivePredicate(x_669, x_8, x_9, x_10, x_11, x_12); +x_674 = l_Lean_Meta_isInductivePredicate(x_672, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_674) == 0) { lean_object* x_675; uint8_t x_676; @@ -21193,36 +21193,33 @@ return x_738; } default: { -lean_object* x_739; +lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_dec(x_7); lean_dec(x_6); -x_739 = l_Lean_Expr_constName_x3f(x_5); +x_739 = lean_unsigned_to_nat(0u); +x_740 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_739); +x_741 = l_Lean_Expr_constName_x3f(x_5); lean_dec(x_5); -if (lean_obj_tag(x_739) == 0) +if (lean_obj_tag(x_741) == 0) { -lean_object* x_740; +lean_object* x_742; +lean_dec(x_740); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_740 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_740, 0, x_3); -lean_ctor_set(x_740, 1, x_12); -return x_740; +x_742 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_742, 0, x_3); +lean_ctor_set(x_742, 1, x_12); +return x_742; } else { -lean_object* x_741; lean_object* x_742; lean_object* x_743; -x_741 = lean_ctor_get(x_739, 0); -lean_inc(x_741); -lean_dec(x_739); -x_742 = lean_unsigned_to_nat(0u); -x_743 = l_Array_indexOfAux___at_Lean_Meta_getElimInfo___spec__1(x_1, x_4, x_742); -if (lean_obj_tag(x_743) == 0) +if (lean_obj_tag(x_740) == 0) { -lean_object* x_744; +lean_object* x_743; lean_dec(x_741); lean_dec(x_11); lean_dec(x_10); @@ -21230,22 +21227,25 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); lean_dec(x_1); -x_744 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_744, 0, x_3); -lean_ctor_set(x_744, 1, x_12); -return x_744; +x_743 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_743, 0, x_3); +lean_ctor_set(x_743, 1, x_12); +return x_743; } else { -lean_object* x_745; lean_object* x_746; -x_745 = lean_ctor_get(x_743, 0); +lean_object* x_744; lean_object* x_745; lean_object* x_746; +x_744 = lean_ctor_get(x_741, 0); +lean_inc(x_744); +lean_dec(x_741); +x_745 = lean_ctor_get(x_740, 0); lean_inc(x_745); -lean_dec(x_743); +lean_dec(x_740); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_746 = l_Lean_Meta_isInductivePredicate(x_741, x_8, x_9, x_10, x_11, x_12); +x_746 = l_Lean_Meta_isInductivePredicate(x_744, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_746) == 0) { lean_object* x_747; uint8_t x_748; diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c index 79591aa951..0cdb125bac 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c @@ -3234,340 +3234,342 @@ return x_411; } block_382: { -lean_object* x_10; +lean_object* x_10; lean_object* x_11; lean_dec(x_9); -x_10 = l_Lean_Expr_arrayLit_x3f(x_1); -if (lean_obj_tag(x_10) == 0) +x_10 = l_Lean_Expr_arrayLit_x3f(x_2); +x_11 = l_Lean_Expr_arrayLit_x3f(x_1); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_11 = lean_st_ref_get(x_7, x_8); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_dec(x_10); +x_12 = lean_st_ref_get(x_7, x_8); +x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_ctor_get(x_12, 0); +x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = lean_st_ref_get(x_7, x_13); -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_st_ref_get(x_7, x_14); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_17 = lean_ctor_get(x_15, 0); -x_18 = lean_ctor_get(x_15, 1); -x_19 = lean_ctor_get(x_17, 0); -lean_inc(x_19); -lean_dec(x_17); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_2); +x_21 = l_Lean_Meta_toCtorIfLit(x_2); +x_22 = l_Lean_Expr_constructorApp_x3f(x_20, x_21); lean_inc(x_1); -x_20 = l_Lean_Meta_toCtorIfLit(x_1); -x_21 = l_Lean_Expr_constructorApp_x3f(x_14, x_20); -if (lean_obj_tag(x_21) == 0) +x_23 = l_Lean_Meta_toCtorIfLit(x_1); +x_24 = l_Lean_Expr_constructorApp_x3f(x_15, x_23); +if (lean_obj_tag(x_24) == 0) { -lean_object* x_22; -lean_dec(x_19); -lean_free_object(x_15); +lean_object* x_25; +lean_dec(x_22); +lean_free_object(x_16); lean_inc(x_7); -x_22 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_18); -if (lean_obj_tag(x_22) == 0) +x_25 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_19); +if (lean_obj_tag(x_25) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_st_ref_get(x_7, x_24); -lean_dec(x_7); -x_26 = lean_ctor_get(x_25, 1); +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); lean_dec(x_25); -x_27 = lean_st_ref_take(x_3, x_26); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); -lean_inc(x_29); -lean_dec(x_27); -x_30 = lean_array_push(x_28, x_23); -x_31 = lean_st_ref_set(x_3, x_30, x_29); -x_32 = !lean_is_exclusive(x_31); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_31, 0); -lean_dec(x_33); -x_34 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -lean_ctor_set(x_31, 0, x_34); -return x_31; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_31, 1); -lean_inc(x_35); -lean_dec(x_31); -x_36 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_35); -return x_37; -} -} -else -{ -uint8_t x_38; +x_28 = lean_st_ref_get(x_7, x_27); lean_dec(x_7); -x_38 = !lean_is_exclusive(x_22); -if (x_38 == 0) +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +lean_dec(x_28); +x_30 = lean_st_ref_take(x_3, x_29); +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = lean_array_push(x_31, x_26); +x_34 = lean_st_ref_set(x_3, x_33, x_32); +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) { -return x_22; +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_34, 0); +lean_dec(x_36); +x_37 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +lean_ctor_set(x_34, 0, x_37); +return x_34; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_22, 0); -x_40 = lean_ctor_get(x_22, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_22); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 1); +lean_inc(x_38); +lean_dec(x_34); +x_39 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +return x_40; } } +else +{ +uint8_t x_41; +lean_dec(x_7); +x_41 = !lean_is_exclusive(x_25); +if (x_41 == 0) +{ +return x_25; } else { lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_21, 0); +x_42 = lean_ctor_get(x_25, 0); +x_43 = lean_ctor_get(x_25, 1); +lean_inc(x_43); lean_inc(x_42); -lean_dec(x_21); -lean_inc(x_2); -x_43 = l_Lean_Meta_toCtorIfLit(x_2); -x_44 = l_Lean_Expr_constructorApp_x3f(x_19, x_43); -if (lean_obj_tag(x_44) == 0) +lean_dec(x_25); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +else { lean_object* x_45; -lean_dec(x_42); -lean_free_object(x_15); +x_45 = lean_ctor_get(x_24, 0); +lean_inc(x_45); +lean_dec(x_24); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_46; +lean_dec(x_45); +lean_free_object(x_16); lean_inc(x_7); -x_45 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_18); -if (lean_obj_tag(x_45) == 0) +x_46 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_19); +if (lean_obj_tag(x_46) == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); -lean_dec(x_45); -x_48 = lean_st_ref_get(x_7, x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec(x_46); +x_49 = lean_st_ref_get(x_7, x_48); lean_dec(x_7); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = lean_st_ref_take(x_3, x_49); -x_51 = lean_ctor_get(x_50, 0); -lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); +x_51 = lean_st_ref_take(x_3, x_50); +x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); -lean_dec(x_50); -x_53 = lean_array_push(x_51, x_46); -x_54 = lean_st_ref_set(x_3, x_53, x_52); -x_55 = !lean_is_exclusive(x_54); -if (x_55 == 0) +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = lean_array_push(x_52, x_47); +x_55 = lean_st_ref_set(x_3, x_54, x_53); +x_56 = !lean_is_exclusive(x_55); +if (x_56 == 0) { -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_54, 0); -lean_dec(x_56); -x_57 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -lean_ctor_set(x_54, 0, x_57); -return x_54; +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_55, 0); +lean_dec(x_57); +x_58 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +lean_ctor_set(x_55, 0, x_58); +return x_55; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_54, 1); -lean_inc(x_58); -lean_dec(x_54); -x_59 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_55, 1); +lean_inc(x_59); +lean_dec(x_55); +x_60 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +return x_61; } } else { -uint8_t x_61; +uint8_t x_62; lean_dec(x_7); -x_61 = !lean_is_exclusive(x_45); -if (x_61 == 0) +x_62 = !lean_is_exclusive(x_46); +if (x_62 == 0) { -return x_45; +return x_46; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_45, 0); -x_63 = lean_ctor_get(x_45, 1); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_46, 0); +x_64 = lean_ctor_get(x_46, 1); +lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_45); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; +lean_dec(x_46); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_dec(x_2); lean_dec(x_1); -x_65 = lean_ctor_get(x_44, 0); -lean_inc(x_65); -lean_dec(x_44); -x_66 = lean_ctor_get(x_42, 0); +x_66 = lean_ctor_get(x_22, 0); lean_inc(x_66); -x_67 = lean_ctor_get(x_42, 1); +lean_dec(x_22); +x_67 = lean_ctor_get(x_45, 0); lean_inc(x_67); -lean_dec(x_42); -x_68 = lean_ctor_get(x_65, 0); +x_68 = lean_ctor_get(x_45, 1); lean_inc(x_68); -x_69 = lean_ctor_get(x_65, 1); +lean_dec(x_45); +x_69 = lean_ctor_get(x_66, 0); lean_inc(x_69); -lean_dec(x_65); -x_70 = lean_ctor_get(x_66, 0); +x_70 = lean_ctor_get(x_66, 1); lean_inc(x_70); -x_71 = lean_ctor_get(x_70, 0); -lean_inc(x_71); -lean_dec(x_70); -x_72 = lean_ctor_get(x_68, 0); -lean_inc(x_72); -lean_dec(x_68); -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -lean_dec(x_72); -x_74 = lean_name_eq(x_71, x_73); -lean_dec(x_73); -lean_dec(x_71); -if (x_74 == 0) -{ -lean_object* x_75; -lean_dec(x_69); -lean_dec(x_67); lean_dec(x_66); +x_71 = lean_ctor_get(x_67, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +lean_dec(x_71); +x_73 = lean_ctor_get(x_69, 0); +lean_inc(x_73); +lean_dec(x_69); +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +lean_dec(x_73); +x_75 = lean_name_eq(x_72, x_74); +lean_dec(x_74); +lean_dec(x_72); +if (x_75 == 0) +{ +lean_object* x_76; +lean_dec(x_70); +lean_dec(x_68); +lean_dec(x_67); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_75 = lean_box(0); -lean_ctor_set(x_15, 0, x_75); -return x_15; +x_76 = lean_box(0); +lean_ctor_set(x_16, 0, x_76); +return x_16; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; size_t x_82; lean_object* x_83; size_t x_84; lean_object* x_85; -lean_free_object(x_15); -x_76 = lean_ctor_get(x_66, 3); -lean_inc(x_76); -lean_dec(x_66); -x_77 = lean_array_get_size(x_69); -lean_inc(x_76); -x_78 = l_Array_toSubarray___rarg(x_69, x_76, x_77); -x_79 = lean_array_get_size(x_67); -x_80 = l_Array_toSubarray___rarg(x_67, x_76, x_79); -x_81 = lean_ctor_get(x_80, 2); -lean_inc(x_81); -x_82 = lean_usize_of_nat(x_81); +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; size_t x_83; lean_object* x_84; size_t x_85; lean_object* x_86; +lean_free_object(x_16); +x_77 = lean_ctor_get(x_67, 3); +lean_inc(x_77); +lean_dec(x_67); +x_78 = lean_array_get_size(x_70); +lean_inc(x_77); +x_79 = l_Array_toSubarray___rarg(x_70, x_77, x_78); +x_80 = lean_array_get_size(x_68); +x_81 = l_Array_toSubarray___rarg(x_68, x_77, x_80); +x_82 = lean_ctor_get(x_81, 2); +lean_inc(x_82); +x_83 = lean_usize_of_nat(x_82); +lean_dec(x_82); +x_84 = lean_ctor_get(x_81, 1); +lean_inc(x_84); +x_85 = lean_usize_of_nat(x_84); +lean_dec(x_84); +x_86 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___spec__1(x_81, x_83, x_85, x_79, x_3, x_4, x_5, x_6, x_7, x_19); lean_dec(x_81); -x_83 = lean_ctor_get(x_80, 1); -lean_inc(x_83); -x_84 = lean_usize_of_nat(x_83); -lean_dec(x_83); -x_85 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___spec__1(x_80, x_82, x_84, x_78, x_3, x_4, x_5, x_6, x_7, x_18); -lean_dec(x_80); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; -x_86 = lean_ctor_get(x_85, 0); -lean_inc(x_86); if (lean_obj_tag(x_86) == 0) { -uint8_t x_87; -x_87 = !lean_is_exclusive(x_85); -if (x_87 == 0) +lean_object* x_87; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +if (lean_obj_tag(x_87) == 0) { -lean_object* x_88; lean_object* x_89; -x_88 = lean_ctor_get(x_85, 0); -lean_dec(x_88); -x_89 = lean_box(0); -lean_ctor_set(x_85, 0, x_89); -return x_85; +uint8_t x_88; +x_88 = !lean_is_exclusive(x_86); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; +x_89 = lean_ctor_get(x_86, 0); +lean_dec(x_89); +x_90 = lean_box(0); +lean_ctor_set(x_86, 0, x_90); +return x_86; } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_85, 1); -lean_inc(x_90); -lean_dec(x_85); -x_91 = lean_box(0); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -return x_92; -} -} -else -{ -uint8_t x_93; +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_86, 1); +lean_inc(x_91); lean_dec(x_86); -x_93 = !lean_is_exclusive(x_85); -if (x_93 == 0) -{ -lean_object* x_94; lean_object* x_95; -x_94 = lean_ctor_get(x_85, 0); -lean_dec(x_94); -x_95 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -lean_ctor_set(x_85, 0, x_95); -return x_85; +x_92 = lean_box(0); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_91); +return x_93; +} } else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_85, 1); -lean_inc(x_96); -lean_dec(x_85); -x_97 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -x_98 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_96); -return x_98; +uint8_t x_94; +lean_dec(x_87); +x_94 = !lean_is_exclusive(x_86); +if (x_94 == 0) +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_86, 0); +lean_dec(x_95); +x_96 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +lean_ctor_set(x_86, 0, x_96); +return x_86; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_86, 1); +lean_inc(x_97); +lean_dec(x_86); +x_98 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_97); +return x_99; } } } else { -uint8_t x_99; -x_99 = !lean_is_exclusive(x_85); -if (x_99 == 0) +uint8_t x_100; +x_100 = !lean_is_exclusive(x_86); +if (x_100 == 0) { -return x_85; +return x_86; } else { -lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_100 = lean_ctor_get(x_85, 0); -x_101 = lean_ctor_get(x_85, 1); +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_86, 0); +x_102 = lean_ctor_get(x_86, 1); +lean_inc(x_102); lean_inc(x_101); -lean_inc(x_100); -lean_dec(x_85); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_100); -lean_ctor_set(x_102, 1, x_101); -return x_102; +lean_dec(x_86); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; } } } @@ -3576,318 +3578,318 @@ return x_102; } else { -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_103 = lean_ctor_get(x_15, 0); -x_104 = lean_ctor_get(x_15, 1); -lean_inc(x_104); -lean_inc(x_103); -lean_dec(x_15); -x_105 = lean_ctor_get(x_103, 0); +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_104 = lean_ctor_get(x_16, 0); +x_105 = lean_ctor_get(x_16, 1); lean_inc(x_105); -lean_dec(x_103); -lean_inc(x_1); -x_106 = l_Lean_Meta_toCtorIfLit(x_1); -x_107 = l_Lean_Expr_constructorApp_x3f(x_14, x_106); -if (lean_obj_tag(x_107) == 0) -{ -lean_object* x_108; -lean_dec(x_105); -lean_inc(x_7); -x_108 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_104); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -lean_dec(x_108); -x_111 = lean_st_ref_get(x_7, x_110); -lean_dec(x_7); -x_112 = lean_ctor_get(x_111, 1); -lean_inc(x_112); -lean_dec(x_111); -x_113 = lean_st_ref_take(x_3, x_112); -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); -x_115 = lean_ctor_get(x_113, 1); -lean_inc(x_115); -lean_dec(x_113); -x_116 = lean_array_push(x_114, x_109); -x_117 = lean_st_ref_set(x_3, x_116, x_115); -x_118 = lean_ctor_get(x_117, 1); -lean_inc(x_118); -if (lean_is_exclusive(x_117)) { - lean_ctor_release(x_117, 0); - lean_ctor_release(x_117, 1); - x_119 = x_117; -} else { - lean_dec_ref(x_117); - x_119 = lean_box(0); -} -x_120 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -if (lean_is_scalar(x_119)) { - x_121 = lean_alloc_ctor(0, 2, 0); -} else { - x_121 = x_119; -} -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_118); -return x_121; -} -else -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_7); -x_122 = lean_ctor_get(x_108, 0); -lean_inc(x_122); -x_123 = lean_ctor_get(x_108, 1); -lean_inc(x_123); -if (lean_is_exclusive(x_108)) { - lean_ctor_release(x_108, 0); - lean_ctor_release(x_108, 1); - x_124 = x_108; -} else { - lean_dec_ref(x_108); - x_124 = lean_box(0); -} -if (lean_is_scalar(x_124)) { - x_125 = lean_alloc_ctor(1, 2, 0); -} else { - x_125 = x_124; -} -lean_ctor_set(x_125, 0, x_122); -lean_ctor_set(x_125, 1, x_123); -return x_125; -} -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_107, 0); -lean_inc(x_126); -lean_dec(x_107); +lean_inc(x_104); +lean_dec(x_16); +x_106 = lean_ctor_get(x_104, 0); +lean_inc(x_106); +lean_dec(x_104); lean_inc(x_2); -x_127 = l_Lean_Meta_toCtorIfLit(x_2); -x_128 = l_Lean_Expr_constructorApp_x3f(x_105, x_127); -if (lean_obj_tag(x_128) == 0) +x_107 = l_Lean_Meta_toCtorIfLit(x_2); +x_108 = l_Lean_Expr_constructorApp_x3f(x_106, x_107); +lean_inc(x_1); +x_109 = l_Lean_Meta_toCtorIfLit(x_1); +x_110 = l_Lean_Expr_constructorApp_x3f(x_15, x_109); +if (lean_obj_tag(x_110) == 0) +{ +lean_object* x_111; +lean_dec(x_108); +lean_inc(x_7); +x_111 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_105); +if (lean_obj_tag(x_111) == 0) +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); +x_114 = lean_st_ref_get(x_7, x_113); +lean_dec(x_7); +x_115 = lean_ctor_get(x_114, 1); +lean_inc(x_115); +lean_dec(x_114); +x_116 = lean_st_ref_take(x_3, x_115); +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_116, 1); +lean_inc(x_118); +lean_dec(x_116); +x_119 = lean_array_push(x_117, x_112); +x_120 = lean_st_ref_set(x_3, x_119, x_118); +x_121 = lean_ctor_get(x_120, 1); +lean_inc(x_121); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_122 = x_120; +} else { + lean_dec_ref(x_120); + x_122 = lean_box(0); +} +x_123 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +if (lean_is_scalar(x_122)) { + x_124 = lean_alloc_ctor(0, 2, 0); +} else { + x_124 = x_122; +} +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_121); +return x_124; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_dec(x_7); +x_125 = lean_ctor_get(x_111, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_111, 1); +lean_inc(x_126); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_127 = x_111; +} else { + lean_dec_ref(x_111); + x_127 = lean_box(0); +} +if (lean_is_scalar(x_127)) { + x_128 = lean_alloc_ctor(1, 2, 0); +} else { + x_128 = x_127; +} +lean_ctor_set(x_128, 0, x_125); +lean_ctor_set(x_128, 1, x_126); +return x_128; +} +} +else { lean_object* x_129; -lean_dec(x_126); -lean_inc(x_7); -x_129 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_104); -if (lean_obj_tag(x_129) == 0) +x_129 = lean_ctor_get(x_110, 0); +lean_inc(x_129); +lean_dec(x_110); +if (lean_obj_tag(x_108) == 0) { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_129, 1); -lean_inc(x_131); +lean_object* x_130; lean_dec(x_129); -x_132 = lean_st_ref_get(x_7, x_131); +lean_inc(x_7); +x_130 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_105); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = lean_st_ref_get(x_7, x_132); lean_dec(x_7); -x_133 = lean_ctor_get(x_132, 1); -lean_inc(x_133); -lean_dec(x_132); -x_134 = lean_st_ref_take(x_3, x_133); -x_135 = lean_ctor_get(x_134, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_134, 1); +x_134 = lean_ctor_get(x_133, 1); +lean_inc(x_134); +lean_dec(x_133); +x_135 = lean_st_ref_take(x_3, x_134); +x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); -lean_dec(x_134); -x_137 = lean_array_push(x_135, x_130); -x_138 = lean_st_ref_set(x_3, x_137, x_136); -x_139 = lean_ctor_get(x_138, 1); -lean_inc(x_139); -if (lean_is_exclusive(x_138)) { - lean_ctor_release(x_138, 0); - lean_ctor_release(x_138, 1); - x_140 = x_138; +x_137 = lean_ctor_get(x_135, 1); +lean_inc(x_137); +lean_dec(x_135); +x_138 = lean_array_push(x_136, x_131); +x_139 = lean_st_ref_set(x_3, x_138, x_137); +x_140 = lean_ctor_get(x_139, 1); +lean_inc(x_140); +if (lean_is_exclusive(x_139)) { + lean_ctor_release(x_139, 0); + lean_ctor_release(x_139, 1); + x_141 = x_139; } else { - lean_dec_ref(x_138); - x_140 = lean_box(0); + lean_dec_ref(x_139); + x_141 = lean_box(0); } -x_141 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -if (lean_is_scalar(x_140)) { - x_142 = lean_alloc_ctor(0, 2, 0); +x_142 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +if (lean_is_scalar(x_141)) { + x_143 = lean_alloc_ctor(0, 2, 0); } else { - x_142 = x_140; + x_143 = x_141; } -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_139); -return x_142; +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_140); +return x_143; } else { -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_dec(x_7); -x_143 = lean_ctor_get(x_129, 0); -lean_inc(x_143); -x_144 = lean_ctor_get(x_129, 1); +x_144 = lean_ctor_get(x_130, 0); lean_inc(x_144); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - lean_ctor_release(x_129, 1); - x_145 = x_129; +x_145 = lean_ctor_get(x_130, 1); +lean_inc(x_145); +if (lean_is_exclusive(x_130)) { + lean_ctor_release(x_130, 0); + lean_ctor_release(x_130, 1); + x_146 = x_130; } else { - lean_dec_ref(x_129); - x_145 = lean_box(0); + lean_dec_ref(x_130); + x_146 = lean_box(0); } -if (lean_is_scalar(x_145)) { - x_146 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_146)) { + x_147 = lean_alloc_ctor(1, 2, 0); } else { - x_146 = x_145; + x_147 = x_146; } -lean_ctor_set(x_146, 0, x_143); -lean_ctor_set(x_146, 1, x_144); -return x_146; +lean_ctor_set(x_147, 0, x_144); +lean_ctor_set(x_147, 1, x_145); +return x_147; } } else { -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_dec(x_2); lean_dec(x_1); -x_147 = lean_ctor_get(x_128, 0); -lean_inc(x_147); -lean_dec(x_128); -x_148 = lean_ctor_get(x_126, 0); +x_148 = lean_ctor_get(x_108, 0); lean_inc(x_148); -x_149 = lean_ctor_get(x_126, 1); +lean_dec(x_108); +x_149 = lean_ctor_get(x_129, 0); lean_inc(x_149); -lean_dec(x_126); -x_150 = lean_ctor_get(x_147, 0); +x_150 = lean_ctor_get(x_129, 1); lean_inc(x_150); -x_151 = lean_ctor_get(x_147, 1); +lean_dec(x_129); +x_151 = lean_ctor_get(x_148, 0); lean_inc(x_151); -lean_dec(x_147); -x_152 = lean_ctor_get(x_148, 0); +x_152 = lean_ctor_get(x_148, 1); lean_inc(x_152); -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -lean_dec(x_152); -x_154 = lean_ctor_get(x_150, 0); -lean_inc(x_154); -lean_dec(x_150); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -lean_dec(x_154); -x_156 = lean_name_eq(x_153, x_155); -lean_dec(x_155); -lean_dec(x_153); -if (x_156 == 0) -{ -lean_object* x_157; lean_object* x_158; -lean_dec(x_151); -lean_dec(x_149); lean_dec(x_148); +x_153 = lean_ctor_get(x_149, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_153, 0); +lean_inc(x_154); +lean_dec(x_153); +x_155 = lean_ctor_get(x_151, 0); +lean_inc(x_155); +lean_dec(x_151); +x_156 = lean_ctor_get(x_155, 0); +lean_inc(x_156); +lean_dec(x_155); +x_157 = lean_name_eq(x_154, x_156); +lean_dec(x_156); +lean_dec(x_154); +if (x_157 == 0) +{ +lean_object* x_158; lean_object* x_159; +lean_dec(x_152); +lean_dec(x_150); +lean_dec(x_149); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_157 = lean_box(0); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_158, 1, x_104); -return x_158; +x_158 = lean_box(0); +x_159 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_105); +return x_159; } else { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; size_t x_165; lean_object* x_166; size_t x_167; lean_object* x_168; -x_159 = lean_ctor_get(x_148, 3); -lean_inc(x_159); -lean_dec(x_148); -x_160 = lean_array_get_size(x_151); -lean_inc(x_159); -x_161 = l_Array_toSubarray___rarg(x_151, x_159, x_160); -x_162 = lean_array_get_size(x_149); -x_163 = l_Array_toSubarray___rarg(x_149, x_159, x_162); -x_164 = lean_ctor_get(x_163, 2); -lean_inc(x_164); -x_165 = lean_usize_of_nat(x_164); +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; size_t x_166; lean_object* x_167; size_t x_168; lean_object* x_169; +x_160 = lean_ctor_get(x_149, 3); +lean_inc(x_160); +lean_dec(x_149); +x_161 = lean_array_get_size(x_152); +lean_inc(x_160); +x_162 = l_Array_toSubarray___rarg(x_152, x_160, x_161); +x_163 = lean_array_get_size(x_150); +x_164 = l_Array_toSubarray___rarg(x_150, x_160, x_163); +x_165 = lean_ctor_get(x_164, 2); +lean_inc(x_165); +x_166 = lean_usize_of_nat(x_165); +lean_dec(x_165); +x_167 = lean_ctor_get(x_164, 1); +lean_inc(x_167); +x_168 = lean_usize_of_nat(x_167); +lean_dec(x_167); +x_169 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___spec__1(x_164, x_166, x_168, x_162, x_3, x_4, x_5, x_6, x_7, x_105); lean_dec(x_164); -x_166 = lean_ctor_get(x_163, 1); -lean_inc(x_166); -x_167 = lean_usize_of_nat(x_166); -lean_dec(x_166); -x_168 = l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___spec__1(x_163, x_165, x_167, x_161, x_3, x_4, x_5, x_6, x_7, x_104); -lean_dec(x_163); -if (lean_obj_tag(x_168) == 0) -{ -lean_object* x_169; -x_169 = lean_ctor_get(x_168, 0); -lean_inc(x_169); if (lean_obj_tag(x_169) == 0) { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -x_170 = lean_ctor_get(x_168, 1); +lean_object* x_170; +x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - lean_ctor_release(x_168, 1); - x_171 = x_168; +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_171 = lean_ctor_get(x_169, 1); +lean_inc(x_171); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_172 = x_169; } else { - lean_dec_ref(x_168); - x_171 = lean_box(0); + lean_dec_ref(x_169); + x_172 = lean_box(0); } -x_172 = lean_box(0); -if (lean_is_scalar(x_171)) { - x_173 = lean_alloc_ctor(0, 2, 0); +x_173 = lean_box(0); +if (lean_is_scalar(x_172)) { + x_174 = lean_alloc_ctor(0, 2, 0); } else { - x_173 = x_171; + x_174 = x_172; } -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_170); -return x_173; +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_171); +return x_174; } else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -lean_dec(x_169); -x_174 = lean_ctor_get(x_168, 1); -lean_inc(x_174); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - lean_ctor_release(x_168, 1); - x_175 = x_168; +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +lean_dec(x_170); +x_175 = lean_ctor_get(x_169, 1); +lean_inc(x_175); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_176 = x_169; } else { - lean_dec_ref(x_168); - x_175 = lean_box(0); + lean_dec_ref(x_169); + x_176 = lean_box(0); } -x_176 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -if (lean_is_scalar(x_175)) { - x_177 = lean_alloc_ctor(0, 2, 0); +x_177 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +if (lean_is_scalar(x_176)) { + x_178 = lean_alloc_ctor(0, 2, 0); } else { - x_177 = x_175; + x_178 = x_176; } -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_174); -return x_177; +lean_ctor_set(x_178, 0, x_177); +lean_ctor_set(x_178, 1, x_175); +return x_178; } } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; -x_178 = lean_ctor_get(x_168, 0); -lean_inc(x_178); -x_179 = lean_ctor_get(x_168, 1); +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +x_179 = lean_ctor_get(x_169, 0); lean_inc(x_179); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - lean_ctor_release(x_168, 1); - x_180 = x_168; +x_180 = lean_ctor_get(x_169, 1); +lean_inc(x_180); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_181 = x_169; } else { - lean_dec_ref(x_168); - x_180 = lean_box(0); + lean_dec_ref(x_169); + x_181 = lean_box(0); } -if (lean_is_scalar(x_180)) { - x_181 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_181)) { + x_182 = lean_alloc_ctor(1, 2, 0); } else { - x_181 = x_180; + x_182 = x_181; } -lean_ctor_set(x_181, 0, x_178); -lean_ctor_set(x_181, 1, x_179); -return x_181; +lean_ctor_set(x_182, 0, x_179); +lean_ctor_set(x_182, 1, x_180); +return x_182; } } } @@ -3896,15 +3898,14 @@ return x_181; } else { -lean_object* x_182; lean_object* x_183; -x_182 = lean_ctor_get(x_10, 0); -lean_inc(x_182); -lean_dec(x_10); -x_183 = l_Lean_Expr_arrayLit_x3f(x_2); -if (lean_obj_tag(x_183) == 0) +lean_object* x_183; +x_183 = lean_ctor_get(x_11, 0); +lean_inc(x_183); +lean_dec(x_11); +if (lean_obj_tag(x_10) == 0) { lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; uint8_t x_189; -lean_dec(x_182); +lean_dec(x_183); x_184 = lean_st_ref_get(x_7, x_8); x_185 = lean_ctor_get(x_184, 0); lean_inc(x_185); @@ -3918,103 +3919,103 @@ x_188 = lean_st_ref_get(x_7, x_186); x_189 = !lean_is_exclusive(x_188); if (x_189 == 0) { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; x_190 = lean_ctor_get(x_188, 0); x_191 = lean_ctor_get(x_188, 1); x_192 = lean_ctor_get(x_190, 0); lean_inc(x_192); lean_dec(x_190); +lean_inc(x_2); +x_193 = l_Lean_Meta_toCtorIfLit(x_2); +x_194 = l_Lean_Expr_constructorApp_x3f(x_192, x_193); lean_inc(x_1); -x_193 = l_Lean_Meta_toCtorIfLit(x_1); -x_194 = l_Lean_Expr_constructorApp_x3f(x_187, x_193); -if (lean_obj_tag(x_194) == 0) +x_195 = l_Lean_Meta_toCtorIfLit(x_1); +x_196 = l_Lean_Expr_constructorApp_x3f(x_187, x_195); +if (lean_obj_tag(x_196) == 0) { -lean_object* x_195; -lean_dec(x_192); +lean_object* x_197; +lean_dec(x_194); lean_free_object(x_188); lean_inc(x_7); -x_195 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_191); -if (lean_obj_tag(x_195) == 0) +x_197 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_191); +if (lean_obj_tag(x_197) == 0) { -lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; -x_196 = lean_ctor_get(x_195, 0); -lean_inc(x_196); -x_197 = lean_ctor_get(x_195, 1); -lean_inc(x_197); -lean_dec(x_195); -x_198 = lean_st_ref_get(x_7, x_197); -lean_dec(x_7); -x_199 = lean_ctor_get(x_198, 1); +lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; +x_198 = lean_ctor_get(x_197, 0); +lean_inc(x_198); +x_199 = lean_ctor_get(x_197, 1); lean_inc(x_199); -lean_dec(x_198); -x_200 = lean_st_ref_take(x_3, x_199); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -x_202 = lean_ctor_get(x_200, 1); -lean_inc(x_202); -lean_dec(x_200); -x_203 = lean_array_push(x_201, x_196); -x_204 = lean_st_ref_set(x_3, x_203, x_202); -x_205 = !lean_is_exclusive(x_204); -if (x_205 == 0) -{ -lean_object* x_206; lean_object* x_207; -x_206 = lean_ctor_get(x_204, 0); -lean_dec(x_206); -x_207 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -lean_ctor_set(x_204, 0, x_207); -return x_204; -} -else -{ -lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_208 = lean_ctor_get(x_204, 1); -lean_inc(x_208); -lean_dec(x_204); -x_209 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -x_210 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_208); -return x_210; -} -} -else -{ -uint8_t x_211; +lean_dec(x_197); +x_200 = lean_st_ref_get(x_7, x_199); lean_dec(x_7); -x_211 = !lean_is_exclusive(x_195); -if (x_211 == 0) +x_201 = lean_ctor_get(x_200, 1); +lean_inc(x_201); +lean_dec(x_200); +x_202 = lean_st_ref_take(x_3, x_201); +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_202, 1); +lean_inc(x_204); +lean_dec(x_202); +x_205 = lean_array_push(x_203, x_198); +x_206 = lean_st_ref_set(x_3, x_205, x_204); +x_207 = !lean_is_exclusive(x_206); +if (x_207 == 0) { -return x_195; +lean_object* x_208; lean_object* x_209; +x_208 = lean_ctor_get(x_206, 0); +lean_dec(x_208); +x_209 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +lean_ctor_set(x_206, 0, x_209); +return x_206; } else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_212 = lean_ctor_get(x_195, 0); -x_213 = lean_ctor_get(x_195, 1); -lean_inc(x_213); -lean_inc(x_212); -lean_dec(x_195); -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_212); -lean_ctor_set(x_214, 1, x_213); -return x_214; -} +lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_210 = lean_ctor_get(x_206, 1); +lean_inc(x_210); +lean_dec(x_206); +x_211 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_210); +return x_212; } } else { -lean_object* x_215; lean_object* x_216; lean_object* x_217; -x_215 = lean_ctor_get(x_194, 0); +uint8_t x_213; +lean_dec(x_7); +x_213 = !lean_is_exclusive(x_197); +if (x_213 == 0) +{ +return x_197; +} +else +{ +lean_object* x_214; lean_object* x_215; lean_object* x_216; +x_214 = lean_ctor_get(x_197, 0); +x_215 = lean_ctor_get(x_197, 1); lean_inc(x_215); -lean_dec(x_194); -lean_inc(x_2); -x_216 = l_Lean_Meta_toCtorIfLit(x_2); -x_217 = l_Lean_Expr_constructorApp_x3f(x_192, x_216); -if (lean_obj_tag(x_217) == 0) +lean_inc(x_214); +lean_dec(x_197); +x_216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_216, 0, x_214); +lean_ctor_set(x_216, 1, x_215); +return x_216; +} +} +} +else +{ +lean_object* x_217; +x_217 = lean_ctor_get(x_196, 0); +lean_inc(x_217); +lean_dec(x_196); +if (lean_obj_tag(x_194) == 0) { lean_object* x_218; -lean_dec(x_215); +lean_dec(x_217); lean_free_object(x_188); lean_inc(x_7); x_218 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_191); @@ -4091,14 +4092,14 @@ else lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; uint8_t x_247; lean_dec(x_2); lean_dec(x_1); -x_238 = lean_ctor_get(x_217, 0); +x_238 = lean_ctor_get(x_194, 0); lean_inc(x_238); -lean_dec(x_217); -x_239 = lean_ctor_get(x_215, 0); +lean_dec(x_194); +x_239 = lean_ctor_get(x_217, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_215, 1); +x_240 = lean_ctor_get(x_217, 1); lean_inc(x_240); -lean_dec(x_215); +lean_dec(x_217); x_241 = lean_ctor_get(x_238, 0); lean_inc(x_241); x_242 = lean_ctor_get(x_238, 1); @@ -4241,7 +4242,7 @@ return x_275; } else { -lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; x_276 = lean_ctor_get(x_188, 0); x_277 = lean_ctor_get(x_188, 1); lean_inc(x_277); @@ -4250,95 +4251,95 @@ lean_dec(x_188); x_278 = lean_ctor_get(x_276, 0); lean_inc(x_278); lean_dec(x_276); +lean_inc(x_2); +x_279 = l_Lean_Meta_toCtorIfLit(x_2); +x_280 = l_Lean_Expr_constructorApp_x3f(x_278, x_279); lean_inc(x_1); -x_279 = l_Lean_Meta_toCtorIfLit(x_1); -x_280 = l_Lean_Expr_constructorApp_x3f(x_187, x_279); +x_281 = l_Lean_Meta_toCtorIfLit(x_1); +x_282 = l_Lean_Expr_constructorApp_x3f(x_187, x_281); +if (lean_obj_tag(x_282) == 0) +{ +lean_object* x_283; +lean_dec(x_280); +lean_inc(x_7); +x_283 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_277); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_283, 1); +lean_inc(x_285); +lean_dec(x_283); +x_286 = lean_st_ref_get(x_7, x_285); +lean_dec(x_7); +x_287 = lean_ctor_get(x_286, 1); +lean_inc(x_287); +lean_dec(x_286); +x_288 = lean_st_ref_take(x_3, x_287); +x_289 = lean_ctor_get(x_288, 0); +lean_inc(x_289); +x_290 = lean_ctor_get(x_288, 1); +lean_inc(x_290); +lean_dec(x_288); +x_291 = lean_array_push(x_289, x_284); +x_292 = lean_st_ref_set(x_3, x_291, x_290); +x_293 = lean_ctor_get(x_292, 1); +lean_inc(x_293); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + lean_ctor_release(x_292, 1); + x_294 = x_292; +} else { + lean_dec_ref(x_292); + x_294 = lean_box(0); +} +x_295 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; +if (lean_is_scalar(x_294)) { + x_296 = lean_alloc_ctor(0, 2, 0); +} else { + x_296 = x_294; +} +lean_ctor_set(x_296, 0, x_295); +lean_ctor_set(x_296, 1, x_293); +return x_296; +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_dec(x_7); +x_297 = lean_ctor_get(x_283, 0); +lean_inc(x_297); +x_298 = lean_ctor_get(x_283, 1); +lean_inc(x_298); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_299 = x_283; +} else { + lean_dec_ref(x_283); + x_299 = lean_box(0); +} +if (lean_is_scalar(x_299)) { + x_300 = lean_alloc_ctor(1, 2, 0); +} else { + x_300 = x_299; +} +lean_ctor_set(x_300, 0, x_297); +lean_ctor_set(x_300, 1, x_298); +return x_300; +} +} +else +{ +lean_object* x_301; +x_301 = lean_ctor_get(x_282, 0); +lean_inc(x_301); +lean_dec(x_282); if (lean_obj_tag(x_280) == 0) { -lean_object* x_281; -lean_dec(x_278); -lean_inc(x_7); -x_281 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_277); -if (lean_obj_tag(x_281) == 0) -{ -lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_282 = lean_ctor_get(x_281, 0); -lean_inc(x_282); -x_283 = lean_ctor_get(x_281, 1); -lean_inc(x_283); -lean_dec(x_281); -x_284 = lean_st_ref_get(x_7, x_283); -lean_dec(x_7); -x_285 = lean_ctor_get(x_284, 1); -lean_inc(x_285); -lean_dec(x_284); -x_286 = lean_st_ref_take(x_3, x_285); -x_287 = lean_ctor_get(x_286, 0); -lean_inc(x_287); -x_288 = lean_ctor_get(x_286, 1); -lean_inc(x_288); -lean_dec(x_286); -x_289 = lean_array_push(x_287, x_282); -x_290 = lean_st_ref_set(x_3, x_289, x_288); -x_291 = lean_ctor_get(x_290, 1); -lean_inc(x_291); -if (lean_is_exclusive(x_290)) { - lean_ctor_release(x_290, 0); - lean_ctor_release(x_290, 1); - x_292 = x_290; -} else { - lean_dec_ref(x_290); - x_292 = lean_box(0); -} -x_293 = l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_simpHs_simpEq___closed__1; -if (lean_is_scalar(x_292)) { - x_294 = lean_alloc_ctor(0, 2, 0); -} else { - x_294 = x_292; -} -lean_ctor_set(x_294, 0, x_293); -lean_ctor_set(x_294, 1, x_291); -return x_294; -} -else -{ -lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -lean_dec(x_7); -x_295 = lean_ctor_get(x_281, 0); -lean_inc(x_295); -x_296 = lean_ctor_get(x_281, 1); -lean_inc(x_296); -if (lean_is_exclusive(x_281)) { - lean_ctor_release(x_281, 0); - lean_ctor_release(x_281, 1); - x_297 = x_281; -} else { - lean_dec_ref(x_281); - x_297 = lean_box(0); -} -if (lean_is_scalar(x_297)) { - x_298 = lean_alloc_ctor(1, 2, 0); -} else { - x_298 = x_297; -} -lean_ctor_set(x_298, 0, x_295); -lean_ctor_set(x_298, 1, x_296); -return x_298; -} -} -else -{ -lean_object* x_299; lean_object* x_300; lean_object* x_301; -x_299 = lean_ctor_get(x_280, 0); -lean_inc(x_299); -lean_dec(x_280); -lean_inc(x_2); -x_300 = l_Lean_Meta_toCtorIfLit(x_2); -x_301 = l_Lean_Expr_constructorApp_x3f(x_278, x_300); -if (lean_obj_tag(x_301) == 0) -{ lean_object* x_302; -lean_dec(x_299); +lean_dec(x_301); lean_inc(x_7); x_302 = l_Lean_Meta_mkEq(x_1, x_2, x_4, x_5, x_6, x_7, x_277); if (lean_obj_tag(x_302) == 0) @@ -4413,14 +4414,14 @@ else lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_dec(x_2); lean_dec(x_1); -x_320 = lean_ctor_get(x_301, 0); +x_320 = lean_ctor_get(x_280, 0); lean_inc(x_320); -lean_dec(x_301); -x_321 = lean_ctor_get(x_299, 0); +lean_dec(x_280); +x_321 = lean_ctor_get(x_301, 0); lean_inc(x_321); -x_322 = lean_ctor_get(x_299, 1); +x_322 = lean_ctor_get(x_301, 1); lean_inc(x_322); -lean_dec(x_299); +lean_dec(x_301); x_323 = lean_ctor_get(x_320, 0); lean_inc(x_323); x_324 = lean_ctor_get(x_320, 1); @@ -4564,12 +4565,12 @@ else lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_dec(x_2); lean_dec(x_1); -x_355 = lean_ctor_get(x_183, 0); +x_355 = lean_ctor_get(x_10, 0); lean_inc(x_355); -lean_dec(x_183); -x_356 = lean_ctor_get(x_182, 1); +lean_dec(x_10); +x_356 = lean_ctor_get(x_183, 1); lean_inc(x_356); -lean_dec(x_182); +lean_dec(x_183); x_357 = lean_ctor_get(x_355, 1); lean_inc(x_357); lean_dec(x_355); diff --git a/stage0/stdlib/Lean/Meta/SizeOf.c b/stage0/stdlib/Lean/Meta/SizeOf.c index d16e89c6c8..06cac0bf3d 100644 --- a/stage0/stdlib/Lean/Meta/SizeOf.c +++ b/stage0/stdlib/Lean/Meta/SizeOf.c @@ -7396,56 +7396,56 @@ lean_inc(x_2); x_18 = l_Lean_Meta_whnfI(x_2, x_6, x_7, x_8, x_9, x_17); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); -x_21 = l_Lean_Expr_natAdd_x3f(x_16); -lean_dec(x_16); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_21 = l_Lean_Expr_natAdd_x3f(x_19); lean_dec(x_19); +x_22 = l_Lean_Expr_natAdd_x3f(x_16); +lean_dec(x_16); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_21); lean_dec(x_3); -x_22 = l_Lean_indentExpr(x_1); -x_23 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; -x_24 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_22); -x_25 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__4; -x_26 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_indentExpr(x_2); -x_28 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -x_29 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__9; -x_30 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg(x_30, x_5, x_6, x_7, x_8, x_9, x_20); +x_23 = l_Lean_indentExpr(x_1); +x_24 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; +x_25 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__4; +x_27 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = l_Lean_indentExpr(x_2); +x_29 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__9; +x_31 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg(x_31, x_5, x_6, x_7, x_8, x_9, x_20); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_31; +return x_32; } else { -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_21, 0); -lean_inc(x_32); -lean_dec(x_21); -x_33 = l_Lean_Expr_natAdd_x3f(x_19); -lean_dec(x_19); -if (lean_obj_tag(x_33) == 0) +lean_object* x_33; +x_33 = lean_ctor_get(x_22, 0); +lean_inc(x_33); +lean_dec(x_22); +if (lean_obj_tag(x_21) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_32); +lean_dec(x_33); lean_dec(x_3); x_34 = l_Lean_indentExpr(x_1); x_35 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; @@ -7477,14 +7477,14 @@ else lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_dec(x_2); lean_dec(x_1); -x_44 = lean_ctor_get(x_33, 0); +x_44 = lean_ctor_get(x_21, 0); lean_inc(x_44); -lean_dec(x_33); -x_45 = lean_ctor_get(x_32, 0); +lean_dec(x_21); +x_45 = lean_ctor_get(x_33, 0); lean_inc(x_45); -x_46 = lean_ctor_get(x_32, 1); +x_46 = lean_ctor_get(x_33, 1); lean_inc(x_46); -lean_dec(x_32); +lean_dec(x_33); x_47 = lean_ctor_get(x_44, 0); lean_inc(x_47); x_48 = lean_ctor_get(x_44, 1); @@ -12219,55 +12219,55 @@ lean_inc(x_2); x_17 = l_Lean_Meta_whnfI(x_2, x_5, x_6, x_7, x_8, x_16); if (lean_obj_tag(x_17) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l_Lean_Expr_natAdd_x3f(x_15); -lean_dec(x_15); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_20 = l_Lean_Expr_natAdd_x3f(x_18); lean_dec(x_18); -x_21 = l_Lean_indentExpr(x_1); -x_22 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; -x_23 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -x_24 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__4; -x_25 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_indentExpr(x_2); -x_27 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__9; -x_29 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg(x_29, x_4, x_5, x_6, x_7, x_8, x_19); +x_21 = l_Lean_Expr_natAdd_x3f(x_15); +lean_dec(x_15); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_20); +x_22 = l_Lean_indentExpr(x_1); +x_23 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; +x_24 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__4; +x_26 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Lean_indentExpr(x_2); +x_28 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__9; +x_30 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg(x_30, x_4, x_5, x_6, x_7, x_8, x_19); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_30; +return x_31; } else { -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_20, 0); -lean_inc(x_31); -lean_dec(x_20); -x_32 = l_Lean_Expr_natAdd_x3f(x_18); -lean_dec(x_18); -if (lean_obj_tag(x_32) == 0) +lean_object* x_32; +x_32 = lean_ctor_get(x_21, 0); +lean_inc(x_32); +lean_dec(x_21); +if (lean_obj_tag(x_20) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_31); +lean_dec(x_32); x_33 = l_Lean_indentExpr(x_1); x_34 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___lambda__1___closed__2; x_35 = lean_alloc_ctor(10, 2, 0); @@ -12298,14 +12298,14 @@ else lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_2); lean_dec(x_1); -x_43 = lean_ctor_get(x_32, 0); +x_43 = lean_ctor_get(x_20, 0); lean_inc(x_43); -lean_dec(x_32); -x_44 = lean_ctor_get(x_31, 0); +lean_dec(x_20); +x_44 = lean_ctor_get(x_32, 0); lean_inc(x_44); -x_45 = lean_ctor_get(x_31, 1); +x_45 = lean_ctor_get(x_32, 1); lean_inc(x_45); -lean_dec(x_31); +lean_dec(x_32); x_46 = lean_ctor_get(x_43, 0); lean_inc(x_46); x_47 = lean_ctor_get(x_43, 1); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Injection.c b/stage0/stdlib/Lean/Meta/Tactic/Injection.c index c25354b343..520a2b8714 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Injection.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Injection.c @@ -560,7 +560,7 @@ lean_inc(x_1); x_33 = l_Lean_Meta_getMVarType(x_1, x_4, x_5, x_6, x_7, x_32); if (lean_obj_tag(x_33) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); @@ -576,51 +576,49 @@ x_39 = lean_ctor_get(x_37, 0); lean_inc(x_39); lean_dec(x_37); lean_inc(x_39); -x_40 = l_Lean_Expr_isConstructorApp_x3f(x_39, x_28); +x_40 = l_Lean_Expr_isConstructorApp_x3f(x_39, x_31); +lean_dec(x_31); +x_41 = l_Lean_Expr_isConstructorApp_x3f(x_39, x_28); lean_dec(x_28); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_40); +lean_dec(x_34); +lean_dec(x_3); +x_42 = l_Lean_Meta_injectionCore___lambda__1___closed__8; +x_43 = lean_box(0); +x_44 = l_Lean_Meta_throwTacticEx___rarg(x_2, x_1, x_42, x_43, x_4, x_5, x_6, x_7, x_38); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +return x_44; +} +else +{ if (lean_obj_tag(x_40) == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_39); +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_41); lean_dec(x_34); -lean_dec(x_31); lean_dec(x_3); -x_41 = l_Lean_Meta_injectionCore___lambda__1___closed__8; -x_42 = lean_box(0); -x_43 = l_Lean_Meta_throwTacticEx___rarg(x_2, x_1, x_41, x_42, x_4, x_5, x_6, x_7, x_38); +x_45 = l_Lean_Meta_injectionCore___lambda__1___closed__8; +x_46 = lean_box(0); +x_47 = l_Lean_Meta_throwTacticEx___rarg(x_2, x_1, x_45, x_46, x_4, x_5, x_6, x_7, x_38); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -return x_43; +return x_47; } else { -lean_object* x_44; lean_object* x_45; -x_44 = lean_ctor_get(x_40, 0); -lean_inc(x_44); -lean_dec(x_40); -x_45 = l_Lean_Expr_isConstructorApp_x3f(x_39, x_31); -lean_dec(x_31); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_44); -lean_dec(x_34); -lean_dec(x_3); -x_46 = l_Lean_Meta_injectionCore___lambda__1___closed__8; -x_47 = lean_box(0); -x_48 = l_Lean_Meta_throwTacticEx___rarg(x_2, x_1, x_46, x_47, x_4, x_5, x_6, x_7, x_38); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -return x_48; -} -else -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_45, 0); +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_41, 0); +lean_inc(x_48); +lean_dec(x_41); +x_49 = lean_ctor_get(x_40, 0); lean_inc(x_49); -lean_dec(x_45); +lean_dec(x_40); lean_inc(x_3); x_50 = l_Lean_mkFVar(x_3); lean_inc(x_7); @@ -636,7 +634,7 @@ lean_inc(x_52); x_53 = lean_ctor_get(x_51, 1); lean_inc(x_53); lean_dec(x_51); -x_54 = lean_ctor_get(x_44, 0); +x_54 = lean_ctor_get(x_48, 0); lean_inc(x_54); x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); @@ -653,7 +651,7 @@ lean_dec(x_55); if (x_58 == 0) { lean_object* x_59; uint8_t x_60; -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_3); lean_dec(x_2); x_59 = l_Lean_Meta_assignExprMVar(x_1, x_52, x_4, x_5, x_6, x_7, x_53); @@ -760,8 +758,8 @@ lean_inc(x_85); x_86 = lean_ctor_get(x_84, 1); lean_inc(x_86); lean_dec(x_84); -lean_inc(x_44); -x_87 = l_Lean_Meta_getCtorNumPropFields(x_44, x_4, x_5, x_6, x_7, x_86); +lean_inc(x_48); +x_87 = l_Lean_Meta_getCtorNumPropFields(x_48, x_4, x_5, x_6, x_7, x_86); if (lean_obj_tag(x_87) == 0) { uint8_t x_88; @@ -770,9 +768,9 @@ if (x_88 == 0) { lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; x_89 = lean_ctor_get(x_87, 0); -x_90 = lean_ctor_get(x_44, 4); +x_90 = lean_ctor_get(x_48, 4); lean_inc(x_90); -lean_dec(x_44); +lean_dec(x_48); x_91 = lean_nat_sub(x_90, x_89); lean_dec(x_89); lean_dec(x_90); @@ -790,9 +788,9 @@ x_94 = lean_ctor_get(x_87, 1); lean_inc(x_94); lean_inc(x_93); lean_dec(x_87); -x_95 = lean_ctor_get(x_44, 4); +x_95 = lean_ctor_get(x_48, 4); lean_inc(x_95); -lean_dec(x_44); +lean_dec(x_48); x_96 = lean_nat_sub(x_95, x_93); lean_dec(x_93); lean_dec(x_95); @@ -809,7 +807,7 @@ else { uint8_t x_99; lean_dec(x_85); -lean_dec(x_44); +lean_dec(x_48); x_99 = !lean_is_exclusive(x_87); if (x_99 == 0) { @@ -833,7 +831,7 @@ return x_102; else { uint8_t x_103; -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -863,7 +861,7 @@ else uint8_t x_107; lean_dec(x_73); lean_dec(x_52); -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -895,7 +893,7 @@ else lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_dec(x_70); lean_dec(x_52); -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_3); x_111 = lean_ctor_get(x_69, 1); lean_inc(x_111); @@ -913,7 +911,7 @@ else { uint8_t x_115; lean_dec(x_52); -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -945,7 +943,7 @@ else { uint8_t x_119; lean_dec(x_52); -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -978,7 +976,7 @@ else { uint8_t x_123; lean_dec(x_49); -lean_dec(x_44); +lean_dec(x_48); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c index eb80d26b7c..813ac83832 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c @@ -7757,39 +7757,38 @@ x_25 = lean_st_ref_get(x_5, x_24); x_26 = !lean_is_exclusive(x_25); if (x_26 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_27 = lean_ctor_get(x_25, 0); x_28 = lean_ctor_get(x_25, 1); x_29 = lean_ctor_get(x_27, 0); lean_inc(x_29); lean_dec(x_27); lean_inc(x_29); -x_30 = l_Lean_Expr_constructorApp_x3f(x_29, x_20); -if (lean_obj_tag(x_30) == 0) +x_30 = l_Lean_Expr_constructorApp_x3f(x_29, x_23); +x_31 = l_Lean_Expr_constructorApp_x3f(x_29, x_20); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_31; -lean_dec(x_29); -lean_dec(x_23); +lean_object* x_32; +lean_dec(x_30); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_31 = lean_box(0); -lean_ctor_set(x_25, 0, x_31); +x_32 = lean_box(0); +lean_ctor_set(x_25, 0, x_32); return x_25; } else { -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_30, 0); -lean_inc(x_32); -lean_dec(x_30); -x_33 = l_Lean_Expr_constructorApp_x3f(x_29, x_23); -if (lean_obj_tag(x_33) == 0) +lean_object* x_33; +x_33 = lean_ctor_get(x_31, 0); +lean_inc(x_33); +lean_dec(x_31); +if (lean_obj_tag(x_30) == 0) { lean_object* x_34; -lean_dec(x_32); +lean_dec(x_33); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); @@ -7802,12 +7801,12 @@ return x_25; else { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_35 = lean_ctor_get(x_33, 0); +x_35 = lean_ctor_get(x_30, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = lean_ctor_get(x_32, 0); +lean_dec(x_30); +x_36 = lean_ctor_get(x_33, 0); lean_inc(x_36); -lean_dec(x_32); +lean_dec(x_33); x_37 = lean_ctor_get(x_35, 0); lean_inc(x_37); lean_dec(x_35); @@ -7896,7 +7895,7 @@ return x_25; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; x_56 = lean_ctor_get(x_25, 0); x_57 = lean_ctor_get(x_25, 1); lean_inc(x_57); @@ -7906,34 +7905,33 @@ x_58 = lean_ctor_get(x_56, 0); lean_inc(x_58); lean_dec(x_56); lean_inc(x_58); -x_59 = l_Lean_Expr_constructorApp_x3f(x_58, x_20); -if (lean_obj_tag(x_59) == 0) +x_59 = l_Lean_Expr_constructorApp_x3f(x_58, x_23); +x_60 = l_Lean_Expr_constructorApp_x3f(x_58, x_20); +if (lean_obj_tag(x_60) == 0) { -lean_object* x_60; lean_object* x_61; -lean_dec(x_58); -lean_dec(x_23); +lean_object* x_61; lean_object* x_62; +lean_dec(x_59); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_60 = lean_box(0); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_57); -return x_61; +x_61 = lean_box(0); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_57); +return x_62; } else { -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_59, 0); -lean_inc(x_62); -lean_dec(x_59); -x_63 = l_Lean_Expr_constructorApp_x3f(x_58, x_23); -if (lean_obj_tag(x_63) == 0) +lean_object* x_63; +x_63 = lean_ctor_get(x_60, 0); +lean_inc(x_63); +lean_dec(x_60); +if (lean_obj_tag(x_59) == 0) { lean_object* x_64; lean_object* x_65; -lean_dec(x_62); +lean_dec(x_63); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); @@ -7948,12 +7946,12 @@ return x_65; else { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; -x_66 = lean_ctor_get(x_63, 0); +x_66 = lean_ctor_get(x_59, 0); lean_inc(x_66); -lean_dec(x_63); -x_67 = lean_ctor_get(x_62, 0); +lean_dec(x_59); +x_67 = lean_ctor_get(x_63, 0); lean_inc(x_67); -lean_dec(x_62); +lean_dec(x_63); x_68 = lean_ctor_get(x_66, 0); lean_inc(x_68); lean_dec(x_66); @@ -8158,7 +8156,7 @@ lean_inc(x_2); x_114 = lean_whnf(x_14, x_2, x_3, x_4, x_5, x_113); if (lean_obj_tag(x_114) == 0) { -lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); x_116 = lean_ctor_get(x_114, 1); @@ -8181,38 +8179,37 @@ x_121 = lean_ctor_get(x_118, 0); lean_inc(x_121); lean_dec(x_118); lean_inc(x_121); -x_122 = l_Lean_Expr_constructorApp_x3f(x_121, x_112); -if (lean_obj_tag(x_122) == 0) +x_122 = l_Lean_Expr_constructorApp_x3f(x_121, x_115); +x_123 = l_Lean_Expr_constructorApp_x3f(x_121, x_112); +if (lean_obj_tag(x_123) == 0) { -lean_object* x_123; lean_object* x_124; -lean_dec(x_121); -lean_dec(x_115); +lean_object* x_124; lean_object* x_125; +lean_dec(x_122); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_123 = lean_box(0); +x_124 = lean_box(0); if (lean_is_scalar(x_120)) { - x_124 = lean_alloc_ctor(0, 2, 0); + x_125 = lean_alloc_ctor(0, 2, 0); } else { - x_124 = x_120; + x_125 = x_120; } -lean_ctor_set(x_124, 0, x_123); -lean_ctor_set(x_124, 1, x_119); -return x_124; +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_119); +return x_125; } else { -lean_object* x_125; lean_object* x_126; -x_125 = lean_ctor_get(x_122, 0); -lean_inc(x_125); -lean_dec(x_122); -x_126 = l_Lean_Expr_constructorApp_x3f(x_121, x_115); -if (lean_obj_tag(x_126) == 0) +lean_object* x_126; +x_126 = lean_ctor_get(x_123, 0); +lean_inc(x_126); +lean_dec(x_123); +if (lean_obj_tag(x_122) == 0) { lean_object* x_127; lean_object* x_128; -lean_dec(x_125); +lean_dec(x_126); lean_dec(x_2); lean_dec(x_5); lean_dec(x_4); @@ -8231,12 +8228,12 @@ return x_128; else { lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; -x_129 = lean_ctor_get(x_126, 0); +x_129 = lean_ctor_get(x_122, 0); lean_inc(x_129); -lean_dec(x_126); -x_130 = lean_ctor_get(x_125, 0); +lean_dec(x_122); +x_130 = lean_ctor_get(x_126, 0); lean_inc(x_130); -lean_dec(x_125); +lean_dec(x_126); x_131 = lean_ctor_get(x_129, 0); lean_inc(x_131); lean_dec(x_129); @@ -8478,7 +8475,7 @@ lean_inc(x_181); x_185 = lean_whnf(x_14, x_181, x_3, x_4, x_5, x_184); if (lean_obj_tag(x_185) == 0) { -lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; x_186 = lean_ctor_get(x_185, 0); lean_inc(x_186); x_187 = lean_ctor_get(x_185, 1); @@ -8501,38 +8498,37 @@ x_192 = lean_ctor_get(x_189, 0); lean_inc(x_192); lean_dec(x_189); lean_inc(x_192); -x_193 = l_Lean_Expr_constructorApp_x3f(x_192, x_183); -if (lean_obj_tag(x_193) == 0) +x_193 = l_Lean_Expr_constructorApp_x3f(x_192, x_186); +x_194 = l_Lean_Expr_constructorApp_x3f(x_192, x_183); +if (lean_obj_tag(x_194) == 0) { -lean_object* x_194; lean_object* x_195; -lean_dec(x_192); -lean_dec(x_186); +lean_object* x_195; lean_object* x_196; +lean_dec(x_193); lean_dec(x_181); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_194 = lean_box(0); +x_195 = lean_box(0); if (lean_is_scalar(x_191)) { - x_195 = lean_alloc_ctor(0, 2, 0); + x_196 = lean_alloc_ctor(0, 2, 0); } else { - x_195 = x_191; + x_196 = x_191; } -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_190); -return x_195; +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_190); +return x_196; } else { -lean_object* x_196; lean_object* x_197; -x_196 = lean_ctor_get(x_193, 0); -lean_inc(x_196); -lean_dec(x_193); -x_197 = l_Lean_Expr_constructorApp_x3f(x_192, x_186); -if (lean_obj_tag(x_197) == 0) +lean_object* x_197; +x_197 = lean_ctor_get(x_194, 0); +lean_inc(x_197); +lean_dec(x_194); +if (lean_obj_tag(x_193) == 0) { lean_object* x_198; lean_object* x_199; -lean_dec(x_196); +lean_dec(x_197); lean_dec(x_181); lean_dec(x_5); lean_dec(x_4); @@ -8551,12 +8547,12 @@ return x_199; else { lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; -x_200 = lean_ctor_get(x_197, 0); +x_200 = lean_ctor_get(x_193, 0); lean_inc(x_200); -lean_dec(x_197); -x_201 = lean_ctor_get(x_196, 0); +lean_dec(x_193); +x_201 = lean_ctor_get(x_197, 0); lean_inc(x_201); -lean_dec(x_196); +lean_dec(x_197); x_202 = lean_ctor_get(x_200, 0); lean_inc(x_202); lean_dec(x_200); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 0d9500086a..36348b260d 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -48,7 +48,6 @@ static lean_object* l_Lean_Parser_Command_structInstBinder___closed__10; static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_print___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_export_formatter___closed__6; lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -57,6 +56,7 @@ static lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__3; lean_object* l_Lean_Parser_nonReservedSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_def___closed__5; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__4; +static lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__4; static lean_object* l_Lean_Parser_Tactic_open___elambda__1___closed__6; @@ -68,7 +68,6 @@ static lean_object* l_Lean_Parser_Command_structure___closed__7; static lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__4; static lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_section___elambda__1___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6; static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structure_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange___closed__4; @@ -139,6 +138,7 @@ static lean_object* l_Lean_Parser_Command_optDefDeriving_formatter___closed__5; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_declRange___closed__3; static lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__17; static lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__16; @@ -150,6 +150,7 @@ static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structure_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_axiom___closed__5; +static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_formatter___closed__1; static lean_object* l_Lean_Parser_Command_section___closed__3; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__6; @@ -160,6 +161,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRang static lean_object* l_Lean_Parser_Command_mutual___closed__4; static lean_object* l_Lean_Parser_Command_nonrec___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_deriving___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_check_formatter___closed__1; @@ -177,7 +179,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__18; static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_extends___closed__2; static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__12; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__11; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__13; static lean_object* l_Lean_Parser_Command_open___closed__5; @@ -269,6 +270,7 @@ static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_example___closed__3; lean_object* l_Lean_Parser_ppGroup_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5; lean_object* l_Lean_Parser_Term_attrKind_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export___elambda__1___closed__22; static lean_object* l___regBuiltin_Lean_Parser_Command_terminationBy_parenthesizer___closed__2; @@ -277,10 +279,12 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_formatter___clo static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__7; static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_structCtor___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30; static lean_object* l_Lean_Parser_Command_structureTk___closed__4; static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__1; static lean_object* l_Lean_Parser_Command_declId___closed__5; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__13; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28; static lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter___closed__2; static lean_object* l_Lean_Parser_Command_theorem___closed__8; @@ -326,6 +330,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange___clos static lean_object* l_Lean_Parser_Command_declModifiers___closed__1; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__3; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__25; +static lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structCtor___closed__4; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__8; @@ -338,6 +343,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___c static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_bracketedBinder(uint8_t); static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__12; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15; lean_object* lean_name_mk_string(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__15; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving_parenthesizer(lean_object*); @@ -363,6 +369,7 @@ static lean_object* l_Lean_Parser_Command_abbrev___closed__10; static lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_declRange___closed__5; static lean_object* l_Lean_Parser_Command_whereStructField___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__22; static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__17; static lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__13; @@ -375,6 +382,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer___boxed( LEAN_EXPORT lean_object* l_Lean_Parser_Command_reduce; static lean_object* l_Lean_Parser_Command_variable_formatter___closed__3; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18; static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__18; static lean_object* l_Lean_Parser_Command_resolve__name_formatter___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_def_parenthesizer(lean_object*); @@ -392,6 +400,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding; static lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__9; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange(lean_object*); +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_declModifiers___closed__8; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthesizer___closed__2; @@ -441,7 +450,6 @@ static lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eval(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_universe_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__4; @@ -475,7 +483,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_parenthesizer___ static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_export_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeq___elambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structInstBinder_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__1; @@ -507,7 +514,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__9 static lean_object* l_Lean_Parser_Command_section___closed__5; static lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_declRange___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__18; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_structFields_formatter___closed__1; @@ -601,7 +607,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_openSimple_parenthesizer_ static lean_object* l_Lean_Parser_Command_check___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__15; static lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__3; @@ -628,7 +633,6 @@ lean_object* l_Lean_Parser_Term_binderTactic___elambda__1(lean_object*, lean_obj static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__9; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__2; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__16; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28; LEAN_EXPORT lean_object* l_Lean_Parser_Command_mutual_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__13; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -708,6 +712,7 @@ static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__3; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__8; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__11; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10; static lean_object* l_Lean_Parser_Tactic_open___closed__3; static lean_object* l_Lean_Parser_Command_visibility___closed__1; static lean_object* l_Lean_Parser_Term_precheckedQuot_formatter___closed__1; @@ -719,6 +724,7 @@ static lean_object* l_Lean_Parser_Command_openScoped___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValSimple___elambda__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer___closed__2; +static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__10; static lean_object* l_Lean_Parser_Command_namedPrio___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -736,7 +742,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_instance_parenthesiz static lean_object* l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structure_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_section___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3; static lean_object* l_Lean_Parser_Command_check___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__3; @@ -787,6 +792,7 @@ static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__6; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_set__option___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_example; @@ -818,7 +824,6 @@ static lean_object* l_Lean_Parser_Command_builtin__initialize_parenthesizer___cl static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_openHiding___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_builtin__initialize_parenthesizer(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15; static lean_object* l_Lean_Parser_Command_unsafe_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__10; @@ -827,6 +832,7 @@ static lean_object* l_Lean_Parser_Command_eraseAttr___elambda__1___closed__9; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29; static lean_object* l_Lean_Parser_Command_openSimple___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__1; @@ -836,10 +842,10 @@ static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___close static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__2; lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_ctor_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_openScoped_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__15; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__18; static lean_object* l_Lean_Parser_Term_precheckedQuot_formatter___closed__2; @@ -869,7 +875,7 @@ static lean_object* l_Lean_Parser_Command_example___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_attribute___closed__10; static lean_object* l_Lean_Parser_Command_inferMod___closed__9; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__6; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__11; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange___closed__6; @@ -922,6 +928,7 @@ static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structFields_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_variable_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_parenthesizer___closed__2; @@ -983,6 +990,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer___c static lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange___closed__7; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_unsafe_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__1; static lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__10; @@ -1067,6 +1075,7 @@ static lean_object* l_Lean_Parser_Command_check__failure___closed__3; static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_moduleDoc_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_eval___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_unsafe_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange___closed__7; @@ -1164,6 +1173,7 @@ static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_terminationBy_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_export_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_private___closed__7; static lean_object* l_Lean_Parser_Command_declSig___closed__1; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__11; @@ -1177,7 +1187,6 @@ static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__6; static lean_object* l_Lean_Parser_Command_instance___closed__9; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__8; static lean_object* l_Lean_Parser_Command_openHiding___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18; static lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_init__quot___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__20; @@ -1232,7 +1241,6 @@ static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__21; static lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_open___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__12; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5; static lean_object* l_Lean_Parser_Command_extends___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2; static lean_object* l_Lean_Parser_Command_deriving___closed__6; @@ -1254,6 +1262,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__11; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_open___closed__1; +static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___elambda__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange___closed__6; @@ -1325,6 +1334,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration(lean_obj static lean_object* l_Lean_Parser_Command_check___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__13; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange___closed__7; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Command_open_formatter___closed__1; @@ -1336,11 +1346,11 @@ static lean_object* l_Lean_Parser_Command_def_formatter___closed__7; static lean_object* l_Lean_Parser_Command_print___closed__7; static lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_eval_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13; static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__41; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__20; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eraseAttr___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_reduce___closed__5; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__29; @@ -1375,6 +1385,7 @@ static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed static lean_object* l___regBuiltin_Lean_Parser_Command_optDeclSig_formatter___closed__2; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__18; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23; lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_terminationBy___elambda__1___closed__6; @@ -1391,7 +1402,6 @@ static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__11; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_export___elambda__1___closed__20; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17; static lean_object* l_Lean_Parser_Command_private_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_print_formatter___closed__1; @@ -1407,6 +1417,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___c static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_protected_formatter___closed__2; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__10; @@ -1456,7 +1467,6 @@ static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__20; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4; lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__7; @@ -1505,10 +1515,11 @@ static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_visibility_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_in_parenthesizer(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_decreasingBy_formatter___closed__2; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403_(lean_object*); static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_initialize___closed__4; static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__4; @@ -1534,9 +1545,9 @@ static lean_object* l_Lean_Parser_Command_openHiding___closed__8; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__16; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__4; +static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__23; static lean_object* l_Lean_Parser_Command_inferMod___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1; static lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structFields_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_structure_formatter___closed__6; @@ -1587,6 +1598,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structExplicitBinder static lean_object* l_Lean_Parser_Command_openSimple___closed__1; static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structInstBinder; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__3; @@ -1606,6 +1618,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange___closed__ static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange___closed__2; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_formatter(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_check_declRange___closed__5; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__2; @@ -1614,7 +1627,6 @@ static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_attribute; static lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_terminationHintMany___closed__20; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openScoped_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1742,6 +1754,7 @@ static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__4; lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance_formatter___closed__2; static lean_object* l_Lean_Parser_Command_builtin__initialize_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__2; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_openDecl___closed__6; @@ -1761,13 +1774,13 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_structCtor_formatter___cl static lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__14; extern lean_object* l_Lean_Parser_Term_letDecl; static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__4; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationHintMany___elambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_end___elambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_decreasingBy_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_declRange___closed__7; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__4; lean_object* l_Lean_Parser_Command_commentBody_parenthesizer___boxed(lean_object*); @@ -1793,7 +1806,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving; LEAN_EXPORT lean_object* l_Lean_Parser_Command_export___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_declId_formatter___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9; static lean_object* l_Lean_Parser_Command_classTk_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_builtin__initialize_declRange___closed__3; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__10; @@ -1818,6 +1830,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationHintMany(lean_object*) static lean_object* l_Lean_Parser_Command_classTk___closed__1; static lean_object* l_Lean_Parser_Command_eval___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_parenthesizer___closed__2; @@ -1880,6 +1893,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_open_formatter(lean_obj static lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4; static lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_print___closed__3; static lean_object* l_Lean_Parser_Command_eraseAttr___elambda__1___closed__14; @@ -1889,7 +1903,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openSimple_formatter(lean_object* static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__16; static lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_example_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__6; static lean_object* l_Lean_Parser_Tactic_open_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structExplicitBinder; @@ -1922,7 +1935,6 @@ static lean_object* l_Lean_Parser_Command_in___elambda__1___closed__5; static lean_object* l_Lean_Parser_Tactic_set__option___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_openScoped_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_check__failure(lean_object*); @@ -1953,6 +1965,7 @@ static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_example_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17; static lean_object* l_Lean_Parser_Command_variable___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_check_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__2; @@ -2017,6 +2030,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_terminationBy_formatter__ static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_extends___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9; static lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Term_open_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__2; @@ -2035,6 +2049,7 @@ static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__2; static lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_declRange___closed__2; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__2; @@ -2061,6 +2076,7 @@ static lean_object* l_Lean_Parser_Command_structure___closed__11; static lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__7; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__14; static lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__3; +static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__4; static lean_object* l_Lean_Parser_Command_axiom___closed__3; static lean_object* l_Lean_Parser_Command_terminationBy_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10; @@ -2084,7 +2100,6 @@ static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__22; static lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_private_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_end___closed__7; @@ -2183,6 +2198,7 @@ static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27; static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange___closed__7; @@ -2200,6 +2216,7 @@ static lean_object* l_Lean_Parser_Command_whereStructInst___closed__4; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_optionValue___elambda__1___closed__11; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31; static lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__28; @@ -2226,6 +2243,7 @@ static lean_object* l_Lean_Parser_Command_visibility___closed__3; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_theorem___closed__10; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_print_declRange___closed__7; @@ -2265,7 +2283,6 @@ static lean_object* l_Lean_Parser_Command_initialize___closed__5; static lean_object* l_Lean_Parser_Command_open___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_noncomputable___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_declaration___closed__11; @@ -2289,6 +2306,7 @@ static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_quot_formatter___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_formatter___closed__2; static lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__11; +static lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_terminationBy_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__1; @@ -2390,6 +2408,7 @@ static lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__16; @@ -2492,7 +2511,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_moduleDoc_formatter(lean_object*, static lean_object* l_Lean_Parser_Command_declaration___closed__9; static lean_object* l_Lean_Parser_Command_declModifiers___closed__7; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26; static lean_object* l___regBuiltin_Lean_Parser_Command_end_declRange___closed__2; static lean_object* l_Lean_Parser_Tactic_open_formatter___closed__3; static lean_object* l_Lean_Parser_Command_set__option___closed__3; @@ -2522,8 +2540,10 @@ static lean_object* l_Lean_Parser_Command_open___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_theorem___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_protected_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19; static lean_object* l___regBuiltin_Lean_Parser_Command_check_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___closed__7; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__5; static lean_object* l_Lean_Parser_Command_reduce_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_formatter___closed__1; @@ -2631,7 +2651,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1(lean_obje static lean_object* l_Lean_Parser_Command_variable___closed__6; static lean_object* l_Lean_Parser_Command_terminationBy___elambda__1___closed__4; lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35; LEAN_EXPORT lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__10; @@ -2678,6 +2697,7 @@ static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__13; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_terminationBy_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_openRenaming___closed__7; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__10; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_partial___closed__4; static lean_object* l_Lean_Parser_Term_quot___elambda__1___lambda__3___closed__2; @@ -2762,7 +2782,6 @@ static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__5; static lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__19; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__14; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer___closed__4; lean_object* l_Lean_Parser_addQuotDepthFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2803,6 +2822,7 @@ static lean_object* l_Lean_Parser_Command_check___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__4; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__39; static lean_object* l_Lean_Parser_Command_structInstBinder___closed__1; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__13; static lean_object* l_Lean_Parser_Command_mutual___closed__10; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__12; @@ -2834,6 +2854,7 @@ static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__3; static lean_object* l_Lean_Parser_Command_check_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_terminationHintMany_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_terminationSuffix_formatter___closed__3; static lean_object* l_Lean_Parser_Command_printAxioms___closed__9; static lean_object* l_Lean_Parser_Command_whereStructField_formatter___closed__1; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__9; @@ -2890,7 +2911,6 @@ static lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__5; lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eraseAttr_formatter___closed__1; static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12; static lean_object* l_Lean_Parser_Command_unsafe___closed__3; static lean_object* l_Lean_Parser_Command_constant_formatter___closed__4; static lean_object* l_Lean_Parser_Command_universe___closed__8; @@ -2948,6 +2968,7 @@ static lean_object* l_Lean_Parser_Command_resolve__name___closed__2; static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange___closed__2; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__3; @@ -3055,6 +3076,7 @@ static lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___close static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_eraseAttr_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_printAxioms___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26; static lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openRenaming_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_formatter___closed__1; @@ -3080,6 +3102,7 @@ static lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_open___closed__1; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeriving; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_export_formatter___closed__2; lean_object* l_Lean_Parser_Term_doSeqIndent___elambda__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange___closed__7; @@ -3091,7 +3114,6 @@ static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__ static lean_object* l_Lean_Parser_Command_open_formatter___closed__6; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__24; static lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_extends_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_formatter___closed__2; @@ -3295,6 +3317,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_classTk_formatter___close static lean_object* l_Lean_Parser_Command_decreasingBy___closed__2; static lean_object* l_Lean_Parser_Command_inferMod___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_instance___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__1; @@ -3355,6 +3378,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesiz static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___rarg(lean_object*); static lean_object* l_Lean_Parser_Command_terminationBy___closed__4; +static lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange___closed__3; static lean_object* l_Lean_Parser_Command_declId___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_theorem_formatter___closed__2; @@ -3376,6 +3400,8 @@ static lean_object* l_Lean_Parser_Command_inductive___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_declRange___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10; static lean_object* l_Lean_Parser_Command_declValSimple___closed__4; static lean_object* l_Lean_Parser_Command_noncomputable_formatter___closed__2; static lean_object* l_Lean_Parser_Command_ctor___closed__8; @@ -3414,6 +3440,7 @@ static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_axiom___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_print_declRange___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__7; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; static lean_object* l_Lean_Parser_Command_openRenaming___closed__8; @@ -3426,6 +3453,7 @@ static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__9; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_Command_docComment; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__5; @@ -3515,6 +3543,7 @@ static lean_object* l_Lean_Parser_Command_openOnly___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_declRange___closed__6; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__17; static lean_object* l_Lean_Parser_Command_export___elambda__1___closed__9; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange___closed__6; @@ -3558,7 +3587,6 @@ static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optionValue; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__12; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__10; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_check___closed__3; @@ -3582,6 +3610,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___c LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_attribute_declRange(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1; static lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__8; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_export_formatter___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_ctor_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3596,7 +3625,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed static lean_object* l___regBuiltin_Lean_Parser_Command_builtin__initialize_declRange___closed__2; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_structExplicitBinder_formatter___closed__1; static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__6; @@ -3626,6 +3654,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openDecl___elambda__1(lean_object static lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__9; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__19; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__4; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_universe_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3818,6 +3847,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__2 static lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_print___closed__1; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_def_formatter___closed__8; static lean_object* l_Lean_Parser_Command_set__option___closed__1; @@ -3859,7 +3889,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter___clos static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__8; static lean_object* l_Lean_Parser_Command_inferMod_formatter___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__20; static lean_object* l_Lean_Parser_Command_optionValue___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__13; @@ -3897,6 +3926,7 @@ static lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_formatter___closed__1; static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeclSig_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_attribute_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_universe___closed__6; static lean_object* l_Lean_Parser_Command_optDeclSig___closed__7; @@ -3966,6 +3996,7 @@ static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__27; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__12; @@ -4001,7 +4032,6 @@ static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_declaration___closed__6; static lean_object* l_Lean_Parser_Command_private___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__4; static lean_object* l_Lean_Parser_Command_check___closed__7; @@ -4014,6 +4044,7 @@ lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, l static lean_object* l_Lean_Parser_Command_optionValue___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_print_declRange___closed__2; static lean_object* l_Lean_Parser_Command_optDeclSig___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore; static lean_object* l_Lean_Parser_Tactic_open___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_check___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__3; @@ -4030,6 +4061,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer__ static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_end___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_terminationHintMany_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_classTk_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4041,7 +4073,6 @@ static lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_openDecl_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__23; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structFields_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__7; @@ -4068,6 +4099,7 @@ static lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__27; static lean_object* l_Lean_Parser_Command_openDecl___elambda__1___closed__1; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_declSig_formatter___closed__4; static lean_object* l_Lean_Parser_Command_universe_formatter___closed__1; static lean_object* l_Lean_Parser_Command_optionValue___closed__5; @@ -4134,6 +4166,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_eval_declRange___closed__ static lean_object* l_Lean_Parser_Command_openOnly___closed__7; static lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__28; +static lean_object* l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__7; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed__4; @@ -4155,6 +4188,7 @@ static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__6; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_optionValue___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_inferMod_formatter___closed__4; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_namespace_formatter___closed__2; static lean_object* l_Lean_Parser_Command_synth_formatter___closed__3; @@ -4223,6 +4257,7 @@ static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__12; static lean_object* l_Lean_Parser_Term_open___closed__2; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16; static lean_object* l_Lean_Parser_Command_openOnly___closed__4; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__1; static lean_object* l_Lean_Parser_Term_open_formatter___closed__5; @@ -4306,6 +4341,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer(le LEAN_EXPORT lean_object* l_Lean_Parser_Command_declVal_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structureTk_formatter___closed__1; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__3; static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGt_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__28; @@ -4325,6 +4361,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_formatter_ static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationHintMany___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__12; static lean_object* l_Lean_Parser_Command_eraseAttr___elambda__1___closed__12; @@ -4388,6 +4425,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_form static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__8; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_check__failure___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructField_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_private_formatter___closed__1; @@ -4407,11 +4445,13 @@ static lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange___closed__6; static lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_init__quot___closed__4; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__7; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__7; static lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__17; static lean_object* l_Lean_Parser_Command_structure___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Term_precheckedQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4450,9 +4490,12 @@ lean_object* l_Lean_Parser_symbol_parenthesizer(lean_object*, lean_object*, lean static lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_formatter___closed__1; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__15; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__2; lean_object* l_Lean_Parser_withResultOfInfo(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__22; static lean_object* l_Lean_Parser_Command_example___closed__8; +static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declSig; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__4; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__11; @@ -4627,7 +4670,9 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1(lea static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__10; static lean_object* l_Lean_Parser_Command_optionValue___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22; static lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__9; +static lean_object* l_Lean_Parser_Command_terminationByCore___closed__1; static lean_object* l_Lean_Parser_Command_declValEqns___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange___closed__1; static lean_object* l_Lean_Parser_Command_openRenamingItem_formatter___closed__1; @@ -7893,6 +7938,384 @@ x_1 = l_Lean_Parser_Command_terminationBy___closed__8; return x_1; } } +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("terminationByCore"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationHintMany___elambda__1___closed__2; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3; +x_3 = 1; +x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("termination_by' "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tokenWithAntiquotFn), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationBy___elambda__1___closed__9; +x_2 = lean_ctor_get(x_1, 1); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8; +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_4, 0, x_3); +lean_closure_set(x_4, 1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10; +x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__35; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_quot___elambda__1___closed__33; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_quot___elambda__1___lambda__3___closed__6; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13; +x_2 = l_Lean_Parser_Term_quot___elambda__1___lambda__3___closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = l_Lean_Parser_Command_terminationBy___elambda__1___closed__9; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +x_5 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4; +x_6 = lean_ctor_get(x_5, 1); +lean_inc(x_6); +lean_inc(x_2); +lean_inc(x_1); +x_7 = l_Lean_Parser_tryAnti(x_1, x_2); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_dec(x_6); +x_8 = lean_unsigned_to_nat(1024u); +x_9 = l_Lean_Parser_checkPrecFn(x_8, x_1, x_2); +x_10 = lean_ctor_get(x_9, 4); +lean_inc(x_10); +x_11 = lean_box(0); +x_12 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_802____at_Lean_Parser_ParserState_hasError___spec__1(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) +{ +lean_dec(x_4); +lean_dec(x_1); +return x_9; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_13 = lean_ctor_get(x_9, 0); +lean_inc(x_13); +x_14 = lean_array_get_size(x_13); +lean_dec(x_13); +x_15 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6; +x_16 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14; +lean_inc(x_1); +x_17 = l_Lean_Parser_symbolFnAux(x_15, x_16, x_1, x_9); +x_18 = lean_ctor_get(x_17, 4); +lean_inc(x_18); +x_19 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_802____at_Lean_Parser_ParserState_hasError___spec__1(x_18, x_11); +lean_dec(x_18); +if (x_19 == 0) +{ +x_20 = x_17; +goto block_34; +} +else +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_1, 4); +lean_inc(x_35); +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_nat_dec_eq(x_35, x_36); +lean_dec(x_35); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_box(0); +lean_inc(x_1); +x_39 = l_Lean_Parser_Term_quot___elambda__1___lambda__3(x_17, x_1, x_11, x_38); +x_20 = x_39; +goto block_34; +} +else +{ +x_20 = x_17; +goto block_34; +} +} +block_34: +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_20, 4); +lean_inc(x_21); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_802____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_11); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_dec(x_4); +x_23 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_24 = l_Lean_Parser_ParserState_mkNode(x_20, x_23, x_14); +x_25 = lean_ctor_get(x_24, 4); +lean_inc(x_25); +x_26 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_802____at_Lean_Parser_ParserState_hasError___spec__1(x_25, x_11); +lean_dec(x_25); +if (x_26 == 0) +{ +lean_dec(x_1); +return x_24; +} +else +{ +lean_object* x_27; +x_27 = l_Lean_Parser_setLhsPrecFn(x_8, x_1, x_24); +lean_dec(x_1); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_inc(x_1); +x_28 = lean_apply_2(x_4, x_1, x_20); +x_29 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_14); +x_31 = lean_ctor_get(x_30, 4); +lean_inc(x_31); +x_32 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_802____at_Lean_Parser_ParserState_hasError___spec__1(x_31, x_11); +lean_dec(x_31); +if (x_32 == 0) +{ +lean_dec(x_1); +return x_30; +} +else +{ +lean_object* x_33; +x_33 = l_Lean_Parser_setLhsPrecFn(x_8, x_1, x_30); +lean_dec(x_1); +return x_33; +} +} +} +} +} +else +{ +lean_object* x_40; uint8_t x_41; lean_object* x_42; +lean_dec(x_4); +x_40 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12; +x_41 = 1; +x_42 = l_Lean_Parser_orelseFnCore(x_6, x_40, x_41, x_1, x_2); +return x_42; +} +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6; +x_2 = l_Lean_Parser_symbolInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationBy___elambda__1___closed__9; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_terminationByCore___closed__1; +x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = l_Lean_Parser_Command_terminationByCore___closed__2; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___closed__3; +x_2 = l_Lean_Parser_epsilonInfo; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Command_terminationByCore___closed__4; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_terminationByCore___closed__5; +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_terminationByCore___elambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___closed__6; +x_2 = l_Lean_Parser_Command_terminationByCore___closed__7; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Command_terminationByCore___closed__8; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Command_decreasingBy___elambda__1___closed__1() { _start: { @@ -8283,13 +8706,51 @@ return x_1; static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Command_terminationBy; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_terminationByCore; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = l_Lean_Parser_orelseInfo(x_2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationBy___closed__7; +x_2 = l_Lean_Parser_Command_terminationByCore___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1; +x_2 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3; x_2 = l_Lean_Parser_optional(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2() { +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -8302,10 +8763,10 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationSuffix___elambda__1(le _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_3 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1; +x_3 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2; +x_5 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_inc(x_1); @@ -8333,10 +8794,10 @@ static lean_object* _init_l_Lean_Parser_Command_terminationSuffix___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1; +x_1 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2; +x_3 = l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); @@ -28342,6 +28803,97 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3; +x_3 = 1; +x_4 = lean_box(x_3); +x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); +lean_closure_set(x_5, 0, x_1); +lean_closure_set(x_5, 1, x_2); +lean_closure_set(x_5, 2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore_formatter___closed__2; +x_2 = l_Lean_Parser_Command_terminationBy_formatter___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_terminationByCore_formatter___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_Parser_Command_terminationByCore_formatter___closed__1; +x_7 = l_Lean_Parser_Command_terminationByCore_formatter___closed__4; +x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); +return x_8; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_terminationByCore_formatter), 5, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_PrettyPrinter_formatterAttribute; +x_3 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1; +x_5 = l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} static lean_object* _init_l_Lean_Parser_Command_decreasingBy_formatter___closed__1() { _start: { @@ -28454,14 +29006,26 @@ return x_6; static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Parser_Command_terminationBy_formatter___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationSuffix_formatter___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__2() { +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -28475,8 +29039,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationSuffix_formatter(lean_ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_terminationSuffix_formatter___closed__1; -x_7 = l_Lean_Parser_Command_terminationSuffix_formatter___closed__2; +x_6 = l_Lean_Parser_Command_terminationSuffix_formatter___closed__2; +x_7 = l_Lean_Parser_Command_terminationSuffix_formatter___closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -33962,6 +34526,97 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1; +x_2 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3; +x_3 = 1; +x_4 = lean_box(x_3); +x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); +lean_closure_set(x_5, 0, x_1); +lean_closure_set(x_5, 1, x_2); +lean_closure_set(x_5, 2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_terminationBy_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3; +x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); +lean_closure_set(x_4, 0, x_1); +lean_closure_set(x_4, 1, x_2); +lean_closure_set(x_4, 2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1; +x_7 = l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); +return x_8; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_terminationByCore_parenthesizer), 5, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; +x_3 = l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2; +x_4 = l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1; +x_5 = l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} static lean_object* _init_l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__1() { _start: { @@ -34074,14 +34729,26 @@ return x_6; static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Parser_Command_terminationBy_parenthesizer___closed__2; +x_2 = l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2() { +static lean_object* _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -34095,8 +34762,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationSuffix_parenthesizer(l _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2; +x_6 = l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2; +x_7 = l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -62270,7 +62937,7 @@ x_1 = l_Lean_Parser_Command_ctor___closed__2; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -62280,7 +62947,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -62290,7 +62957,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3() { _start: { lean_object* x_1; @@ -62298,17 +62965,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5() { _start: { lean_object* x_1; @@ -62316,17 +62983,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7() { _start: { lean_object* x_1; @@ -62334,17 +63001,17 @@ x_1 = lean_mk_string("nestedDeclModifiers"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -62354,7 +63021,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10() { _start: { lean_object* x_1; @@ -62362,17 +63029,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12() { _start: { lean_object* x_1; @@ -62380,17 +63047,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -62400,7 +63067,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -62410,7 +63077,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -62420,7 +63087,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -62430,7 +63097,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -62440,7 +63107,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -62450,7 +63117,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -62460,7 +63127,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -62470,7 +63137,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22() { _start: { lean_object* x_1; @@ -62478,17 +63145,17 @@ x_1 = lean_mk_string("declVal"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -62498,7 +63165,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -62508,7 +63175,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -62518,7 +63185,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -62528,7 +63195,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28() { _start: { lean_object* x_1; lean_object* x_2; @@ -62538,7 +63205,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -62548,7 +63215,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -62558,7 +63225,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31() { _start: { lean_object* x_1; @@ -62566,17 +63233,17 @@ x_1 = lean_mk_string("openDecl"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33() { _start: { lean_object* x_1; lean_object* x_2; @@ -62586,7 +63253,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -62596,7 +63263,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -62606,13 +63273,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Parser_parserAliasesRef; -x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2; +x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -62621,7 +63288,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4; +x_8 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -62630,7 +63297,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6; +x_12 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -62638,8 +63305,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8; -x_16 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9; +x_15 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8; +x_16 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -62647,7 +63314,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11; +x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -62655,7 +63322,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13; +x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -62663,8 +63330,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14; -x_26 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15; +x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14; +x_26 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -62672,7 +63339,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16; +x_29 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -62680,7 +63347,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17; +x_32 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -62688,8 +63355,8 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18; -x_36 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19; +x_35 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18; +x_36 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -62697,7 +63364,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20; +x_39 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -62705,7 +63372,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21; +x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -62713,8 +63380,8 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); -x_45 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23; -x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24; +x_45 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23; +x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -62722,7 +63389,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25; +x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -62730,7 +63397,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26; +x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -62738,8 +63405,8 @@ lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); -x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27; -x_56 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28; +x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27; +x_56 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -62747,7 +63414,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29; +x_59 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -62755,7 +63422,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30; +x_62 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -62763,8 +63430,8 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); -x_65 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32; -x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33; +x_65 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32; +x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -62772,7 +63439,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34; +x_69 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -62780,7 +63447,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35; +x_72 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); return x_73; } @@ -66855,6 +67522,52 @@ l_Lean_Parser_Command_terminationBy___closed__8 = _init_l_Lean_Parser_Command_te lean_mark_persistent(l_Lean_Parser_Command_terminationBy___closed__8); l_Lean_Parser_Command_terminationBy = _init_l_Lean_Parser_Command_terminationBy(); lean_mark_persistent(l_Lean_Parser_Command_terminationBy); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__1); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__2); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__4); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__5); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__6); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__7); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__9); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__10); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__11); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__12); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__13); +l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14 = _init_l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___elambda__1___closed__14); +l_Lean_Parser_Command_terminationByCore___closed__1 = _init_l_Lean_Parser_Command_terminationByCore___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__1); +l_Lean_Parser_Command_terminationByCore___closed__2 = _init_l_Lean_Parser_Command_terminationByCore___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__2); +l_Lean_Parser_Command_terminationByCore___closed__3 = _init_l_Lean_Parser_Command_terminationByCore___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__3); +l_Lean_Parser_Command_terminationByCore___closed__4 = _init_l_Lean_Parser_Command_terminationByCore___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__4); +l_Lean_Parser_Command_terminationByCore___closed__5 = _init_l_Lean_Parser_Command_terminationByCore___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__5); +l_Lean_Parser_Command_terminationByCore___closed__6 = _init_l_Lean_Parser_Command_terminationByCore___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__6); +l_Lean_Parser_Command_terminationByCore___closed__7 = _init_l_Lean_Parser_Command_terminationByCore___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__7); +l_Lean_Parser_Command_terminationByCore___closed__8 = _init_l_Lean_Parser_Command_terminationByCore___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore___closed__8); +l_Lean_Parser_Command_terminationByCore = _init_l_Lean_Parser_Command_terminationByCore(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore); l_Lean_Parser_Command_decreasingBy___elambda__1___closed__1 = _init_l_Lean_Parser_Command_decreasingBy___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_decreasingBy___elambda__1___closed__1); l_Lean_Parser_Command_decreasingBy___elambda__1___closed__2 = _init_l_Lean_Parser_Command_decreasingBy___elambda__1___closed__2(); @@ -66907,6 +67620,12 @@ l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1 = _init_l_Lean_ lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__1); l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2 = _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__2); +l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3 = _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__3); +l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4 = _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__4); +l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5 = _init_l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___elambda__1___closed__5); l_Lean_Parser_Command_terminationSuffix___closed__1 = _init_l_Lean_Parser_Command_terminationSuffix___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix___closed__1); l_Lean_Parser_Command_terminationSuffix___closed__2 = _init_l_Lean_Parser_Command_terminationSuffix___closed__2(); @@ -69537,6 +70256,21 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationBy_formatter_ res = l___regBuiltin_Lean_Parser_Command_terminationBy_formatter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_terminationByCore_formatter___closed__1 = _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_formatter___closed__1); +l_Lean_Parser_Command_terminationByCore_formatter___closed__2 = _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_formatter___closed__2); +l_Lean_Parser_Command_terminationByCore_formatter___closed__3 = _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_formatter___closed__3); +l_Lean_Parser_Command_terminationByCore_formatter___closed__4 = _init_l_Lean_Parser_Command_terminationByCore_formatter___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_formatter___closed__4); +l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1); +l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__2); +res = l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_decreasingBy_formatter___closed__1 = _init_l_Lean_Parser_Command_decreasingBy_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_decreasingBy_formatter___closed__1); l_Lean_Parser_Command_decreasingBy_formatter___closed__2 = _init_l_Lean_Parser_Command_decreasingBy_formatter___closed__2(); @@ -69560,6 +70294,8 @@ l_Lean_Parser_Command_terminationSuffix_formatter___closed__1 = _init_l_Lean_Par lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_formatter___closed__1); l_Lean_Parser_Command_terminationSuffix_formatter___closed__2 = _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_formatter___closed__2); +l_Lean_Parser_Command_terminationSuffix_formatter___closed__3 = _init_l_Lean_Parser_Command_terminationSuffix_formatter___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_formatter___closed__3); l_Lean_Parser_Command_def_formatter___closed__1 = _init_l_Lean_Parser_Command_def_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_def_formatter___closed__1); l_Lean_Parser_Command_def_formatter___closed__2 = _init_l_Lean_Parser_Command_def_formatter___closed__2(); @@ -70470,6 +71206,21 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationBy_parenthesi res = l___regBuiltin_Lean_Parser_Command_terminationBy_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1); +l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2); +l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__3); +l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_terminationByCore_parenthesizer___closed__4); +l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1); +l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__2); +res = l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__1); l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_decreasingBy_parenthesizer___closed__2(); @@ -70493,6 +71244,8 @@ l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__1 = _init_l_Lean lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__1); l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__2); +l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_terminationSuffix_parenthesizer___closed__3); l_Lean_Parser_Command_def_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__1); l_Lean_Parser_Command_def_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__2(); @@ -74539,77 +75292,77 @@ l_Lean_Parser_Command_declModifiersF = _init_l_Lean_Parser_Command_declModifiers lean_mark_persistent(l_Lean_Parser_Command_declModifiersF); l_Lean_Parser_Command_declModifiersT = _init_l_Lean_Parser_Command_declModifiersT(); lean_mark_persistent(l_Lean_Parser_Command_declModifiersT); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__1); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__2); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__3); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__4); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__5); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__6); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__7); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__8); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__9); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__10); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__11); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__12); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__13); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__14); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__15); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__16); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__17); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__18); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__19); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__20); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__21); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__22); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__23); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__24); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__25); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__26); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__27); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__28); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__29); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__30); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__31); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__32); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__33); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__34); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376____closed__35); -res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2376_(lean_io_mk_world()); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__1); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__2); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__3); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__4); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__5); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__6); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__7); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__8); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__9); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__10); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__11); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__12); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__13); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__14); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__15); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__16); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__17); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__18); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__19); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__20); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__21); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__22); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__23); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__24); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__25); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__26); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__27); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__28); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__29); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__30); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__31); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__32); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__33); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__34); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403____closed__35); +res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2403_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Term_open___elambda__1___closed__1 = _init_l_Lean_Parser_Term_open___elambda__1___closed__1(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index 6fdae430e0..af9588f191 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -82,6 +82,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__ lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_descend___at_Lean_PrettyPrinter_Delaborator_delab___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__14; +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__7; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabSigmaCore___lambda__1___closed__1; @@ -539,7 +540,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6__ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte_delabBranch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte___lambda__1___closed__5; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_getValues___rarg(lean_object*, lean_object*, lean_object*); @@ -860,7 +861,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_delabProj__ extern lean_object* l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; static lean_object* l_Lean_getConstInfo___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__2___closed__2; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6___closed__2; -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar(lean_object*); @@ -936,7 +936,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_withMDataOp LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_delabProj___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_getPPMotivesNonConst(lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabProjectionApp___closed__2; -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13; lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Delaborator_instMonadQuotationDelabM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_descend___at_Lean_PrettyPrinter_Delaborator_delabDIte___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -16768,18 +16767,18 @@ _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_dec(x_2); -x_10 = lean_ctor_get(x_1, 4); +x_10 = lean_ctor_get(x_1, 6); lean_inc(x_10); -x_11 = lean_ctor_get(x_1, 6); +x_11 = lean_ctor_get(x_1, 4); lean_inc(x_11); -x_12 = lean_array_get_size(x_10); +x_12 = lean_array_get_size(x_11); x_13 = lean_unsigned_to_nat(1u); x_14 = lean_nat_dec_eq(x_12, x_13); lean_dec(x_12); if (x_14 == 0) { lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_array_get_size(x_11); +x_15 = lean_array_get_size(x_10); x_16 = lean_unsigned_to_nat(0u); x_17 = lean_nat_dec_eq(x_15, x_16); lean_dec(x_15); @@ -16915,13 +16914,13 @@ lean_inc(x_29); x_32 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_32, 0, x_29); lean_ctor_set(x_32, 1, x_31); -x_33 = lean_array_get_size(x_10); +x_33 = lean_array_get_size(x_11); x_34 = lean_usize_of_nat(x_33); lean_dec(x_33); x_35 = 0; x_36 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__7; x_37 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_38 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__9(x_36, x_37, x_34, x_35, x_10); +x_38 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__9(x_36, x_37, x_34, x_35, x_11); x_39 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__12; x_40 = l_Lean_mkSepArray(x_38, x_39); lean_dec(x_38); @@ -16938,8 +16937,8 @@ lean_inc(x_29); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_29); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Array_zip___rarg(x_19, x_11); -lean_dec(x_11); +x_48 = l_Array_zip___rarg(x_19, x_10); +lean_dec(x_10); lean_dec(x_19); x_49 = lean_array_get_size(x_48); x_50 = lean_usize_of_nat(x_49); @@ -16993,13 +16992,13 @@ lean_inc(x_69); x_72 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_72, 0, x_69); lean_ctor_set(x_72, 1, x_71); -x_73 = lean_array_get_size(x_10); +x_73 = lean_array_get_size(x_11); x_74 = lean_usize_of_nat(x_73); lean_dec(x_73); x_75 = 0; x_76 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__7; x_77 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_78 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__11(x_76, x_77, x_74, x_75, x_10); +x_78 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__11(x_76, x_77, x_74, x_75, x_11); x_79 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__12; x_80 = l_Lean_mkSepArray(x_78, x_79); lean_dec(x_78); @@ -17035,8 +17034,8 @@ lean_inc(x_69); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_69); lean_ctor_set(x_97, 1, x_96); -x_98 = l_Array_zip___rarg(x_19, x_11); -lean_dec(x_11); +x_98 = l_Array_zip___rarg(x_19, x_10); +lean_dec(x_10); lean_dec(x_19); x_99 = lean_array_get_size(x_98); x_100 = lean_usize_of_nat(x_99); @@ -17128,7 +17127,7 @@ return x_135; else { lean_object* x_136; lean_object* x_137; uint8_t x_138; -x_136 = lean_array_get_size(x_11); +x_136 = lean_array_get_size(x_10); x_137 = lean_unsigned_to_nat(0u); x_138 = lean_nat_dec_eq(x_136, x_137); lean_dec(x_136); @@ -17264,13 +17263,13 @@ lean_inc(x_150); x_153 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_153, 0, x_150); lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_get_size(x_10); +x_154 = lean_array_get_size(x_11); x_155 = lean_usize_of_nat(x_154); lean_dec(x_154); x_156 = 0; x_157 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__7; x_158 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_159 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__14(x_157, x_158, x_155, x_156, x_10); +x_159 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__14(x_157, x_158, x_155, x_156, x_11); x_160 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__12; x_161 = l_Lean_mkSepArray(x_159, x_160); lean_dec(x_159); @@ -17287,8 +17286,8 @@ lean_inc(x_150); x_168 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_168, 0, x_150); lean_ctor_set(x_168, 1, x_167); -x_169 = l_Array_zip___rarg(x_140, x_11); -lean_dec(x_11); +x_169 = l_Array_zip___rarg(x_140, x_10); +lean_dec(x_10); lean_dec(x_140); x_170 = lean_array_get_size(x_169); x_171 = lean_usize_of_nat(x_170); @@ -17342,13 +17341,13 @@ lean_inc(x_190); x_193 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_193, 0, x_190); lean_ctor_set(x_193, 1, x_192); -x_194 = lean_array_get_size(x_10); +x_194 = lean_array_get_size(x_11); x_195 = lean_usize_of_nat(x_194); lean_dec(x_194); x_196 = 0; x_197 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__7; x_198 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_199 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__16(x_197, x_198, x_195, x_196, x_10); +x_199 = l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__16(x_197, x_198, x_195, x_196, x_11); x_200 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__12; x_201 = l_Lean_mkSepArray(x_199, x_200); lean_dec(x_199); @@ -17384,8 +17383,8 @@ lean_inc(x_190); x_218 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_218, 0, x_190); lean_ctor_set(x_218, 1, x_217); -x_219 = l_Array_zip___rarg(x_140, x_11); -lean_dec(x_11); +x_219 = l_Array_zip___rarg(x_140, x_10); +lean_dec(x_10); lean_dec(x_140); x_220 = lean_array_get_size(x_219); x_221 = lean_usize_of_nat(x_220); @@ -17461,13 +17460,13 @@ return x_255; else { lean_object* x_256; lean_object* x_257; uint8_t x_258; -lean_dec(x_11); +lean_dec(x_10); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_256 = lean_array_fget(x_10, x_137); -lean_dec(x_10); +x_256 = lean_array_fget(x_11, x_137); +lean_dec(x_11); x_257 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_9); lean_dec(x_8); x_258 = !lean_is_exclusive(x_257); @@ -21119,64 +21118,122 @@ return x_150; } } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -lean_inc(x_8); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_8, x_9, x_10); -x_12 = lean_ctor_get(x_11, 0); +lean_object* x_10; uint8_t x_11; +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_12 = lean_ctor_get(x_10, 0); +x_13 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__5; lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -x_14 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__5; +x_14 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; lean_inc(x_12); -x_15 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_15, 0, x_12); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; -lean_inc(x_12); -x_17 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_17, 0, x_12); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_19 = lean_array_push(x_18, x_17); -x_20 = lean_array_push(x_19, x_1); -x_21 = lean_box(2); -x_22 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__7; -x_23 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -lean_ctor_set(x_23, 2, x_20); -x_24 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; -x_25 = lean_array_push(x_24, x_23); -x_26 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_27 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_27, 0, x_21); -lean_ctor_set(x_27, 1, x_26); -lean_ctor_set(x_27, 2, x_25); -x_28 = lean_array_push(x_18, x_3); -x_29 = lean_array_push(x_28, x_27); -x_30 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_30, 0, x_21); -lean_ctor_set(x_30, 1, x_26); -lean_ctor_set(x_30, 2, x_29); -x_31 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__9; -x_32 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_32, 0, x_12); -lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__10; -x_34 = lean_array_push(x_33, x_15); -x_35 = lean_array_push(x_34, x_30); -x_36 = lean_array_push(x_35, x_32); -x_37 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__4; -x_38 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_38, 0, x_21); -lean_ctor_set(x_38, 1, x_37); -lean_ctor_set(x_38, 2, x_36); -x_39 = lean_apply_8(x_2, x_38, x_4, x_5, x_6, x_7, x_8, x_9, x_13); -return x_39; +x_16 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_18 = lean_array_push(x_17, x_16); +x_19 = lean_array_push(x_18, x_1); +x_20 = lean_box(2); +x_21 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__7; +x_22 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +lean_ctor_set(x_22, 2, x_19); +x_23 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; +x_24 = lean_array_push(x_23, x_22); +x_25 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_26 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_26, 0, x_20); +lean_ctor_set(x_26, 1, x_25); +lean_ctor_set(x_26, 2, x_24); +x_27 = lean_array_push(x_17, x_2); +x_28 = lean_array_push(x_27, x_26); +x_29 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_29, 0, x_20); +lean_ctor_set(x_29, 1, x_25); +lean_ctor_set(x_29, 2, x_28); +x_30 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__9; +x_31 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_31, 0, x_12); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__10; +x_33 = lean_array_push(x_32, x_14); +x_34 = lean_array_push(x_33, x_29); +x_35 = lean_array_push(x_34, x_31); +x_36 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__4; +x_37 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_37, 0, x_20); +lean_ctor_set(x_37, 1, x_36); +lean_ctor_set(x_37, 2, x_35); +lean_ctor_set(x_10, 0, x_37); +return x_10; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_38 = lean_ctor_get(x_10, 0); +x_39 = lean_ctor_get(x_10, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_10); +x_40 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__5; +lean_inc(x_38); +x_41 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_41, 0, x_38); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; +lean_inc(x_38); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_38); +lean_ctor_set(x_43, 1, x_42); +x_44 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_45 = lean_array_push(x_44, x_43); +x_46 = lean_array_push(x_45, x_1); +x_47 = lean_box(2); +x_48 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__7; +x_49 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +lean_ctor_set(x_49, 2, x_46); +x_50 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; +x_51 = lean_array_push(x_50, x_49); +x_52 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_53 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_53, 0, x_47); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_53, 2, x_51); +x_54 = lean_array_push(x_44, x_2); +x_55 = lean_array_push(x_54, x_53); +x_56 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_56, 0, x_47); +lean_ctor_set(x_56, 1, x_52); +lean_ctor_set(x_56, 2, x_55); +x_57 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__9; +x_58 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_58, 0, x_38); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__10; +x_60 = lean_array_push(x_59, x_41); +x_61 = lean_array_push(x_60, x_56); +x_62 = lean_array_push(x_61, x_58); +x_63 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__4; +x_64 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_64, 0, x_47); +lean_ctor_set(x_64, 1, x_63); +lean_ctor_set(x_64, 2, x_62); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_39); +return x_65; +} } } static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__1() { @@ -21273,27 +21330,6 @@ x_1 = lean_mk_string("⦄"); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Lean.PrettyPrinter.Delaborator.delabLam"); -return x_1; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; -x_2 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; -x_3 = lean_unsigned_to_nat(542u); -x_4 = lean_unsigned_to_nat(44u); -x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { @@ -21346,82 +21382,61 @@ lean_inc(x_3); x_22 = l_Lean_PrettyPrinter_Delaborator_getPPOption(x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_20); if (lean_obj_tag(x_22) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; uint8_t x_47; lean_object* x_48; lean_object* x_75; lean_object* x_125; +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_56; uint8_t x_75; lean_object* x_76; lean_object* x_126; x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); lean_dec(x_22); x_24 = lean_array_get_size(x_1); x_25 = lean_unsigned_to_nat(0u); x_26 = lean_nat_dec_lt(x_25, x_24); -lean_inc(x_2); -x_27 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1___boxed), 9, 1); -lean_closure_set(x_27, 0, x_2); -x_47 = l_Lean_Expr_binderInfo(x_11); +x_75 = l_Lean_Expr_binderInfo(x_11); lean_dec(x_11); if (x_26 == 0) { -switch (x_47) { -case 0: -{ -lean_object* x_175; -x_175 = lean_box(0); -x_48 = x_175; -goto block_74; -} +lean_object* x_176; +x_176 = lean_box(x_75); +switch (lean_obj_tag(x_176)) { case 1: { -lean_object* x_176; -lean_dec(x_27); +lean_object* x_177; lean_dec(x_24); -x_176 = lean_box(0); -x_75 = x_176; -goto block_124; +x_177 = lean_box(0); +x_76 = x_177; +goto block_125; } case 2: { -lean_object* x_177; -lean_dec(x_27); +lean_object* x_178; lean_dec(x_24); -x_177 = lean_box(0); -x_125 = x_177; -goto block_174; +x_178 = lean_box(0); +x_126 = x_178; +goto block_175; } case 3: { -lean_object* x_178; -lean_dec(x_27); +lean_object* x_179; lean_dec(x_24); lean_dec(x_19); lean_dec(x_1); -x_178 = lean_box(0); -x_28 = x_178; -goto block_46; +x_179 = lean_box(0); +x_56 = x_179; +goto block_74; } default: { -lean_object* x_179; lean_object* x_180; -lean_dec(x_27); -lean_dec(x_24); +uint8_t x_180; +lean_dec(x_176); +x_180 = lean_unbox(x_19); lean_dec(x_19); -lean_dec(x_15); -lean_dec(x_1); -x_179 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13; -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_180 = l_panic___at_Lean_PrettyPrinter_Delaborator_delabFVar___spec__1(x_179, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_180) == 0) +if (x_180 == 0) { lean_object* x_181; lean_object* x_182; lean_object* x_183; -x_181 = lean_ctor_get(x_180, 0); -lean_inc(x_181); -x_182 = lean_ctor_get(x_180, 1); -lean_inc(x_182); -lean_dec(x_180); -x_183 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_181, x_3, x_4, x_5, x_6, x_7, x_8, x_182); +lean_dec(x_24); +lean_dec(x_15); +x_181 = l_Lean_instInhabitedSyntax; +x_182 = l_Array_back___rarg(x_181, x_1); +lean_dec(x_1); +x_183 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_182, x_3, x_4, x_5, x_6, x_7, x_8, x_23); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); @@ -21431,646 +21446,544 @@ return x_183; } else { -uint8_t x_184; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_184 = !lean_is_exclusive(x_180); -if (x_184 == 0) -{ -return x_180; -} -else -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_180, 0); -x_186 = lean_ctor_get(x_180, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_180); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -return x_187; -} +lean_object* x_184; +x_184 = lean_box(0); +x_27 = x_184; +goto block_55; } } } } else { -uint8_t x_188; -x_188 = lean_nat_dec_le(x_24, x_24); -if (x_188 == 0) +uint8_t x_185; +x_185 = lean_nat_dec_le(x_24, x_24); +if (x_185 == 0) { -switch (x_47) { -case 0: +lean_object* x_186; +x_186 = lean_box(x_75); +switch (lean_obj_tag(x_186)) { +case 1: +{ +lean_object* x_187; +lean_dec(x_24); +x_187 = lean_box(0); +x_76 = x_187; +goto block_125; +} +case 2: +{ +lean_object* x_188; +lean_dec(x_24); +x_188 = lean_box(0); +x_126 = x_188; +goto block_175; +} +case 3: { lean_object* x_189; -x_189 = lean_box(0); -x_48 = x_189; -goto block_74; -} -case 1: -{ -lean_object* x_190; -lean_dec(x_27); -lean_dec(x_24); -x_190 = lean_box(0); -x_75 = x_190; -goto block_124; -} -case 2: -{ -lean_object* x_191; -lean_dec(x_27); -lean_dec(x_24); -x_191 = lean_box(0); -x_125 = x_191; -goto block_174; -} -case 3: -{ -lean_object* x_192; -lean_dec(x_27); lean_dec(x_24); lean_dec(x_19); lean_dec(x_1); -x_192 = lean_box(0); -x_28 = x_192; -goto block_46; +x_189 = lean_box(0); +x_56 = x_189; +goto block_74; } default: { -lean_object* x_193; lean_object* x_194; -lean_dec(x_27); -lean_dec(x_24); +uint8_t x_190; +lean_dec(x_186); +x_190 = lean_unbox(x_19); lean_dec(x_19); +if (x_190 == 0) +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec(x_24); lean_dec(x_15); +x_191 = l_Lean_instInhabitedSyntax; +x_192 = l_Array_back___rarg(x_191, x_1); lean_dec(x_1); -x_193 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13; -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_194 = l_panic___at_Lean_PrettyPrinter_Delaborator_delabFVar___spec__1(x_193, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_194) == 0) -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); -lean_inc(x_196); -lean_dec(x_194); -x_197 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_195, x_3, x_4, x_5, x_6, x_7, x_8, x_196); +x_193 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_192, x_3, x_4, x_5, x_6, x_7, x_8, x_23); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_197; +return x_193; } else { -uint8_t x_198; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_198 = !lean_is_exclusive(x_194); -if (x_198 == 0) -{ -return x_194; -} -else -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; -x_199 = lean_ctor_get(x_194, 0); -x_200 = lean_ctor_get(x_194, 1); -lean_inc(x_200); -lean_inc(x_199); -lean_dec(x_194); -x_201 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_201, 0, x_199); -lean_ctor_set(x_201, 1, x_200); -return x_201; -} +lean_object* x_194; +x_194 = lean_box(0); +x_27 = x_194; +goto block_55; } } } } else { -switch (x_47) { -case 0: -{ -lean_object* x_202; -x_202 = lean_box(0); -x_48 = x_202; -goto block_74; -} +lean_object* x_195; +x_195 = lean_box(x_75); +switch (lean_obj_tag(x_195)) { case 1: { -lean_object* x_203; -lean_dec(x_27); +lean_object* x_196; lean_dec(x_24); -x_203 = lean_box(0); -x_75 = x_203; -goto block_124; +x_196 = lean_box(0); +x_76 = x_196; +goto block_125; } case 2: { -lean_object* x_204; -lean_dec(x_27); +lean_object* x_197; lean_dec(x_24); -x_204 = lean_box(0); -x_125 = x_204; -goto block_174; +x_197 = lean_box(0); +x_126 = x_197; +goto block_175; } case 3: { -size_t x_205; size_t x_206; uint8_t x_207; -lean_dec(x_27); +size_t x_198; size_t x_199; uint8_t x_200; lean_dec(x_19); -x_205 = 0; -x_206 = lean_usize_of_nat(x_24); +x_198 = 0; +x_199 = lean_usize_of_nat(x_24); lean_dec(x_24); lean_inc(x_2); -x_207 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__1(x_2, x_1, x_205, x_206); -if (x_207 == 0) +x_200 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__1(x_2, x_1, x_198, x_199); +if (x_200 == 0) { -lean_object* x_208; +lean_object* x_201; lean_dec(x_1); -x_208 = lean_box(0); -x_28 = x_208; -goto block_46; +x_201 = lean_box(0); +x_56 = x_201; +goto block_74; } else { -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_inc(x_7); -x_209 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -lean_dec(x_209); -x_212 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; -lean_inc(x_210); -x_213 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_213, 0, x_210); -lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_instInhabitedSyntax; -x_215 = l_Array_back___rarg(x_214, x_1); +x_202 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_202, 1); +lean_inc(x_204); +lean_dec(x_202); +x_205 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; +lean_inc(x_203); +x_206 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_206, 0, x_203); +lean_ctor_set(x_206, 1, x_205); +x_207 = l_Lean_instInhabitedSyntax; +x_208 = l_Array_back___rarg(x_207, x_1); lean_dec(x_1); -x_216 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; -lean_inc(x_210); -x_217 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_217, 0, x_210); -lean_ctor_set(x_217, 1, x_216); -x_218 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_219 = lean_array_push(x_218, x_215); -x_220 = lean_array_push(x_219, x_217); -x_221 = lean_box(2); -x_222 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_223 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_223, 0, x_221); -lean_ctor_set(x_223, 1, x_222); -lean_ctor_set(x_223, 2, x_220); -x_224 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__5; -x_225 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_225, 0, x_210); +x_209 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; +lean_inc(x_203); +x_210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_210, 0, x_203); +lean_ctor_set(x_210, 1, x_209); +x_211 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_212 = lean_array_push(x_211, x_208); +x_213 = lean_array_push(x_212, x_210); +x_214 = lean_box(2); +x_215 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_216 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_216, 0, x_214); +lean_ctor_set(x_216, 1, x_215); +lean_ctor_set(x_216, 2, x_213); +x_217 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__5; +x_218 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_218, 0, x_203); +lean_ctor_set(x_218, 1, x_217); +x_219 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_220 = lean_array_push(x_219, x_206); +x_221 = lean_array_push(x_220, x_216); +x_222 = lean_array_push(x_221, x_15); +x_223 = lean_array_push(x_222, x_218); +x_224 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; +x_225 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_225, 0, x_214); lean_ctor_set(x_225, 1, x_224); -x_226 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_227 = lean_array_push(x_226, x_213); -x_228 = lean_array_push(x_227, x_223); -x_229 = lean_array_push(x_228, x_15); -x_230 = lean_array_push(x_229, x_225); -x_231 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; -x_232 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_232, 0, x_221); -lean_ctor_set(x_232, 1, x_231); -lean_ctor_set(x_232, 2, x_230); -x_233 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_232, x_3, x_4, x_5, x_6, x_7, x_8, x_211); +lean_ctor_set(x_225, 2, x_223); +x_226 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_225, x_3, x_4, x_5, x_6, x_7, x_8, x_204); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_233; +return x_226; } } default: { -lean_object* x_234; lean_object* x_235; -lean_dec(x_27); -lean_dec(x_24); +uint8_t x_227; +lean_dec(x_195); +x_227 = lean_unbox(x_19); lean_dec(x_19); +if (x_227 == 0) +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; +lean_dec(x_24); lean_dec(x_15); +x_228 = l_Lean_instInhabitedSyntax; +x_229 = l_Array_back___rarg(x_228, x_1); lean_dec(x_1); -x_234 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13; -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_235 = l_panic___at_Lean_PrettyPrinter_Delaborator_delabFVar___spec__1(x_234, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_235) == 0) -{ -lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_236 = lean_ctor_get(x_235, 0); -lean_inc(x_236); -x_237 = lean_ctor_get(x_235, 1); -lean_inc(x_237); -lean_dec(x_235); -x_238 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_236, x_3, x_4, x_5, x_6, x_7, x_8, x_237); +x_230 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_229, x_3, x_4, x_5, x_6, x_7, x_8, x_23); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_238; +return x_230; } else { -uint8_t x_239; +lean_object* x_231; +x_231 = lean_box(0); +x_27 = x_231; +goto block_55; +} +} +} +} +} +block_55: +{ +lean_object* x_28; uint8_t x_29; +lean_dec(x_27); +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_dec_lt(x_28, x_24); +lean_dec(x_24); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_30 = l_Lean_instInhabitedSyntax; +x_31 = lean_array_get(x_30, x_1, x_25); +lean_dec(x_1); +lean_inc(x_7); +x_32 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(x_15, x_31, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_33, x_3, x_4, x_5, x_6, x_7, x_8, x_34); lean_dec(x_8); -lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_239 = !lean_is_exclusive(x_235); -if (x_239 == 0) -{ -return x_235; +return x_35; } else { -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_235, 0); -x_241 = lean_ctor_get(x_235, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_235); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -} -} -} -block_46: -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -lean_dec(x_28); +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_inc(x_7); -x_29 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -x_32 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; -lean_inc(x_30); -x_33 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_33, 0, x_30); -lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__5; -x_35 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_35, 0, x_30); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_37 = lean_array_push(x_36, x_33); -x_38 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_39 = lean_array_push(x_37, x_38); -x_40 = lean_array_push(x_39, x_15); -x_41 = lean_array_push(x_40, x_35); -x_42 = lean_box(2); -x_43 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; -x_44 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_44, 2, x_41); -x_45 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_44, x_3, x_4, x_5, x_6, x_7, x_8, x_31); +x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec(x_36); +x_38 = l_Lean_instInhabitedSyntax; +x_39 = lean_array_get(x_38, x_1, x_25); +x_40 = l_Array_eraseIdx___rarg(x_1, x_25); +x_41 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_42 = l_Array_append___rarg(x_41, x_40); +x_43 = lean_box(2); +x_44 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_45 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_45, 2, x_42); +x_46 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_47 = lean_array_push(x_46, x_39); +x_48 = lean_array_push(x_47, x_45); +x_49 = l_Lean_PrettyPrinter_Delaborator_unexpandCoe___lambda__1___closed__1; +x_50 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_50, 0, x_43); +lean_ctor_set(x_50, 1, x_49); +lean_ctor_set(x_50, 2, x_48); +lean_inc(x_7); +x_51 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(x_15, x_50, x_3, x_4, x_5, x_6, x_7, x_8, x_37); +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_52, x_3, x_4, x_5, x_6, x_7, x_8, x_53); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_45; +return x_54; +} } block_74: { -uint8_t x_49; -lean_dec(x_48); -x_49 = lean_unbox(x_19); -lean_dec(x_19); -if (x_49 == 0) -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -lean_dec(x_27); -lean_dec(x_24); -lean_dec(x_15); -x_50 = l_Lean_instInhabitedSyntax; -x_51 = l_Array_back___rarg(x_50, x_1); -lean_dec(x_1); -x_52 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_51, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_56); +lean_inc(x_7); +x_57 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec(x_57); +x_60 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; +lean_inc(x_58); +x_61 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_61, 0, x_58); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__5; +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_58); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_65 = lean_array_push(x_64, x_61); +x_66 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_67 = lean_array_push(x_65, x_66); +x_68 = lean_array_push(x_67, x_15); +x_69 = lean_array_push(x_68, x_63); +x_70 = lean_box(2); +x_71 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; +x_72 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +lean_ctor_set(x_72, 2, x_69); +x_73 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_72, x_3, x_4, x_5, x_6, x_7, x_8, x_59); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_52; -} -else -{ -lean_object* x_53; uint8_t x_54; -lean_dec(x_2); -x_53 = lean_unsigned_to_nat(1u); -x_54 = lean_nat_dec_lt(x_53, x_24); -lean_dec(x_24); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = l_Lean_instInhabitedSyntax; -x_56 = lean_array_get(x_55, x_1, x_25); -lean_dec(x_1); -x_57 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(x_15, x_27, x_56, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -return x_57; -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_inc(x_7); -x_58 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); -lean_dec(x_58); -x_60 = l_Lean_instInhabitedSyntax; -x_61 = lean_array_get(x_60, x_1, x_25); -x_62 = l_Array_eraseIdx___rarg(x_1, x_25); -x_63 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_64 = l_Array_append___rarg(x_63, x_62); -x_65 = lean_box(2); -x_66 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_67 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -lean_ctor_set(x_67, 2, x_64); -x_68 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_69 = lean_array_push(x_68, x_61); -x_70 = lean_array_push(x_69, x_67); -x_71 = l_Lean_PrettyPrinter_Delaborator_unexpandCoe___lambda__1___closed__1; -x_72 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_72, 0, x_65); -lean_ctor_set(x_72, 1, x_71); -lean_ctor_set(x_72, 2, x_70); -x_73 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(x_15, x_27, x_72, x_3, x_4, x_5, x_6, x_7, x_8, x_59); return x_73; } -} -} -block_124: +block_125: { -uint8_t x_76; -lean_dec(x_75); -x_76 = lean_unbox(x_19); +uint8_t x_77; +lean_dec(x_76); +x_77 = lean_unbox(x_19); lean_dec(x_19); -if (x_76 == 0) +if (x_77 == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_dec(x_15); lean_inc(x_7); -x_77 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); +x_78 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -lean_dec(x_77); -x_80 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__7; -lean_inc(x_78); -x_81 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_83 = l_Array_append___rarg(x_82, x_1); -x_84 = lean_box(2); -x_85 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_86 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_86, 0, x_84); -lean_ctor_set(x_86, 1, x_85); -lean_ctor_set(x_86, 2, x_83); -x_87 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__13; -x_88 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_88, 0, x_78); -lean_ctor_set(x_88, 1, x_87); -x_89 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_90 = lean_array_push(x_89, x_81); -x_91 = lean_array_push(x_90, x_86); -x_92 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_93 = lean_array_push(x_91, x_92); -x_94 = lean_array_push(x_93, x_88); -x_95 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; -x_96 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_96, 0, x_84); -lean_ctor_set(x_96, 1, x_95); -lean_ctor_set(x_96, 2, x_94); -x_97 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_96, x_3, x_4, x_5, x_6, x_7, x_8, x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +lean_dec(x_78); +x_81 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__7; +lean_inc(x_79); +x_82 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_84 = l_Array_append___rarg(x_83, x_1); +x_85 = lean_box(2); +x_86 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_87 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +lean_ctor_set(x_87, 2, x_84); +x_88 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__13; +x_89 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_89, 0, x_79); +lean_ctor_set(x_89, 1, x_88); +x_90 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_91 = lean_array_push(x_90, x_82); +x_92 = lean_array_push(x_91, x_87); +x_93 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_94 = lean_array_push(x_92, x_93); +x_95 = lean_array_push(x_94, x_89); +x_96 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; +x_97 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_97, 0, x_85); +lean_ctor_set(x_97, 1, x_96); +lean_ctor_set(x_97, 2, x_95); +x_98 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_97, x_3, x_4, x_5, x_6, x_7, x_8, x_80); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_97; +return x_98; } else { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_inc(x_7); -x_98 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_99 = lean_ctor_get(x_98, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_98, 1); +x_99 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); -lean_dec(x_98); -x_101 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__7; -lean_inc(x_99); -x_102 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_104 = l_Array_append___rarg(x_103, x_1); -x_105 = lean_box(2); -x_106 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_107 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -lean_ctor_set(x_107, 2, x_104); -x_108 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; -lean_inc(x_99); -x_109 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_109, 0, x_99); -lean_ctor_set(x_109, 1, x_108); -x_110 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_111 = lean_array_push(x_110, x_109); -x_112 = lean_array_push(x_111, x_15); -x_113 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_113, 0, x_105); -lean_ctor_set(x_113, 1, x_106); -lean_ctor_set(x_113, 2, x_112); -x_114 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__13; -x_115 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_115, 0, x_99); -lean_ctor_set(x_115, 1, x_114); -x_116 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_117 = lean_array_push(x_116, x_102); -x_118 = lean_array_push(x_117, x_107); -x_119 = lean_array_push(x_118, x_113); -x_120 = lean_array_push(x_119, x_115); -x_121 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; -x_122 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_122, 0, x_105); -lean_ctor_set(x_122, 1, x_121); -lean_ctor_set(x_122, 2, x_120); -x_123 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_122, x_3, x_4, x_5, x_6, x_7, x_8, x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec(x_99); +x_102 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__7; +lean_inc(x_100); +x_103 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_103, 0, x_100); +lean_ctor_set(x_103, 1, x_102); +x_104 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_105 = l_Array_append___rarg(x_104, x_1); +x_106 = lean_box(2); +x_107 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_108 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_107); +lean_ctor_set(x_108, 2, x_105); +x_109 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; +lean_inc(x_100); +x_110 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_110, 0, x_100); +lean_ctor_set(x_110, 1, x_109); +x_111 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_112 = lean_array_push(x_111, x_110); +x_113 = lean_array_push(x_112, x_15); +x_114 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_114, 0, x_106); +lean_ctor_set(x_114, 1, x_107); +lean_ctor_set(x_114, 2, x_113); +x_115 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__13; +x_116 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_116, 0, x_100); +lean_ctor_set(x_116, 1, x_115); +x_117 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_118 = lean_array_push(x_117, x_103); +x_119 = lean_array_push(x_118, x_108); +x_120 = lean_array_push(x_119, x_114); +x_121 = lean_array_push(x_120, x_116); +x_122 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; +x_123 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_123, 0, x_106); +lean_ctor_set(x_123, 1, x_122); +lean_ctor_set(x_123, 2, x_121); +x_124 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_123, x_3, x_4, x_5, x_6, x_7, x_8, x_101); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_123; +return x_124; } } -block_174: +block_175: { -uint8_t x_126; -lean_dec(x_125); -x_126 = lean_unbox(x_19); +uint8_t x_127; +lean_dec(x_126); +x_127 = lean_unbox(x_19); lean_dec(x_19); -if (x_126 == 0) +if (x_127 == 0) { -lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_dec(x_15); lean_inc(x_7); -x_127 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); +x_128 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_129 = lean_ctor_get(x_128, 0); lean_inc(x_129); -lean_dec(x_127); -x_130 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; -lean_inc(x_128); -x_131 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_131, 0, x_128); -lean_ctor_set(x_131, 1, x_130); -x_132 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_133 = l_Array_append___rarg(x_132, x_1); -x_134 = lean_box(2); -x_135 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_136 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -lean_ctor_set(x_136, 2, x_133); -x_137 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; -x_138 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_138, 0, x_128); -lean_ctor_set(x_138, 1, x_137); -x_139 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_140 = lean_array_push(x_139, x_131); -x_141 = lean_array_push(x_140, x_136); -x_142 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_143 = lean_array_push(x_141, x_142); -x_144 = lean_array_push(x_143, x_138); -x_145 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; -x_146 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_146, 0, x_134); -lean_ctor_set(x_146, 1, x_145); -lean_ctor_set(x_146, 2, x_144); -x_147 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_146, x_3, x_4, x_5, x_6, x_7, x_8, x_129); +x_130 = lean_ctor_get(x_128, 1); +lean_inc(x_130); +lean_dec(x_128); +x_131 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; +lean_inc(x_129); +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_129); +lean_ctor_set(x_132, 1, x_131); +x_133 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_134 = l_Array_append___rarg(x_133, x_1); +x_135 = lean_box(2); +x_136 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_137 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +lean_ctor_set(x_137, 2, x_134); +x_138 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; +x_139 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_139, 0, x_129); +lean_ctor_set(x_139, 1, x_138); +x_140 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_141 = lean_array_push(x_140, x_132); +x_142 = lean_array_push(x_141, x_137); +x_143 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_144 = lean_array_push(x_142, x_143); +x_145 = lean_array_push(x_144, x_139); +x_146 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; +x_147 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_147, 0, x_135); +lean_ctor_set(x_147, 1, x_146); +lean_ctor_set(x_147, 2, x_145); +x_148 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_147, x_3, x_4, x_5, x_6, x_7, x_8, x_130); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_147; +return x_148; } else { -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_inc(x_7); -x_148 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_149 = lean_ctor_get(x_148, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_148, 1); +x_149 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); -lean_dec(x_148); -x_151 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; -lean_inc(x_149); -x_152 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_152, 0, x_149); -lean_ctor_set(x_152, 1, x_151); -x_153 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_154 = l_Array_append___rarg(x_153, x_1); -x_155 = lean_box(2); -x_156 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_157 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -lean_ctor_set(x_157, 2, x_154); -x_158 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; -lean_inc(x_149); -x_159 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_159, 0, x_149); -lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_161 = lean_array_push(x_160, x_159); -x_162 = lean_array_push(x_161, x_15); -x_163 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_163, 0, x_155); -lean_ctor_set(x_163, 1, x_156); -lean_ctor_set(x_163, 2, x_162); -x_164 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; -x_165 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_165, 0, x_149); -lean_ctor_set(x_165, 1, x_164); -x_166 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; -x_167 = lean_array_push(x_166, x_152); -x_168 = lean_array_push(x_167, x_157); -x_169 = lean_array_push(x_168, x_163); -x_170 = lean_array_push(x_169, x_165); -x_171 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; -x_172 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_172, 0, x_155); -lean_ctor_set(x_172, 1, x_171); -lean_ctor_set(x_172, 2, x_170); -x_173 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_172, x_3, x_4, x_5, x_6, x_7, x_8, x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +lean_dec(x_149); +x_152 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; +lean_inc(x_150); +x_153 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_153, 0, x_150); +lean_ctor_set(x_153, 1, x_152); +x_154 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_155 = l_Array_append___rarg(x_154, x_1); +x_156 = lean_box(2); +x_157 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_158 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_158, 2, x_155); +x_159 = l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__5___closed__8; +lean_inc(x_150); +x_160 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_160, 0, x_150); +lean_ctor_set(x_160, 1, x_159); +x_161 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_162 = lean_array_push(x_161, x_160); +x_163 = lean_array_push(x_162, x_15); +x_164 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_164, 0, x_156); +lean_ctor_set(x_164, 1, x_157); +lean_ctor_set(x_164, 2, x_163); +x_165 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; +x_166 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_166, 0, x_150); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; +x_168 = lean_array_push(x_167, x_153); +x_169 = lean_array_push(x_168, x_158); +x_170 = lean_array_push(x_169, x_164); +x_171 = lean_array_push(x_170, x_166); +x_172 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; +x_173 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_173, 0, x_156); +lean_ctor_set(x_173, 1, x_172); +lean_ctor_set(x_173, 2, x_171); +x_174 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_173, x_3, x_4, x_5, x_6, x_7, x_8, x_151); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_173; +return x_174; } } } else { -uint8_t x_243; +uint8_t x_232; lean_dec(x_19); lean_dec(x_15); lean_dec(x_11); @@ -22082,29 +21995,29 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_243 = !lean_is_exclusive(x_22); -if (x_243 == 0) +x_232 = !lean_is_exclusive(x_22); +if (x_232 == 0) { return x_22; } else { -lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_244 = lean_ctor_get(x_22, 0); -x_245 = lean_ctor_get(x_22, 1); -lean_inc(x_245); -lean_inc(x_244); +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_22, 0); +x_234 = lean_ctor_get(x_22, 1); +lean_inc(x_234); +lean_inc(x_233); lean_dec(x_22); -x_246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_246, 0, x_244); -lean_ctor_set(x_246, 1, x_245); -return x_246; +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; } } } else { -uint8_t x_247; +uint8_t x_236; lean_dec(x_15); lean_dec(x_11); lean_dec(x_8); @@ -22115,29 +22028,29 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_247 = !lean_is_exclusive(x_18); -if (x_247 == 0) +x_236 = !lean_is_exclusive(x_18); +if (x_236 == 0) { return x_18; } else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; -x_248 = lean_ctor_get(x_18, 0); -x_249 = lean_ctor_get(x_18, 1); -lean_inc(x_249); -lean_inc(x_248); +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_18, 0); +x_238 = lean_ctor_get(x_18, 1); +lean_inc(x_238); +lean_inc(x_237); lean_dec(x_18); -x_250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_250, 0, x_248); -lean_ctor_set(x_250, 1, x_249); -return x_250; +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; } } } else { -uint8_t x_251; +uint8_t x_240; lean_dec(x_11); lean_dec(x_8); lean_dec(x_7); @@ -22147,23 +22060,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_251 = !lean_is_exclusive(x_14); -if (x_251 == 0) +x_240 = !lean_is_exclusive(x_14); +if (x_240 == 0) { return x_14; } else { -lean_object* x_252; lean_object* x_253; lean_object* x_254; -x_252 = lean_ctor_get(x_14, 0); -x_253 = lean_ctor_get(x_14, 1); -lean_inc(x_253); -lean_inc(x_252); +lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_241 = lean_ctor_get(x_14, 0); +x_242 = lean_ctor_get(x_14, 1); +lean_inc(x_242); +lean_inc(x_241); lean_dec(x_14); -x_254 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_254, 0, x_252); -lean_ctor_set(x_254, 1, x_253); -return x_254; +x_243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +return x_243; } } } @@ -22213,6 +22126,19 @@ lean_dec(x_3); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_10; +} +} static lean_object* _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1() { _start: { @@ -24296,7 +24222,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__1; -x_3 = lean_unsigned_to_nat(579u); +x_3 = lean_unsigned_to_nat(582u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25050,7 +24976,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; -x_3 = lean_unsigned_to_nat(592u); +x_3 = lean_unsigned_to_nat(595u); x_4 = lean_unsigned_to_nat(31u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26442,7 +26368,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabProj___closed__1; -x_3 = lean_unsigned_to_nat(631u); +x_3 = lean_unsigned_to_nat(634u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29960,7 +29886,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabDoElems___closed__5; -x_3 = lean_unsigned_to_nat(723u); +x_3 = lean_unsigned_to_nat(726u); x_4 = lean_unsigned_to_nat(40u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -32158,10 +32084,6 @@ l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10 = _init_l_Lea lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10); l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11); -l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12); -l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__13); l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1(); diff --git a/stage0/stdlib/Lean/Server/InfoUtils.c b/stage0/stdlib/Lean/Server/InfoUtils.c index 331846bcce..d82601d04e 100644 --- a/stage0/stdlib/Lean/Server/InfoUtils.c +++ b/stage0/stdlib/Lean/Server/InfoUtils.c @@ -634,51 +634,52 @@ return x_4; LEAN_EXPORT lean_object* l_Lean_Syntax_getRange_x3f(lean_object* x_1, uint8_t x_2) { _start: { -lean_object* x_3; -x_3 = l_Lean_Syntax_getPos_x3f(x_1, x_2); +lean_object* x_3; lean_object* x_4; +lean_inc(x_1); +x_3 = l_Lean_Syntax_getTailPos_x3f(x_1, x_2); +x_4 = l_Lean_Syntax_getPos_x3f(x_1, x_2); +lean_dec(x_1); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +lean_dec(x_3); +x_5 = lean_box(0); +return x_5; +} +else +{ if (lean_obj_tag(x_3) == 0) { -lean_object* x_4; -lean_dec(x_1); -x_4 = lean_box(0); -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); -lean_dec(x_3); -x_6 = l_Lean_Syntax_getTailPos_x3f(x_1, x_2); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -lean_dec(x_5); -x_7 = lean_box(0); -return x_7; -} -else -{ -uint8_t x_8; -x_8 = !lean_is_exclusive(x_6); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 0); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_5); -lean_ctor_set(x_10, 1, x_9); -lean_ctor_set(x_6, 0, x_10); +lean_object* x_6; +lean_dec(x_4); +x_6 = lean_box(0); return x_6; } else { +lean_object* x_7; uint8_t x_8; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +lean_dec(x_4); +x_8 = !lean_is_exclusive(x_3); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_3, 0); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_9); +lean_ctor_set(x_3, 0, x_10); +return x_3; +} +else +{ lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = lean_ctor_get(x_6, 0); +x_11 = lean_ctor_get(x_3, 0); lean_inc(x_11); -lean_dec(x_6); +lean_dec(x_3); x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 0, x_7); lean_ctor_set(x_12, 1, x_11); x_13 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_13, 0, x_12); @@ -3134,37 +3135,37 @@ return x_2; LEAN_EXPORT uint8_t l_Lean_Elab_Info_isSmaller(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = l_Lean_Elab_Info_size_x3f(x_1); +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Elab_Info_pos_x3f(x_2); +x_4 = l_Lean_Elab_Info_size_x3f(x_1); +if (lean_obj_tag(x_4) == 0) +{ +uint8_t x_5; +lean_dec(x_3); +x_5 = 0; +return x_5; +} +else +{ if (lean_obj_tag(x_3) == 0) { -uint8_t x_4; -x_4 = 0; -return x_4; +uint8_t x_6; +lean_dec(x_4); +x_6 = 1; +return x_6; } else { -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); -lean_dec(x_3); -x_6 = l_Lean_Elab_Info_pos_x3f(x_2); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -lean_dec(x_5); -x_7 = 1; -return x_7; -} -else -{ -lean_object* x_8; uint8_t x_9; -x_8 = lean_ctor_get(x_6, 0); +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +lean_dec(x_4); +x_8 = lean_ctor_get(x_3, 0); lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_nat_dec_lt(x_5, x_8); +lean_dec(x_3); +x_9 = lean_nat_dec_lt(x_7, x_8); lean_dec(x_8); -lean_dec(x_5); +lean_dec(x_7); return x_9; } }