From 71cfbb26decfee063482cb0c7bab05e9b0bb9aeb Mon Sep 17 00:00:00 2001 From: Lean stage0 autoupdater <> Date: Wed, 21 Feb 2024 15:19:07 +0000 Subject: [PATCH] chore: update stage0 --- stage0/src/stdlib_flags.h | 2 +- stage0/stdlib/Init/Data.c | 6 +- stage0/stdlib/Init/Data/BitVec/Basic.c | 22 +- stage0/stdlib/Init/Data/List/BasicAux.c | 122 +- stage0/stdlib/Init/Data/List/Lemmas.c | 98 +- stage0/stdlib/Init/Data/String/Extra.c | 8 +- stage0/stdlib/Init/Data/Sum.c | 348 + stage0/stdlib/Init/Meta.c | 3118 +- stage0/stdlib/Init/Omega/Int.c | 10 +- stage0/stdlib/Init/System/IO.c | 778 +- stage0/stdlib/Init/System/Uri.c | 6 +- stage0/stdlib/Init/Tactics.c | 1082 + stage0/stdlib/Lean.c | 6 +- stage0/stdlib/Lean/Compiler/LCNF/JoinPoints.c | 2 +- stage0/stdlib/Lean/Data/KVMap.c | 4 +- stage0/stdlib/Lean/Data/RBMap.c | 12 +- stage0/stdlib/Lean/DocString.c | 500 +- stage0/stdlib/Lean/Elab/PatternVar.c | 476 +- stage0/stdlib/Lean/Elab/Syntax.c | 4 +- stage0/stdlib/Lean/Elab/Tactic.c | 10 +- stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c | 2319 +- .../stdlib/Lean/Elab/Tactic/Omega/Frontend.c | 24347 +++++++++------- stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c | 1788 +- stage0/stdlib/Lean/Elab/Tactic/RCases.c | 20 +- stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c | 7695 +++++ stage0/stdlib/Lean/Elab/Tactic/Symm.c | 1024 + stage0/stdlib/Lean/LabelAttribute.c | 3272 +++ stage0/stdlib/Lean/Meta.c | 6 +- stage0/stdlib/Lean/Meta/CollectMVars.c | 2842 ++ stage0/stdlib/Lean/Meta/Iterator.c | 813 + stage0/stdlib/Lean/Meta/Tactic.c | 18 +- stage0/stdlib/Lean/Meta/Tactic/Apply.c | 85 +- stage0/stdlib/Lean/Meta/Tactic/Assert.c | 2227 +- stage0/stdlib/Lean/Meta/Tactic/Backtrack.c | 6288 ++++ .../stdlib/Lean/Meta/Tactic/IndependentOf.c | 557 + stage0/stdlib/Lean/Meta/Tactic/Replace.c | 1313 +- .../Lean/Meta/Tactic/Simp/SimpTheorems.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/SolveByElim.c | 8282 ++++++ stage0/stdlib/Lean/Meta/Tactic/Symm.c | 7377 +++++ stage0/stdlib/Lean/Meta/Tactic/Util.c | 188 + stage0/stdlib/Lean/Parser.c | 1216 +- stage0/stdlib/Lean/Parser/Basic.c | 2421 +- stage0/stdlib/Lean/Parser/Command.c | 1965 +- stage0/stdlib/Lean/Parser/Extension.c | 820 +- stage0/stdlib/Lean/Parser/Module.c | 1208 +- stage0/stdlib/Lean/Parser/Types.c | 1748 +- stage0/stdlib/Lean/PrettyPrinter/Formatter.c | 226 +- .../stdlib/Lean/PrettyPrinter/Parenthesizer.c | 152 +- stage0/stdlib/Lean/Util/Trace.c | 37 + 49 files changed, 67901 insertions(+), 18971 deletions(-) create mode 100644 stage0/stdlib/Init/Data/Sum.c create mode 100644 stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c create mode 100644 stage0/stdlib/Lean/Elab/Tactic/Symm.c create mode 100644 stage0/stdlib/Lean/LabelAttribute.c create mode 100644 stage0/stdlib/Lean/Meta/Iterator.c create mode 100644 stage0/stdlib/Lean/Meta/Tactic/Backtrack.c create mode 100644 stage0/stdlib/Lean/Meta/Tactic/IndependentOf.c create mode 100644 stage0/stdlib/Lean/Meta/Tactic/SolveByElim.c create mode 100644 stage0/stdlib/Lean/Meta/Tactic/Symm.c diff --git a/stage0/src/stdlib_flags.h b/stage0/src/stdlib_flags.h index cb8a954a4d..0699845ba4 100644 --- a/stage0/src/stdlib_flags.h +++ b/stage0/src/stdlib_flags.h @@ -6,7 +6,7 @@ options get_default_options() { // see https://lean-lang.org/lean4/doc/dev/bootstrap.html#further-bootstrapping-complications #if LEAN_IS_STAGE0 == 1 // switch to `true` for ABI-breaking changes affecting meta code - opts = opts.update({"interpreter", "prefer_native"}, true); + opts = opts.update({"interpreter", "prefer_native"}, false); // switch to `true` for changing built-in parsers used in quotations opts = opts.update({"internal", "parseQuotWithCurrentStage"}, false); // toggling `parseQuotWithCurrentStage` may also require toggling the following option if macros/syntax diff --git a/stage0/stdlib/Init/Data.c b/stage0/stdlib/Init/Data.c index 0bcd71b6ac..4c51f2eb07 100644 --- a/stage0/stdlib/Init/Data.c +++ b/stage0/stdlib/Init/Data.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data -// Imports: Init.Data.Basic Init.Data.Nat Init.Data.Bool Init.Data.BitVec Init.Data.Cast Init.Data.Char Init.Data.String Init.Data.List Init.Data.Int Init.Data.Array Init.Data.ByteArray Init.Data.FloatArray Init.Data.Fin Init.Data.UInt Init.Data.Float Init.Data.Option Init.Data.Ord Init.Data.Random Init.Data.ToString Init.Data.Range Init.Data.Hashable Init.Data.OfScientific Init.Data.Format Init.Data.Stream Init.Data.Prod Init.Data.AC Init.Data.Queue Init.Data.Channel Init.Data.Cast +// Imports: Init.Data.Basic Init.Data.Nat Init.Data.Bool Init.Data.BitVec Init.Data.Cast Init.Data.Char Init.Data.String Init.Data.List Init.Data.Int Init.Data.Array Init.Data.ByteArray Init.Data.FloatArray Init.Data.Fin Init.Data.UInt Init.Data.Float Init.Data.Option Init.Data.Ord Init.Data.Random Init.Data.ToString Init.Data.Range Init.Data.Hashable Init.Data.OfScientific Init.Data.Format Init.Data.Stream Init.Data.Prod Init.Data.AC Init.Data.Queue Init.Data.Channel Init.Data.Cast Init.Data.Sum #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -42,6 +42,7 @@ lean_object* initialize_Init_Data_AC(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Queue(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Channel(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Cast(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Sum(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data(uint8_t builtin, lean_object* w) { lean_object * res; @@ -134,6 +135,9 @@ lean_dec_ref(res); res = initialize_Init_Data_Cast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Sum(builtin, 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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/BitVec/Basic.c b/stage0/stdlib/Init/Data/BitVec/Basic.c index 6eb2cfba23..8afaa794e3 100644 --- a/stage0/stdlib/Init/Data/BitVec/Basic.c +++ b/stage0/stdlib/Init/Data/BitVec/Basic.c @@ -58,6 +58,7 @@ static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRule LEAN_EXPORT uint8_t l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg(lean_object*, lean_object*); static lean_object* l_Std_BitVec_term_____x23_______closed__6; LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_BitVec_decEq___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_shiftLeft___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_srem(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_BitVec_nil___closed__1; @@ -73,6 +74,7 @@ LEAN_EXPORT lean_object* l_Std_BitVec_toHex(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__16; +LEAN_EXPORT uint8_t l_Std_BitVec_decEq___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_allOnes(lean_object*); static lean_object* l_Std_BitVec_instHShiftRightBitVecNat___closed__1; LEAN_EXPORT lean_object* l_Std_BitVec_cast___rarg(lean_object*); @@ -86,6 +88,7 @@ LEAN_EXPORT uint8_t l_Std_BitVec_ule___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instNatCastBitVec(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_zero___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instHShiftLeftBitVec___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_BitVec_decEq___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instAddBitVec(lean_object*); @@ -123,6 +126,7 @@ LEAN_EXPORT lean_object* l_Std_BitVec_toInt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_zeroExtend_x27___rarg(lean_object*); static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__4; static lean_object* l_Std_BitVec_term_____x23_______closed__8; +LEAN_EXPORT lean_object* l_Std_BitVec_decEq(lean_object*); lean_object* lean_string_mk(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_ult___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instComplementBitVec(lean_object*); @@ -136,7 +140,6 @@ LEAN_EXPORT lean_object* l_Std_BitVec_instDivBitVec(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_ushiftRight___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_smtUDiv___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_umod(lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLtBitVecInstLTBitVec(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_sshiftRight___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -234,7 +237,6 @@ static lean_object* l_Std_BitVec_term_____x23_______closed__10; uint8_t lean_int_dec_lt(lean_object*, lean_object*); static lean_object* l_Std_BitVec___aux__Init__Data__BitVec__Basic______macroRules__Std__BitVec__term_____x23______1___closed__10; lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_cons___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_concat(lean_object*); @@ -246,7 +248,6 @@ LEAN_EXPORT lean_object* l_Std_BitVec_cons(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_and(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_sub(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instXorBitVec___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_mul(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_extractLsb_x27___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_and___rarg___boxed(lean_object*, lean_object*); @@ -271,7 +272,6 @@ LEAN_EXPORT lean_object* l_Std_BitVec_concat___boxed(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Std_BitVec_term_____x23_______closed__13; static lean_object* l_Std_BitVec_ofBool___closed__1; -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23_(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Std_BitVec_ofInt___closed__1; LEAN_EXPORT lean_object* l_Std_BitVec_instAndOpBitVec___boxed(lean_object*); @@ -297,7 +297,7 @@ lean_object* l_Nat_repr(lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_truncate(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_instDecidableLeBitVecInstLEBitVec___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_BitVec_mul___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Std_BitVec_decEq___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -305,30 +305,30 @@ x_3 = lean_nat_dec_eq(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Std_BitVec_decEq(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_BitVec_decEq___rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_BitVec_decEq___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____rarg(x_1, x_2); +x_3 = l_Std_BitVec_decEq___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Std_BitVec_decEq___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Data_BitVec_Basic_0__Std_decEqBitVec____x40_Init_Data_BitVec_Basic___hyg_23_(x_1); +x_2 = l_Std_BitVec_decEq(x_1); lean_dec(x_1); return x_2; } diff --git a/stage0/stdlib/Init/Data/List/BasicAux.c b/stage0/stdlib/Init/Data/List/BasicAux.c index 3a57f748a3..953510d738 100644 --- a/stage0/stdlib/Init/Data/List/BasicAux.c +++ b/stage0/stdlib/Init/Data/List/BasicAux.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.List.BasicAux -// Imports: Init.Data.Nat.Linear Init.Data.List.Basic Init.Util +// Imports: Init.Data.Nat.Linear Init.Data.Array.Basic Init.Data.List.Basic Init.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -27,11 +27,13 @@ lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__14; LEAN_EXPORT lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__tacticDecreasing__trivial__1(lean_object*, lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__15; +LEAN_EXPORT lean_object* l_List_partitionM_go(lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__49; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__31; static lean_object* l_List_get_x21___rarg___closed__4; LEAN_EXPORT lean_object* l_List_getLastD___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_getLast_x3f(lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_List_rotateRight___rarg(lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__29; @@ -49,11 +51,13 @@ static lean_object* l_List_tacticSizeOf__list__dec___closed__3; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__55; +LEAN_EXPORT lean_object* l_List_partitionM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_head_x21(lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__5; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__4; LEAN_EXPORT lean_object* l_List_head_x21___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_mapMonoMImp___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__24; LEAN_EXPORT lean_object* l_List_head___rarg___boxed(lean_object*, lean_object*); @@ -84,6 +88,7 @@ static lean_object* l_List_tacticSizeOf__list__dec___closed__4; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__42; LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_mapMonoMImp___at_List_mapMono___spec__1(lean_object*); LEAN_EXPORT lean_object* l_List_getD___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__46; LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_get_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -111,6 +116,7 @@ LEAN_EXPORT lean_object* l_List_tail_x21___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_get_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_head_x21___rarg___boxed(lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__38; +LEAN_EXPORT lean_object* l_List_partitionM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_getLastD(lean_object*); lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_tail_x3f___rarg(lean_object*); @@ -134,6 +140,7 @@ static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__Li LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_mapMonoMImp___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_List_tacticSizeOf__list__dec___closed__6; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_List_get_x21___rarg___closed__2; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__41; lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); @@ -163,6 +170,7 @@ static lean_object* l_List_head_x21___rarg___closed__3; static lean_object* l_List_head_x21___rarg___closed__1; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__53; LEAN_EXPORT lean_object* l___private_Init_Data_List_BasicAux_0__List_get_match__1_splitter(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__19; static lean_object* l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__2; static lean_object* l_List_head_x21___rarg___closed__2; @@ -210,7 +218,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_List_get_x21___rarg___closed__1; x_2 = l_List_get_x21___rarg___closed__2; -x_3 = lean_unsigned_to_nat(20u); +x_3 = lean_unsigned_to_nat(21u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_List_get_x21___rarg___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -388,7 +396,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_List_get_x21___rarg___closed__1; x_2 = l_List_head_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(31u); +x_3 = lean_unsigned_to_nat(32u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_List_head_x21___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -561,7 +569,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_List_get_x21___rarg___closed__1; x_2 = l_List_tail_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(46u); +x_3 = lean_unsigned_to_nat(47u); x_4 = lean_unsigned_to_nat(13u); x_5 = l_List_head_x21___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -733,7 +741,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_List_get_x21___rarg___closed__1; x_2 = l_List_getLast_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(63u); +x_3 = lean_unsigned_to_nat(64u); x_4 = lean_unsigned_to_nat(13u); x_5 = l_List_head_x21___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2178,7 +2186,108 @@ x_2 = lean_alloc_closure((void*)(l_List_mapMono___rarg), 2, 0); return x_2; } } +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7) { +_start: +{ +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_array_push(x_1, x_2); +x_9 = l_List_partitionM_go___rarg(x_3, x_4, x_5, x_6, x_8); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_array_push(x_6, x_2); +x_11 = l_List_partitionM_go___rarg(x_3, x_4, x_5, x_10, x_1); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_2); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = lean_array_to_list(lean_box(0), x_4); +x_9 = lean_array_to_list(lean_box(0), x_5); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_9); +x_11 = lean_apply_2(x_7, lean_box(0), x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_3, 1); +lean_inc(x_13); +lean_dec(x_3); +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +lean_inc(x_2); +lean_inc(x_12); +x_15 = lean_apply_1(x_2, x_12); +x_16 = lean_alloc_closure((void*)(l_List_partitionM_go___rarg___lambda__1___boxed), 7, 6); +lean_closure_set(x_16, 0, x_5); +lean_closure_set(x_16, 1, x_12); +lean_closure_set(x_16, 2, x_1); +lean_closure_set(x_16, 3, x_2); +lean_closure_set(x_16, 4, x_13); +lean_closure_set(x_16, 5, x_4); +x_17 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_15, x_16); +return x_17; +} +} +} +LEAN_EXPORT lean_object* l_List_partitionM_go(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_List_partitionM_go___rarg), 5, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_partitionM_go___rarg___lambda__1___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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_7); +lean_dec(x_7); +x_9 = l_List_partitionM_go___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_partitionM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_List___aux__Init__Data__List__BasicAux______macroRules__List__tacticSizeOf__list__dec__1___closed__48; +x_5 = l_List_partitionM_go___rarg(x_1, x_2, x_3, x_4, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_List_partitionM(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_List_partitionM___rarg), 3, 0); +return x_3; +} +} lean_object* initialize_Init_Data_Nat_Linear(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Array_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Util(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -2189,6 +2298,9 @@ _G_initialized = true; res = initialize_Init_Data_Nat_Linear(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Array_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_Data_List_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Data/List/Lemmas.c b/stage0/stdlib/Init/Data/List/Lemmas.c index 8f5575b539..c2d3f8c229 100644 --- a/stage0/stdlib/Init/Data/List/Lemmas.c +++ b/stage0/stdlib/Init/Data/List/Lemmas.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.List.Lemmas -// Imports: Init.Data.List.BasicAux Init.Data.List.Control Init.PropLemmas Init.Control.Lawful Init.Hints +// Imports: Init.Data.List.BasicAux Init.Data.List.Control Init.Data.Nat.Lemmas Init.PropLemmas Init.Control.Lawful Init.Hints #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -58,6 +58,52 @@ LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_mapM_x27_matc LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_zipWith__get_x3f_match__1_splitter(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_x27___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_getLast_match__1_splitter(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_nat_dec_eq(x_2, x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_3); +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_sub(x_2, x_9); +x_11 = lean_apply_4(x_4, x_5, x_6, x_10, lean_box(0)); +return x_11; +} +else +{ +lean_object* x_12; +lean_dec(x_4); +x_12 = lean_apply_3(x_3, x_5, x_6, lean_box(0)); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg___boxed), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg(x_1, x_2, x_3, x_4); +lean_dec(x_2); +return x_5; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_join_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -201,52 +247,6 @@ x_3 = lean_alloc_closure((void*)(l___private_Init_Data_List_Lemmas_0__List_getLa return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 1); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_nat_dec_eq(x_2, x_7); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -lean_dec(x_3); -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_sub(x_2, x_9); -x_11 = lean_apply_4(x_4, x_5, x_6, x_10, lean_box(0)); -return x_11; -} -else -{ -lean_object* x_12; -lean_dec(x_4); -x_12 = lean_apply_3(x_3, x_5, x_6, lean_box(0)); -return x_12; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg___boxed), 4, 0); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l___private_Init_Data_List_Lemmas_0__List_get_match__1_splitter___rarg(x_1, x_2, x_3, x_4); -lean_dec(x_2); -return x_5; -} -} LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_isEmpty_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -793,6 +793,7 @@ return x_4; } lean_object* initialize_Init_Data_List_BasicAux(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Control(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Nat_Lemmas(uint8_t builtin, lean_object*); lean_object* initialize_Init_PropLemmas(uint8_t builtin, lean_object*); lean_object* initialize_Init_Control_Lawful(uint8_t builtin, lean_object*); lean_object* initialize_Init_Hints(uint8_t builtin, lean_object*); @@ -807,6 +808,9 @@ lean_dec_ref(res); res = initialize_Init_Data_List_Control(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Nat_Lemmas(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_PropLemmas(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Data/String/Extra.c b/stage0/stdlib/Init/Data/String/Extra.c index 60ad0ae43c..bd545923f0 100644 --- a/stage0/stdlib/Init/Data/String/Extra.c +++ b/stage0/stdlib/Init/Data/String/Extra.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.String.Extra -// Imports: Init.Control.Except Init.Data.ByteArray Init.SimpLemmas Init.Data.Nat.Linear Init.Util Init.WFTactics +// Imports: Init.Control.Except Init.Data.ByteArray Init.SimpLemmas Init.Util Init.WFTactics #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -116,7 +116,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_String_toNat_x21___closed__1; x_2 = l_String_toNat_x21___closed__2; -x_3 = lean_unsigned_to_nat(23u); +x_3 = lean_unsigned_to_nat(22u); x_4 = lean_unsigned_to_nat(4u); x_5 = l_String_toNat_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -673,7 +673,6 @@ return x_2; lean_object* initialize_Init_Control_Except(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_ByteArray(uint8_t builtin, lean_object*); lean_object* initialize_Init_SimpLemmas(uint8_t builtin, lean_object*); -lean_object* initialize_Init_Data_Nat_Linear(uint8_t builtin, lean_object*); lean_object* initialize_Init_Util(uint8_t builtin, lean_object*); lean_object* initialize_Init_WFTactics(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -690,9 +689,6 @@ lean_dec_ref(res); res = initialize_Init_SimpLemmas(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Data_Nat_Linear(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Init_Util(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Data/Sum.c b/stage0/stdlib/Init/Data/Sum.c new file mode 100644 index 0000000000..ed3e337d62 --- /dev/null +++ b/stage0/stdlib/Init/Data/Sum.c @@ -0,0 +1,348 @@ +// Lean compiler output +// Module: Init.Data.Sum +// Imports: Init.Core +#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 +LEAN_EXPORT lean_object* l_Sum_getRight_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_getRight_x3f___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_getRight_x3f___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f___rarg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Sum_instDecidableEqSum(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_instBEqSum___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_instDecidableEqSum___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Sum_instBEqSum(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_2); +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_3, 0); +lean_inc(x_5); +lean_dec(x_3); +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_apply_2(x_1, x_5, x_6); +return x_7; +} +else +{ +uint8_t x_8; lean_object* x_9; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_8 = 0; +x_9 = lean_box(x_8); +return x_9; +} +} +else +{ +lean_dec(x_1); +if (lean_obj_tag(x_4) == 0) +{ +uint8_t x_10; lean_object* x_11; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_10 = 0; +x_11 = lean_box(x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +x_14 = lean_apply_2(x_2, x_12, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4_(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____rarg), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_2); +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_3, 0); +lean_inc(x_5); +lean_dec(x_3); +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_apply_2(x_1, x_5, x_6); +return x_7; +} +else +{ +uint8_t x_8; lean_object* x_9; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_8 = 0; +x_9 = lean_box(x_8); +return x_9; +} +} +else +{ +lean_dec(x_1); +if (lean_obj_tag(x_4) == 0) +{ +uint8_t x_10; lean_object* x_11; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_10 = 0; +x_11 = lean_box(x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +x_14 = lean_apply_2(x_2, x_12, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1___rarg), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_instDecidableEqSum___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_Data_Sum_0__Sum_decEqSum____x40_Init_Data_Sum___hyg_4____at_Sum_instDecidableEqSum___spec__1___rarg(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Sum_instDecidableEqSum(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Sum_instDecidableEqSum___rarg), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_2); +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_3, 0); +lean_inc(x_5); +lean_dec(x_3); +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = lean_apply_2(x_1, x_5, x_6); +return x_7; +} +else +{ +uint8_t x_8; lean_object* x_9; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_8 = 0; +x_9 = lean_box(x_8); +return x_9; +} +} +else +{ +lean_dec(x_1); +if (lean_obj_tag(x_4) == 0) +{ +uint8_t x_10; lean_object* x_11; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_10 = 0; +x_11 = lean_box(x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +x_14 = lean_apply_2(x_2, x_12, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241_(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____rarg), 4, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_instBEqSum___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____rarg), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_instBEqSum(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Sum_instBEqSum___rarg), 2, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_2); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_box(0); +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Sum_getLeft_x3f___rarg___boxed), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_getLeft_x3f___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Sum_getLeft_x3f___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Sum_getRight_x3f___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_4, 0, x_3); +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Sum_getRight_x3f(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Sum_getRight_x3f___rarg___boxed), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Sum_getRight_x3f___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Sum_getRight_x3f___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* initialize_Init_Core(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_Data_Sum(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Core(builtin, 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)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index 065391befb..17930d85af 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Meta -// Imports: Init.MetaTypes Init.Data.Array.Basic Init.Data.Option.BasicAux +// Imports: Init.MetaTypes Init.Data.Array.Basic Init.Data.Option.BasicAux Init.Data.String.Extra #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,25 +13,26 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645_(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteListMkStr1(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__7; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__7; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__3; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; static lean_object* l_Lean_Name_escapePart___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prio____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__26; LEAN_EXPORT lean_object* l_Lean_evalPrio(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14; static lean_object* l_Lean_quoteNameMk___closed__7; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Name_instDecidableEqName(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__2; static lean_object* l_Lean_mkGroupNode___closed__2; LEAN_EXPORT lean_object* l_Lean_instQuote(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24; lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSepArray___boxed(lean_object*); @@ -41,34 +42,37 @@ LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1___boxed(lean_ LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStringGap(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkNameLit___closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitTerm(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__83; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteProdMkStr1___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10; static lean_object* l_Lean_origin___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__9; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__24; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330_(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__26; static lean_object* l_List_foldr___at_Substring_toName___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__65; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__50; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__63; +LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__16; LEAN_EXPORT lean_object* l_Lean_instQuoteArrayMkStr1___rarg(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__6; 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*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__6; LEAN_EXPORT lean_object* l_Lean_HygieneInfo_mkIdent___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2; lean_object* l_Lean_Macro_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___closed__1; uint32_t lean_string_utf8_get(lean_object*, lean_object*); @@ -80,66 +84,69 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isScientificLit_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__1___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_push___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__6(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__67; LEAN_EXPORT lean_object* l_Lean_Syntax_setHeadInfo(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); static lean_object* l_Lean_instQuoteBoolMkStr1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpKind; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_instReprTSyntax(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__12; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__11; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6; +LEAN_EXPORT lean_object* l_String_Iterator_find___at___private_Init_Meta_0__Lean_findLeadingSpacesSize___spec__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__10; LEAN_EXPORT lean_object* l_Lean_TSyntax_getId(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__18; LEAN_EXPORT lean_object* l_Lean_githash; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___boxed(lean_object*, lean_object*); static lean_object* l_Lean_versionString___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_getName(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__84; lean_object* lean_uint32_to_nat(uint32_t); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8; LEAN_EXPORT lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__40; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__52; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21640_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__25; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20191_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__25; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__107; static lean_object* l_Lean_Name_reprPrec___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32; +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__48; LEAN_EXPORT lean_object* lean_name_append_after(lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_getScientific___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__10; static lean_object* l_Lean_termEval__prio_____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__15; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16; static lean_object* l_Lean_termEval__prec_____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__39; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33; LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__100; extern lean_object* l_Lean_maxRecDepthErrorMessage; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__35; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__3; LEAN_EXPORT lean_object* l_Lean_Name_toString___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); @@ -151,13 +158,11 @@ static lean_object* l_Lean_versionString___closed__4; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__3; static lean_object* l_Lean_Option_hasQuote___rarg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutTSyntaxArrayArraySyntax(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArith___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decode(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_location; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35; static lean_object* l_Lean_evalPrec___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_instReprName; @@ -165,69 +170,70 @@ static lean_object* l_Lean_versionString___closed__7; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkNumLit___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__80; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getString(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__37; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitPrec(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__9; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__113; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_structEq___boxed(lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray___closed__1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; extern lean_object* l_Lean_reservedMacroScope; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3; lean_object* l_String_quote(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19; LEAN_EXPORT lean_object* l_Lean_Name_toString(lean_object*, uint8_t); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15; static lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__134; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__27; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_origin; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_object* l_Lean_TSyntaxArray_rawImpl___rarg___boxed(lean_object*); static lean_object* l_Lean_Syntax_instCoeOutTSyntaxArrayArraySyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_Option_hasQuote(lean_object*); LEAN_EXPORT lean_object* l_Lean_NameGenerator_curr(lean_object*); LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_version_major___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeStrLitTerm(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978_(uint8_t, lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFrom___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Omega_OmegaConfig_splitMinMax___default; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object*); static lean_object* l_Lean_Syntax_isFieldIdx_x3f___closed__1; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__4; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5; static lean_object* l_Lean_mkHole___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__46; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17; LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__91; extern lean_object* l_Lean_Parser_Tactic_simpStar; LEAN_EXPORT lean_object* l_Lean_instQuoteStringStrLitKind(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__32; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__110; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__73; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__79; LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__2; @@ -240,14 +246,11 @@ LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentTerm(lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_version_specialDesc___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__19; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__69; static lean_object* l_Lean_Syntax_instReprTSyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17561_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSepArray(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); @@ -257,43 +260,50 @@ static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutTSepArrayTSyntaxArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__106; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4; static lean_object* l_Lean_termEval__prio_____closed__7; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_String_Iterator_next(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5; lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5; LEAN_EXPORT lean_object* l_Array_filterSepElemsM(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionSepArray(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22; +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_String_contains(lean_object*, uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__53; LEAN_EXPORT uint8_t l_Lean_isGreek(uint32_t); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; LEAN_EXPORT uint8_t l_Lean_isIdBeginEscape(uint32_t); +LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllArith; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElems___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__87; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____boxed(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteBoolMkStr1___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_removeLeadingSpaces(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__88; static lean_object* l_List_foldr___at_Substring_toName___spec__1___closed__1; LEAN_EXPORT uint8_t l_Lean_Syntax_instBEqTSyntax___rarg(lean_object*, lean_object*); uint8_t l_Char_isAlpha(uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__13; lean_object* lean_version_get_patch(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__75; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStrChunks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteTermMkStr1; @@ -302,7 +312,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at_Substring_toName___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__6; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19315_(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__112; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__36; @@ -313,39 +323,37 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_setTailInfoAux(lean_object*, lean_object* LEAN_EXPORT lean_object* l_Lean_isSubScriptAlnum___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArith___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3; LEAN_EXPORT lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__8; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__5(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__48; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__61; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2; LEAN_EXPORT uint32_t l_Lean_idBeginEscape; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize_consumeSpaces(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isGreek___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__6; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__12; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__15; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__114; -LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4(lean_object*, lean_object*); static lean_object* l_Lean_versionString___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold; LEAN_EXPORT lean_object* l_Lean_Syntax_mkSynthetic(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11; static lean_object* l_Lean_Option_hasQuote___rarg___closed__6; LEAN_EXPORT lean_object* lean_name_append_before(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___rarg___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__21; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__10; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; uint8_t lean_string_dec_eq(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__1; static lean_object* l_Lean_toolchain___closed__6; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSepArray___rarg(lean_object*); @@ -353,49 +361,58 @@ static lean_object* l_Lean_termEval__prio_____closed__5; static lean_object* l_Lean_termEval__prec_____closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6; LEAN_EXPORT uint8_t l_Lean_Syntax_isAtom(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__47; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_instReprEtaStructMode; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Rewrite_Config_offsetCnstrs___default; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutTSyntaxArrayArraySyntax___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__3; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__19; LEAN_EXPORT uint8_t l_Array_isEqvAux___at_Lean_Syntax_structEq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_version_isRelease; lean_object* lean_string_utf8_byte_size(lean_object*); -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeCharLitTerm___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1; +LEAN_EXPORT lean_object* l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__1; lean_object* lean_string_push(lean_object*, uint32_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__59; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__74; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__142; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__71; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg(lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295_(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12; LEAN_EXPORT lean_object* l_String_anyAux___at_Lean_Name_escapePart___spec__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11; +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_discharger; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__4; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__14; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668_(lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionTSepArray(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterDot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__5; @@ -413,43 +430,41 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_isNatLit_x3f___boxed(lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instReprPreresolved; +uint32_t l_String_Iterator_curr(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__71; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__4; LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__2(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__12; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__3; static lean_object* l_Lean_versionStringCore___closed__3; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__4; static lean_object* l_Lean_Syntax_mkCharLit___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__12; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__34; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_mkOptionalNode___closed__2; uint8_t l_String_isEmpty(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__16; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitTerm___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__68; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__63; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__55; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_saveLine(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__45; LEAN_EXPORT lean_object* l_Lean_instQuoteBoolMkStr1(uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__11; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_instReprConfig; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__96; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit(lean_object*); @@ -461,45 +476,47 @@ static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__5; LEAN_EXPORT lean_object* l_Lean_toolchain; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5; +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__5(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__37; uint8_t l_instDecidableNot___rarg(uint8_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__124; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_isFieldIdx_x3f___closed__2; LEAN_EXPORT uint8_t l_Lean_Meta_Omega_OmegaConfig_splitNatSub___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20; static lean_object* l_Array_getSepElems___rarg___closed__1; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____boxed(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11; static lean_object* l_Lean_instQuoteProdMkStr1___rarg___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__25; LEAN_EXPORT uint8_t l_String_anyAux___at_Lean_Name_escapePart___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2; lean_object* lean_string_utf8_next(lean_object*, lean_object*); -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__14; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__89; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__105; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15; uint8_t l_Char_isAlphanum(uint32_t); LEAN_EXPORT lean_object* l_Lean_Meta_instReprTransparencyMode; uint8_t l_Char_isWhitespace(uint32_t); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8; static lean_object* l_Lean_Name_instReprName___closed__1; lean_object* l_String_dropRight(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__126; static lean_object* l_Lean_version_patch___closed__1; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__2; static lean_object* l_List_foldr___at_Substring_toName___spec__1___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__73; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___boxed(lean_object*, lean_object*); @@ -507,32 +524,32 @@ static lean_object* l_Lean_Option_hasQuote___rarg___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__7; LEAN_EXPORT lean_object* l_Lean_instQuoteNatNumLitKind(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__90; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f___boxed(lean_object*); static lean_object* l_Lean_termEval__prec_____closed__3; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383_(uint8_t, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast(lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_getSepArgs___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__17; LEAN_EXPORT uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__2(lean_object*, lean_object*); uint8_t lean_uint32_dec_le(uint32_t, uint32_t); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionSepArray___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__81; +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084_(lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__3; static lean_object* l_Lean_quoteNameMk___closed__6; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeStrLitTerm___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11; LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__64; static lean_object* l_Lean_Syntax_instCoeOutTSepArrayTSyntaxArray___closed__1; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17; LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__8; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux(lean_object*, lean_object*, lean_object*); @@ -545,18 +562,18 @@ LEAN_EXPORT lean_object* l_Lean_mkHole(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__102; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeDepTermMkConsSyntaxNodeKindMkStr1NilIdentIdent(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__13; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__20; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__95; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__7; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__11; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__2; @@ -570,20 +587,18 @@ LEAN_EXPORT lean_object* l_Lean_versionString; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__9; extern lean_object* l_Lean_Parser_Tactic_rwRuleSeq; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__31; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__7; static lean_object* l_Lean_termEval__prio_____closed__9; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__1___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25; extern lean_object* l_Lean_Parser_Tactic_simpLemma; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_ofElems___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__58; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__2; LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*, uint8_t); @@ -592,12 +607,11 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutSepArrayArraySyntax___boxed(lea static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArray(lean_object*, lean_object*, lean_object*, lean_object*); static uint8_t l_Lean_versionString___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15; static lean_object* l_Lean_Name_reprPrec___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__65; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; static lean_object* l_Lean_Syntax_getHead_x3f___closed__3; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterDot(lean_object*, lean_object*, lean_object*, lean_object*); @@ -605,10 +619,8 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_beq_match__1_splitte static lean_object* l_Lean_Name_escapePart___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__81; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAux(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9; static lean_object* l_Lean_termEval__prec_____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__56; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__9; LEAN_EXPORT lean_object* l_Lean_quoteNameMk(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkGroupNode(lean_object*); @@ -619,6 +631,7 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAu LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__131; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9; static lean_object* l_Lean_Syntax_instBEqPreresolved___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_mkCharLit___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); @@ -630,76 +643,78 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean uint8_t l_List_isEmpty___rarg(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__32; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2; lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_versionStringCore___closed__4; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__3; lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getGithash___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__129; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4(lean_object*, lean_object*); lean_object* l_Lean_TSyntaxArray_mkImpl___rarg___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__2(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16; LEAN_EXPORT lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); LEAN_EXPORT lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkNumLit___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__22; lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__4; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__9; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22; static lean_object* l_Lean_termEval__prio_____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; LEAN_EXPORT uint8_t l_List_elem___at_Lean_Meta_Occurrences_contains___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27; LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep(lean_object*, lean_object*); +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1___boxed(lean_object*, lean_object*); 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_Lean_Syntax_decodeQuotedChar___boxed__const__3; static lean_object* l_Lean_Option_hasQuote___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize(lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16; lean_object* l_Char_quote(uint32_t); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__138; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__41; LEAN_EXPORT lean_object* l_Lean_Name_getRoot(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__27; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2; 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*); LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__7(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Syntax_instCoeTSyntaxArray___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Substring_toName(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20764_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__127; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17; static lean_object* l_Lean_mkOptionalNode___closed__1; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__12; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast___at_Lean_Syntax_setTailInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__18; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__5; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_instReprConfig__1; static lean_object* l_Lean_Meta_instReprConfig__1___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_beq_match__1_splitter(lean_object*); @@ -710,16 +725,16 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Syntax_mkApp___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray(lean_object*); static uint8_t l_Lean_versionString___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__90; LEAN_EXPORT lean_object* l_Lean_Syntax_hasArgs___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7; static lean_object* l_Lean_Name_reprPrec___closed__2; static lean_object* l_Lean_versionString___closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__5; LEAN_EXPORT lean_object* l_Lean_Meta_Rewrite_Config_occs___default; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdEndEscape___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__121; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqPreresolved; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__10; @@ -731,27 +746,25 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__2; LEAN_EXPORT lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_findAux___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__9; lean_object* l_Lean_extractMacroScopes(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__23; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitPrio(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__57; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__20; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__8; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_push___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4; uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__109; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax(lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentLevel(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2; static lean_object* l_Lean_quoteNameMk___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkCharLit___closed__2; @@ -759,12 +772,15 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__6; LEAN_EXPORT lean_object* l_Lean_Internal_isStage0___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19; uint8_t lean_version_get_is_release(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isNumericSubscript___boxed(lean_object*); static lean_object* l_Lean_mkOptionalNode___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeRawStrLitAux___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__64; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -774,8 +790,7 @@ static lean_object* l_Lean_TSyntax_getScientific___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__80; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_version_minor; lean_object* lean_string_utf8_prev(lean_object*, lean_object*); @@ -783,13 +798,13 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkOptionalNode(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; static lean_object* l_Lean_toolchain___closed__8; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__51; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__78; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__28; static lean_object* l_Lean_mkSepArray___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__123; @@ -797,18 +812,16 @@ static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__3; 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); LEAN_EXPORT lean_object* l_Lean_isIdBeginEscape___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__19; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg___boxed(lean_object*, lean_object*, lean_object*, 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_Lean_Parser_Tactic_dsimpKind___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__61; LEAN_EXPORT lean_object* l_Array_mapSepElemsM(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__9; lean_object* lean_version_get_special_desc(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16; static lean_object* l_Lean_Option_hasQuote___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeScientificLitTerm(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___rarg___boxed(lean_object*); @@ -817,7 +830,6 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__52; LEAN_EXPORT lean_object* l_Lean_instQuoteSubstringMkStr1(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16; LEAN_EXPORT lean_object* l_Lean_instQuoteNameMkStr1(lean_object*); LEAN_EXPORT lean_object* lean_mk_syntax_ident(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__41; @@ -826,71 +838,78 @@ static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__22; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__46; LEAN_EXPORT lean_object* l_Lean_Name_capitalize(lean_object*); static lean_object* l_Lean_versionString___closed__5; +LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__141; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__77; static lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__62; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8; static lean_object* l_Lean_toolchain___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__44; LEAN_EXPORT lean_object* l_Lean_Syntax_isToken___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; LEAN_EXPORT lean_object* l_Array_filterSepElems(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMinor___boxed(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_getHygieneInfo(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3; lean_object* l_Lean_MacroScopesView_review(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__1; static lean_object* l_Lean_Syntax_instCoeOutSepArrayArraySyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isNone___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef(lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__62; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6; +LEAN_EXPORT uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_instReprSyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_Name_isInaccessibleUserName___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124_(lean_object*, lean_object*, lean_object*); lean_object* lean_get_githash(lean_object*); static lean_object* l_Lean_instQuoteProdMkStr1___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isAtom___boxed(lean_object*); -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_ofElems(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1(lean_object*, lean_object*, lean_object*); 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_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__111; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__16; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13; LEAN_EXPORT lean_object* l_Lean_version_major; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__8; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeRawStrLitAux(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__104; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutTSepArrayTSyntaxArray___boxed(lean_object*, lean_object*); -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7; static lean_object* l_Lean_Syntax_mkScientificLit___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19010_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f(lean_object*, uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentTerm___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__3; static lean_object* l_Lean_mkHole___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__47; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize_findNextLine(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__25; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__9; static lean_object* l_Lean_versionString___closed__9; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; LEAN_EXPORT lean_object* l_Array_mapSepElems(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____boxed(lean_object*); extern lean_object* l_Lean_Parser_Tactic_simpErase; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___rarg(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__43; lean_object* l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6; uint8_t l_Char_isDigit(uint32_t); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__83; @@ -899,12 +918,11 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Lean_evalOptPrio(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_isLetterLike(uint32_t); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__10; -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2; lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_nextn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* lean_name_append_index_after(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14; LEAN_EXPORT uint8_t l_String_anyAux___at_Lean_Name_escapePart___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__29; @@ -912,79 +930,70 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__76; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__24; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; static lean_object* l_Lean_instQuoteProdMkStr1___rarg___closed__2; static lean_object* l_Lean_quoteNameMk___closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___rarg___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__94; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__7; LEAN_EXPORT lean_object* l_Lean_TSyntax_getId___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6; static lean_object* l_Lean_Syntax_getHead_x3f___closed__2; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__2; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; static lean_object* l_Lean_Name_reprPrec___closed__10; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20; static lean_object* l_Lean_toolchain___closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__74; -LEAN_EXPORT lean_object* l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23; LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Name_hasNum(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6; static lean_object* l_Lean_Syntax_mkStrLit___closed__2; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_consumeSpaces(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__26; 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4; static lean_object* l_Lean_quoteNameMk___closed__2; LEAN_EXPORT uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__137; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882_(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__1; static lean_object* l_Lean_Name_reprPrec___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__136; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__7; static lean_object* l_Lean_toolchain___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_toNat___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteCharCharLitKind(uint32_t); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__101; uint8_t l_Lean_Name_hasMacroScopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3; LEAN_EXPORT uint32_t l_Lean_idEndEscape; static lean_object* l_Lean_Syntax_instReprPreresolved___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Occurrences_contains___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__3; -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_isNumericSubscript(uint32_t); LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_replacePrefix___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__99; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7; static lean_object* l_Lean_Name_reprPrec___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__16; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__66; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__15; LEAN_EXPORT uint8_t l_Lean_Name_toString_maybePseudoSyntax(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12; static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__24; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); @@ -996,61 +1005,71 @@ static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__30; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__1; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_2012_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getScientific(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__20; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6; lean_object* lean_string_length(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29; LEAN_EXPORT lean_object* l_Lean_termEval__prio__; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_hasNum___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f___boxed(lean_object*); static lean_object* l_Lean_Name_toStringWithSep___closed__1; +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElems___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__30; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg(lean_object*, lean_object*); static lean_object* l_Lean_Name_isInaccessibleUserName___closed__1; LEAN_EXPORT uint8_t l_Lean_Syntax_hasArgs(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getNat(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__15; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__4; static lean_object* l_List_foldr___at_Substring_toName___spec__1___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__54; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); +static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__28; static lean_object* l_Lean_termEval__prio_____closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6; LEAN_EXPORT uint8_t l_Lean_isSubScriptAlnum(uint32_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__15; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__68; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__95; LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19; lean_object* lean_nat_mod(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__42; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__14; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax___rarg(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Syntax_find_x3f(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__119; LEAN_EXPORT lean_object* l_Lean_Internal_hasLLVMBackend___boxed(lean_object*); lean_object* l_id___rarg___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__20; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__120; LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*); @@ -1058,16 +1077,15 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__40; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllKind; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqSyntax; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__94; static lean_object* l_Lean_toolchain___closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__38; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__6; @@ -1075,25 +1093,25 @@ static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__67; LEAN_EXPORT lean_object* l_Lean_version_patch; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5; static lean_object* l_Lean_Syntax_getHead_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__60; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4; static uint8_t l_Lean_version_isRelease___closed__1; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__93; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13; static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__1; lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13; static lean_object* l_Lean_versionString___closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; LEAN_EXPORT lean_object* l_Lean_Syntax_findAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); uint8_t l_String_isPrefixOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Syntax_instCoeTSyntaxArray___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_instToStringName(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__21; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__77; LEAN_EXPORT lean_object* l_Lean_Syntax_isCharLit_x3f(lean_object*); @@ -1105,31 +1123,30 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteSubstringMkStr1___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__86; LEAN_EXPORT lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArray___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_toName(lean_object*); lean_object* l_Repr_addAppParen(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__21; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__108; static lean_object* l_Lean_quoteNameMk___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; LEAN_EXPORT lean_object* l_Lean_NameGenerator_mkChild(lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_isNone(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__32; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9; LEAN_EXPORT lean_object* l_Lean_Name_getRoot___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__8; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__118; LEAN_EXPORT lean_object* l_Lean_Name_eraseSuffix_x3f(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___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__declareSimpLikeTactic__1___lambda__1___closed__44; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__1; @@ -1140,6 +1157,7 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit LEAN_EXPORT lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getName___boxed(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_setHeadInfoAux(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkNameLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_push(lean_object*); @@ -1149,31 +1167,28 @@ static lean_object* l_Lean_mkSepArray___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__7; static lean_object* l_Lean_mkCIdentFrom___closed__2; lean_object* l_Array_mkArray1___rarg(lean_object*); -LEAN_EXPORT uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkApp___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__59; lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__98; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__75; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3; static lean_object* l___private_Init_Meta_0__Lean_quoteArray___rarg___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitPrec___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__18; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpArith; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_findAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__6; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeScientificLitTerm___boxed(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4; static lean_object* l_Lean_termEval__prec_____closed__4; static lean_object* l_Lean_Syntax_mkStrLit___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__82; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31; LEAN_EXPORT lean_object* l_Lean_versionStringCore; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10; static lean_object* l_Lean_versionString___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__23; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg(lean_object*, lean_object*); @@ -1183,41 +1198,46 @@ static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__22; static lean_object* l_Lean_termEval__prec_____closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionTSepArray___boxed(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7; static lean_object* l_Lean_githash___closed__1; LEAN_EXPORT uint8_t l_Lean_Meta_Occurrences_contains(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNameLitTerm(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticErw____; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_ofElems___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux(lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__13; LEAN_EXPORT uint8_t lean_is_inaccessible_user_name(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_NameGenerator_next(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeCharLitTerm(lean_object*); static lean_object* l_Lean_versionStringCore___closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__29; LEAN_EXPORT lean_object* l_Lean_instQuote___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4; static lean_object* l_Lean_instQuoteNameMkStr1___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__4; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__84; static lean_object* l_Lean_Syntax_unsetTrailing___closed__2; lean_object* l_String_intercalate(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__19; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_beq_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21; +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4; LEAN_EXPORT uint8_t l_Lean_Meta_Omega_OmegaConfig_splitDisjunctions___default; LEAN_EXPORT lean_object* l_Lean_instQuoteBoolMkStr1___boxed(lean_object*); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1; @@ -1237,16 +1257,15 @@ static lean_object* l_Lean_Meta_instReprEtaStructMode___closed__1; uint8_t l_Substring_beq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__89; lean_object* l_String_capitalize(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21; size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1; -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__7(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__29; static lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_getScientific___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__92; LEAN_EXPORT lean_object* l_Lean_Option_hasQuote___rarg(lean_object*, lean_object*); @@ -1255,77 +1274,72 @@ static lean_object* l_Lean_mkCIdentFrom___closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__6; LEAN_EXPORT lean_object* l_Lean_TSyntax_getNat___boxed(lean_object*); static lean_object* l_Lean_Meta_instReprTransparencyMode___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__42; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__54; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11; lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc___boxed(lean_object*); static lean_object* l_Lean_mkOptionalNode___closed__3; static lean_object* l_Lean_termEval__prec_____closed__10; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__97; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__53; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__36; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__116; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__5; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__2(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5; extern lean_object* l_Lean_Parser_Tactic_config; LEAN_EXPORT lean_object* l_Lean_mkSepArray___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedSyntax; static lean_object* l_Lean_versionStringCore___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__115; lean_object* lean_version_get_minor(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__22; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__17; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); +uint8_t l_String_Iterator_atEnd(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__24; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__51; LEAN_EXPORT lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__4; LEAN_EXPORT lean_object* l_Lean_instQuoteProdMkStr1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdent(lean_object*); static lean_object* l_Lean_quoteNameMk___closed__4; LEAN_EXPORT lean_object* l_List_foldr___at_Substring_toName___spec__1___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__55; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit___boxed(lean_object*); static lean_object* l_Lean_toolchain___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14; lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__8; static lean_object* l_Lean_quoteNameMk___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getChar___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__8; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__26; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___boxed(lean_object*); static lean_object* l_Lean_termEval__prec_____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12; -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__72; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prec____1(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_pred(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__128; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20; lean_object* lean_array_get_size(lean_object*); @@ -1333,18 +1347,16 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean lean_object* l_panic___at___private_Init_Prelude_0__Lean_assembleParts___spec__1(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__34; LEAN_EXPORT lean_object* l_Lean_Meta_Occurrences_isAll___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14; LEAN_EXPORT lean_object* l_Lean_Syntax_isNatLit_x3f(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__10; static lean_object* l_Lean_instQuoteTermMkStr1___closed__1; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__6(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__2; LEAN_EXPORT lean_object* l_Array_mapSepElemsM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instReprTSyntax___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17; static lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___closed__1; -static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__72; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7; LEAN_EXPORT lean_object* l_Lean_Name_instDecidableEqName___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__31; @@ -1353,6 +1365,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep___boxed(lean_object*, lean_object*) static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__49; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__93; uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6; static lean_object* l_Lean_Syntax_mkScientificLit___closed__1; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__33; @@ -1360,10 +1373,11 @@ uint8_t lean_usize_dec_lt(size_t, size_t); 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_instQuoteArrayMkStr1(lean_object*); static lean_object* l_Lean_termEval__prio_____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_instQuoteStringStrLitKind___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__49; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9; LEAN_EXPORT lean_object* l_Lean_TSyntax_getString___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toString_maybePseudoSyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStringGap___boxed(lean_object*, lean_object*); @@ -1384,10 +1398,10 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTermTSyntaxConsSyntaxNodeKindMkStr LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_ofElems___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__91; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7; LEAN_EXPORT lean_object* l_Array_getSepElems(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__70; LEAN_EXPORT lean_object* l_Lean_instQuote___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18; static lean_object* l_Lean_termEval__prio_____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_instReprSyntax; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__78; @@ -1395,60 +1409,59 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_mkScientificLit(lean_object*, lean_object static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__12; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__140; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAutoUnfold; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22; static lean_object* l_Lean_termEval__prio_____closed__4; static lean_object* l_Lean_Option_hasQuote___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_mkHole___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__135; LEAN_EXPORT lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_modifyBase(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675_(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11; 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_isIdFirst(uint32_t); static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__17; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8; LEAN_EXPORT lean_object* l_Lean_version_specialDesc; -LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_anyAux___at_Lean_Name_escapePart___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__60; lean_object* l_String_toSubstring_x27(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__23; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__27; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__8; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16; static lean_object* l_Lean_instQuoteNameMkStr1___closed__1; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* lean_version_get_major(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeOutSepArrayArraySyntax(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__43; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentLevel___boxed(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____boxed(lean_object*, lean_object*); lean_object* l_String_drop(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__7; +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7; static lean_object* l_Lean_termEval__prec_____closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__38; LEAN_EXPORT lean_object* l_Lean_isIdFirst___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__39; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831_(uint8_t, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1; lean_object* l_Nat_repr(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33; static lean_object* l_Lean_Meta_instReprConfig___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_toNat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__8; static lean_object* l_Lean_toolchain___closed__1; @@ -1461,25 +1474,25 @@ LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___rarg( static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__57; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__11; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNumLit(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530_(uint8_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArith___closed__10; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__3; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__5; -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__3(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__45; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_versionStringCore___closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_getHygieneInfo___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__14; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12; LEAN_EXPORT lean_object* l_Lean_termEval__prec__; static lean_object* l_Lean_Syntax_mkApp___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8; uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTermTSyntaxConsSyntaxNodeKindMkStr4Nil___boxed(lean_object*); static lean_object* l_Lean_versionStringCore___closed__8; @@ -2577,6 +2590,307 @@ x_4 = lean_box(x_3); return x_4; } } +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize_consumeSpaces(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_String_Iterator_atEnd(x_1); +if (x_4 == 0) +{ +uint32_t x_5; uint32_t x_6; uint8_t x_7; +x_5 = l_String_Iterator_curr(x_1); +x_6 = 32; +x_7 = lean_uint32_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +uint32_t x_8; uint8_t x_9; +x_8 = 9; +x_9 = lean_uint32_dec_eq(x_5, x_8); +if (x_9 == 0) +{ +uint32_t x_10; uint8_t x_11; +x_10 = 10; +x_11 = lean_uint32_dec_eq(x_5, x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = l_String_Iterator_next(x_1); +x_13 = lean_nat_dec_le(x_2, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_2); +x_14 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize_findNextLine(x_12, x_3); +return x_14; +} +else +{ +lean_object* x_15; +lean_dec(x_3); +x_15 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize_findNextLine(x_12, x_2); +return x_15; +} +} +else +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_2); +x_16 = l_String_Iterator_next(x_1); +x_17 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize_findNextLine(x_16, x_3); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = l_String_Iterator_next(x_1); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_2, x_19); +lean_dec(x_2); +x_1 = x_18; +x_2 = x_20; +goto _start; +} +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = l_String_Iterator_next(x_1); +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_add(x_2, x_23); +lean_dec(x_2); +x_1 = x_22; +x_2 = x_24; +goto _start; +} +} +else +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize_findNextLine(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_String_Iterator_atEnd(x_1); +if (x_3 == 0) +{ +uint32_t x_4; uint32_t x_5; uint8_t x_6; +x_4 = l_String_Iterator_curr(x_1); +x_5 = 10; +x_6 = lean_uint32_dec_eq(x_4, x_5); +if (x_6 == 0) +{ +lean_object* x_7; +x_7 = l_String_Iterator_next(x_1); +x_1 = x_7; +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = l_String_Iterator_next(x_1); +x_10 = lean_unsigned_to_nat(0u); +x_11 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize_consumeSpaces(x_9, x_10, x_2); +return x_11; +} +} +else +{ +lean_dec(x_1); +return x_2; +} +} +} +LEAN_EXPORT lean_object* l_String_Iterator_find___at___private_Init_Meta_0__Lean_findLeadingSpacesSize___spec__1(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_String_Iterator_atEnd(x_1); +if (x_2 == 0) +{ +uint32_t x_3; uint32_t x_4; uint8_t x_5; +x_3 = l_String_Iterator_curr(x_1); +x_4 = 10; +x_5 = lean_uint32_dec_eq(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +x_6 = l_String_Iterator_next(x_1); +x_1 = x_6; +goto _start; +} +else +{ +return x_1; +} +} +else +{ +return x_1; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_findLeadingSpacesSize(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; lean_object* x_7; +x_2 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +x_4 = l_String_Iterator_find___at___private_Init_Meta_0__Lean_findLeadingSpacesSize___spec__1(x_3); +x_5 = l_String_Iterator_next(x_4); +x_6 = lean_string_length(x_1); +lean_dec(x_1); +x_7 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize_consumeSpaces(x_5, x_2, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_consumeSpaces(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_nat_dec_eq(x_2, x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_2, x_7); +lean_dec(x_2); +x_9 = l_String_Iterator_atEnd(x_3); +if (x_9 == 0) +{ +uint32_t x_10; uint32_t x_11; uint8_t x_12; +x_10 = l_String_Iterator_curr(x_3); +x_11 = 32; +x_12 = lean_uint32_dec_eq(x_10, x_11); +if (x_12 == 0) +{ +uint32_t x_13; uint8_t x_14; +x_13 = 9; +x_14 = lean_uint32_dec_eq(x_10, x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_8); +x_15 = l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_saveLine(x_1, x_3, x_4); +return x_15; +} +else +{ +lean_object* x_16; +x_16 = l_String_Iterator_next(x_3); +x_2 = x_8; +x_3 = x_16; +goto _start; +} +} +else +{ +lean_object* x_18; +x_18 = l_String_Iterator_next(x_3); +x_2 = x_8; +x_3 = x_18; +goto _start; +} +} +else +{ +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_4; +} +} +else +{ +lean_object* x_20; +lean_dec(x_2); +x_20 = l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_saveLine(x_1, x_3, x_4); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_saveLine(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_String_Iterator_atEnd(x_2); +if (x_4 == 0) +{ +uint32_t x_5; uint32_t x_6; uint8_t x_7; +x_5 = l_String_Iterator_curr(x_2); +x_6 = 10; +x_7 = lean_uint32_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = l_String_Iterator_next(x_2); +x_9 = lean_string_push(x_3, x_5); +x_2 = x_8; +x_3 = x_9; +goto _start; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = l_String_Iterator_next(x_2); +x_12 = lean_string_push(x_3, x_6); +lean_inc(x_1); +x_13 = l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_consumeSpaces(x_1, x_1, x_11, x_12); +return x_13; +} +} +else +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_removeNumLeadingSpaces(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; +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_2); +lean_ctor_set(x_4, 1, x_3); +x_5 = l_Lean_versionString___closed__1; +lean_inc(x_1); +x_6 = l___private_Init_Meta_0__Lean_removeNumLeadingSpaces_consumeSpaces(x_1, x_1, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_removeLeadingSpaces(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +lean_inc(x_1); +x_2 = l___private_Init_Meta_0__Lean_findLeadingSpacesSize(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_eq(x_2, x_3); +if (x_4 == 0) +{ +lean_object* x_5; +x_5 = l___private_Init_Meta_0__Lean_removeNumLeadingSpaces(x_2, x_1); +return x_5; +} +else +{ +lean_dec(x_2); +return x_1; +} +} +} LEAN_EXPORT lean_object* l_Lean_Name_getRoot(lean_object* x_1) { _start: { @@ -4467,7 +4781,7 @@ x_3 = lean_alloc_closure((void*)(l_Lean_monadNameGeneratorLift___rarg), 2, 0); return x_3; } } -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -4477,7 +4791,7 @@ lean_ctor_set(x_3, 0, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -4494,7 +4808,7 @@ lean_inc(x_1); x_6 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_6, 0, x_2); lean_ctor_set(x_6, 1, x_1); -x_7 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(x_4); +x_7 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(x_4); x_8 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_8, 0, x_6); lean_ctor_set(x_8, 1, x_7); @@ -4504,7 +4818,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__3(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4526,7 +4840,7 @@ lean_dec(x_2); x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); -x_6 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(x_5); +x_6 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(x_5); lean_dec(x_5); return x_6; } @@ -4536,16 +4850,16 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec(x_1); -x_8 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(x_7); +x_8 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(x_7); lean_dec(x_7); -x_9 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4(x_2, x_8, x_4); +x_9 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4(x_2, x_8, x_4); lean_dec(x_4); return x_9; } } } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1() { _start: { lean_object* x_1; @@ -4553,17 +4867,17 @@ x_1 = lean_mk_string_from_bytes("[]", 2); return x_1; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3() { _start: { lean_object* x_1; @@ -4571,21 +4885,21 @@ x_1 = lean_mk_string_from_bytes(",", 1); return x_1; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4593,7 +4907,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6() { _start: { lean_object* x_1; @@ -4601,35 +4915,35 @@ x_1 = lean_mk_string_from_bytes("[", 1); return x_1; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6; x_2 = lean_string_length(x_1); return x_2; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7; x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10() { _start: { lean_object* x_1; @@ -4637,39 +4951,39 @@ x_1 = lean_mk_string_from_bytes("]", 1); return x_1; } } -static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11() { +static lean_object* _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_3; -x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2; +x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2; return x_3; } else { 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_object* x_11; uint8_t x_12; lean_object* x_13; -x_4 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5; -x_5 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__3(x_1, x_4); -x_6 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9; +x_4 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5; +x_5 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__3(x_1, x_4); +x_6 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9; x_7 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); -x_8 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11; +x_8 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11; x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); -x_10 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8; +x_10 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8; x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -4681,7 +4995,7 @@ return x_13; } } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1() { _start: { lean_object* x_1; @@ -4689,21 +5003,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.Preresolved.namespace", 33); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4711,7 +5025,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -4720,7 +5034,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -4729,7 +5043,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6() { _start: { lean_object* x_1; @@ -4737,21 +5051,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.Preresolved.decl", 28); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4759,7 +5073,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4771,14 +5085,14 @@ lean_dec(x_1); x_4 = lean_unsigned_to_nat(1024u); x_5 = lean_nat_dec_le(x_4, x_2); x_6 = l_Lean_Name_reprPrec(x_3, x_4); -x_7 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3; +x_7 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3; x_8 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); if (x_5 == 0) { lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; -x_9 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_9 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_10 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -4792,7 +5106,7 @@ return x_13; else { lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_14 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_14 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_15 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_8); @@ -4815,7 +5129,7 @@ lean_dec(x_1); x_21 = lean_unsigned_to_nat(1024u); x_22 = lean_nat_dec_le(x_21, x_2); x_23 = l_Lean_Name_reprPrec(x_19, x_21); -x_24 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8; +x_24 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8; x_25 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -4823,14 +5137,14 @@ x_26 = lean_box(1); x_27 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); -x_28 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1(x_20, x_21); +x_28 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1(x_20, x_21); x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); if (x_22 == 0) { lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; -x_30 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_30 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_31 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -4844,7 +5158,7 @@ return x_34; else { lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; -x_35 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_35 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_36 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_29); @@ -4858,38 +5172,38 @@ return x_39; } } } -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__2(x_1); +x_2 = l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__2(x_1); lean_dec(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__4(x_1, x_2, x_3); +x_4 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__4(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1(x_1, x_2); +x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -4898,7 +5212,7 @@ static lean_object* _init_l_Lean_Syntax_instReprPreresolved___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____boxed), 2, 0); return x_1; } } @@ -4910,16 +5224,16 @@ x_1 = l_Lean_Syntax_instReprPreresolved___closed__1; return x_1; } } -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -4940,7 +5254,7 @@ x_6 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_6, 0, x_2); lean_ctor_set(x_6, 1, x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_4, x_7); +x_8 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_4, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_6); lean_ctor_set(x_9, 1, x_8); @@ -4950,7 +5264,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4973,7 +5287,7 @@ x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); x_6 = lean_unsigned_to_nat(0u); -x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_5, x_6); +x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_5, x_6); return x_7; } else @@ -4983,23 +5297,23 @@ x_8 = lean_ctor_get(x_1, 0); lean_inc(x_8); lean_dec(x_1); x_9 = lean_unsigned_to_nat(0u); -x_10 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_8, x_9); -x_11 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__3(x_2, x_10, x_4); +x_10 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_8, x_9); +x_11 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__3(x_2, x_10, x_4); return x_11; } } } } -LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__5(lean_object* x_1) { +LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__5(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -5020,7 +5334,7 @@ x_6 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_6, 0, x_2); lean_ctor_set(x_6, 1, x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(x_4, x_7); +x_8 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(x_4, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_6); lean_ctor_set(x_9, 1, x_8); @@ -5030,7 +5344,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__6(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__6(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5053,7 +5367,7 @@ x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); x_6 = lean_unsigned_to_nat(0u); -x_7 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(x_5, x_6); +x_7 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(x_5, x_6); return x_7; } else @@ -5063,36 +5377,36 @@ x_8 = lean_ctor_get(x_1, 0); lean_inc(x_8); lean_dec(x_1); x_9 = lean_unsigned_to_nat(0u); -x_10 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943_(x_8, x_9); -x_11 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__7(x_2, x_10, x_4); +x_10 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316_(x_8, x_9); +x_11 = l_List_foldl___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__7(x_2, x_10, x_4); return x_11; } } } } -LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_3; -x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2; +x_3 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2; return x_3; } else { 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_object* x_11; uint8_t x_12; lean_object* x_13; -x_4 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5; -x_5 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__6(x_1, x_4); -x_6 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9; +x_4 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5; +x_5 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__6(x_1, x_4); +x_6 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9; x_7 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); -x_8 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11; +x_8 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11; x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); -x_10 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8; +x_10 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8; x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -5104,7 +5418,7 @@ return x_13; } } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1() { _start: { lean_object* x_1; @@ -5112,33 +5426,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.missing", 19); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -5146,23 +5460,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -5170,7 +5484,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7() { _start: { lean_object* x_1; @@ -5178,21 +5492,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.node", 16); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5200,7 +5514,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10() { _start: { lean_object* x_1; @@ -5208,35 +5522,35 @@ x_1 = lean_mk_string_from_bytes("#[", 2); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10; x_2 = lean_string_length(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11; x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14() { _start: { lean_object* x_1; @@ -5244,17 +5558,17 @@ x_1 = lean_mk_string_from_bytes("#[]", 3); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16() { _start: { lean_object* x_1; @@ -5262,21 +5576,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.atom", 16); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5284,7 +5598,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19() { _start: { lean_object* x_1; @@ -5292,21 +5606,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Syntax.ident", 17); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5314,7 +5628,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22() { _start: { lean_object* x_1; @@ -5322,7 +5636,7 @@ x_1 = lean_mk_string_from_bytes(".toSubstring", 12); return x_1; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -5334,14 +5648,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -5359,7 +5673,7 @@ lean_dec(x_1); x_12 = lean_unsigned_to_nat(1024u); x_13 = lean_nat_dec_le(x_12, x_2); x_14 = l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_2012_(x_9, x_12); -x_15 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9; +x_15 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9; x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -5384,17 +5698,17 @@ if (x_24 == 0) { 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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; x_25 = lean_array_to_list(lean_box(0), x_11); -x_26 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5; -x_27 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__2(x_25, x_26); -x_28 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13; +x_26 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5; +x_27 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__2(x_25, x_26); +x_28 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13; x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11; +x_30 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11; x_31 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); -x_32 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12; +x_32 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12; x_33 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -5405,7 +5719,7 @@ lean_ctor_set_uint8(x_35, sizeof(void*)*1, x_34); x_36 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_36, 0, x_21); lean_ctor_set(x_36, 1, x_35); -x_37 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_37 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_38 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -5420,11 +5734,11 @@ else { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_11); -x_42 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15; +x_42 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15; x_43 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_43, 0, x_21); lean_ctor_set(x_43, 1, x_42); -x_44 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_44 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_45 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -5442,17 +5756,17 @@ if (x_24 == 0) { 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; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; x_49 = lean_array_to_list(lean_box(0), x_11); -x_50 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5; -x_51 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__2(x_49, x_50); -x_52 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13; +x_50 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5; +x_51 = l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__2(x_49, x_50); +x_52 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13; x_53 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11; +x_54 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11; x_55 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); -x_56 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12; +x_56 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12; x_57 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -5463,7 +5777,7 @@ lean_ctor_set_uint8(x_59, sizeof(void*)*1, x_58); x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_21); lean_ctor_set(x_60, 1, x_59); -x_61 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_61 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_62 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -5478,11 +5792,11 @@ else { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; lean_object* x_72; lean_dec(x_11); -x_66 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15; +x_66 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15; x_67 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_67, 0, x_21); lean_ctor_set(x_67, 1, x_66); -x_68 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_68 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_69 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); @@ -5506,7 +5820,7 @@ lean_dec(x_1); x_75 = lean_unsigned_to_nat(1024u); x_76 = lean_nat_dec_le(x_75, x_2); x_77 = l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_2012_(x_73, x_75); -x_78 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18; +x_78 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18; x_79 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -5524,7 +5838,7 @@ lean_ctor_set(x_84, 1, x_83); if (x_76 == 0) { lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; -x_85 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_85 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_86 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -5538,7 +5852,7 @@ return x_89; else { lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; -x_90 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_90 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_91 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_84); @@ -5565,7 +5879,7 @@ lean_dec(x_1); x_99 = lean_unsigned_to_nat(1024u); x_100 = lean_nat_dec_le(x_99, x_2); x_101 = l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_2012_(x_95, x_99); -x_102 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21; +x_102 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21; x_103 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -5574,7 +5888,7 @@ x_105 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_105, 0, x_103); lean_ctor_set(x_105, 1, x_104); x_106 = l_Lean_Name_reprPrec(x_97, x_99); -x_107 = l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4(x_98, x_99); +x_107 = l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4(x_98, x_99); if (x_100 == 0) { 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; uint8_t x_123; lean_object* x_124; lean_object* x_125; @@ -5591,7 +5905,7 @@ lean_dec(x_109); lean_dec(x_108); x_112 = l_String_quote(x_111); lean_dec(x_111); -x_113 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22; +x_113 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22; x_114 = lean_string_append(x_112, x_113); x_115 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_115, 0, x_114); @@ -5610,7 +5924,7 @@ lean_ctor_set(x_119, 1, x_104); x_120 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_107); -x_121 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; +x_121 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; x_122 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); @@ -5637,7 +5951,7 @@ lean_dec(x_127); lean_dec(x_126); x_130 = l_String_quote(x_129); lean_dec(x_129); -x_131 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22; +x_131 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22; x_132 = lean_string_append(x_130, x_131); x_133 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_133, 0, x_132); @@ -5656,7 +5970,7 @@ lean_ctor_set(x_137, 1, x_104); x_138 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_138, 0, x_137); lean_ctor_set(x_138, 1, x_107); -x_139 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; +x_139 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; x_140 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_140, 0, x_139); lean_ctor_set(x_140, 1, x_138); @@ -5671,20 +5985,20 @@ return x_143; } } } -LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____spec__4(x_1, x_2); +x_3 = l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____spec__4(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -5693,7 +6007,7 @@ static lean_object* _init_l_Lean_Syntax_instReprSyntax___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____boxed), 2, 0); return x_1; } } @@ -5705,7 +6019,7 @@ x_1 = l_Lean_Syntax_instReprSyntax___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1() { _start: { lean_object* x_1; @@ -5713,29 +6027,29 @@ x_1 = lean_mk_string_from_bytes("raw", 3); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4() { _start: { lean_object* x_1; @@ -5743,29 +6057,29 @@ x_1 = lean_mk_string_from_bytes(" := ", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -5774,7 +6088,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8() { _start: { lean_object* x_1; @@ -5782,35 +6096,35 @@ x_1 = lean_mk_string_from_bytes("{ ", 2); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8; x_2 = lean_string_length(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9; x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12() { _start: { lean_object* x_1; @@ -5818,23 +6132,23 @@ x_1 = lean_mk_string_from_bytes(" }", 2); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg(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; lean_object* x_8; lean_object* x_9; 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; x_3 = lean_unsigned_to_nat(0u); -x_4 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_1, x_3); -x_5 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7; +x_4 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_1, x_3); +x_5 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7; x_6 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); @@ -5842,19 +6156,19 @@ x_7 = 0; x_8 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_8, 0, x_6); lean_ctor_set_uint8(x_8, sizeof(void*)*1, x_7); -x_9 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6; +x_9 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6; x_10 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); -x_11 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +x_11 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; x_12 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); -x_13 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +x_13 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; x_14 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; +x_15 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; x_16 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -5864,28 +6178,28 @@ lean_ctor_set_uint8(x_17, sizeof(void*)*1, x_7); return x_17; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668_(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___boxed), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295_(x_1); +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668_(x_1); lean_dec(x_1); return x_2; } @@ -5894,7 +6208,7 @@ static lean_object* _init_l_Lean_Syntax_instReprTSyntax___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___boxed), 2, 0); return x_1; } } @@ -6197,7 +6511,7 @@ lean_dec(x_1); return x_2; } } -LEAN_EXPORT uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6247,7 +6561,7 @@ goto _start; } } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084_(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6292,29 +6606,29 @@ return x_13; else { uint8_t x_14; -x_14 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(x_9, x_11); +x_14 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(x_9, x_11); return x_14; } } } } } -LEAN_EXPORT lean_object* l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(x_1, x_2); +x_3 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -6325,7 +6639,7 @@ static lean_object* _init_l_Lean_Syntax_instBEqPreresolved___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____boxed), 2, 0); return x_1; } } @@ -6410,7 +6724,7 @@ x_6 = lean_ctor_get(x_1, 0); x_7 = lean_ctor_get(x_1, 1); x_8 = lean_ctor_get(x_2, 0); x_9 = lean_ctor_get(x_2, 1); -x_10 = l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711_(x_6, x_8); +x_10 = l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084_(x_6, x_8); if (x_10 == 0) { uint8_t x_11; @@ -13182,7 +13496,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_List_foldr___at_Substring_toName___spec__1___closed__1; x_2 = l_List_foldr___at_Substring_toName___spec__1___closed__2; -x_3 = lean_unsigned_to_nat(909u); +x_3 = lean_unsigned_to_nat(946u); x_4 = lean_unsigned_to_nat(10u); x_5 = l_List_foldr___at_Substring_toName___spec__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -18649,7 +18963,47 @@ lean_dec(x_1); return x_6; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1() { +LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_unsigned_to_nat(1u); +x_3 = l_Lean_Syntax_getArg(x_1, x_2); +if (lean_obj_tag(x_3) == 2) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_dec(x_3); +x_5 = lean_string_utf8_byte_size(x_4); +x_6 = lean_unsigned_to_nat(2u); +x_7 = lean_nat_sub(x_5, x_6); +lean_dec(x_5); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_string_utf8_extract(x_4, x_8, x_7); +lean_dec(x_7); +lean_dec(x_4); +return x_9; +} +else +{ +lean_object* x_10; +lean_dec(x_3); +x_10 = l_Lean_versionString___closed__1; +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_TSyntax_getDocString(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1() { _start: { lean_object* x_1; @@ -18657,33 +19011,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.all", 30); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18691,23 +19045,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18715,7 +19069,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7() { _start: { lean_object* x_1; @@ -18723,33 +19077,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.default", 34); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18757,23 +19111,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18781,7 +19135,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13() { _start: { lean_object* x_1; @@ -18789,33 +19143,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.reducible", 36); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18823,23 +19177,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18847,7 +19201,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19() { _start: { lean_object* x_1; @@ -18855,33 +19209,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.instances", 36); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18889,23 +19243,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18913,7 +19267,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -18925,14 +19279,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -18945,14 +19299,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10; +x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12; +x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -18965,14 +19319,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16; +x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18; +x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -18985,14 +19339,14 @@ x_22 = lean_nat_dec_le(x_21, x_2); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22; +x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22; x_24 = l_Repr_addAppParen(x_23, x_2); return x_24; } else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24; +x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24; x_26 = l_Repr_addAppParen(x_25, x_2); return x_26; } @@ -19000,13 +19354,13 @@ return x_26; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383_(x_3, x_2); +x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -19015,7 +19369,7 @@ static lean_object* _init_l_Lean_Meta_instReprTransparencyMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____boxed), 2, 0); return x_1; } } @@ -19027,7 +19381,7 @@ x_1 = l_Lean_Meta_instReprTransparencyMode___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1() { _start: { lean_object* x_1; @@ -19035,33 +19389,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.all", 27); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19069,23 +19423,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19093,7 +19447,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7() { _start: { lean_object* x_1; @@ -19101,33 +19455,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.notClasses", 34); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19135,23 +19489,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19159,7 +19513,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13() { _start: { lean_object* x_1; @@ -19167,33 +19521,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.none", 28); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19201,23 +19555,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19225,7 +19579,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -19237,14 +19591,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -19257,14 +19611,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10; +x_11 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12; +x_13 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -19277,14 +19631,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16; +x_17 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18; +x_19 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -19292,13 +19646,13 @@ return x_20; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530_(x_3, x_2); +x_4 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -19307,7 +19661,7 @@ static lean_object* _init_l_Lean_Meta_instReprEtaStructMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____boxed), 2, 0); return x_1; } } @@ -19319,7 +19673,7 @@ x_1 = l_Lean_Meta_instReprEtaStructMode___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1() { _start: { lean_object* x_1; @@ -19327,41 +19681,41 @@ x_1 = lean_mk_string_from_bytes("zeta", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -19370,7 +19724,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6() { _start: { lean_object* x_1; @@ -19378,17 +19732,17 @@ x_1 = lean_mk_string_from_bytes("beta", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8() { _start: { lean_object* x_1; @@ -19396,17 +19750,17 @@ x_1 = lean_mk_string_from_bytes("eta", 3); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10() { _start: { lean_object* x_1; @@ -19414,17 +19768,17 @@ x_1 = lean_mk_string_from_bytes("etaStruct", 9); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -19433,7 +19787,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13() { _start: { lean_object* x_1; @@ -19441,17 +19795,17 @@ x_1 = lean_mk_string_from_bytes("iota", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15() { _start: { lean_object* x_1; @@ -19459,17 +19813,17 @@ x_1 = lean_mk_string_from_bytes("proj", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17() { _start: { lean_object* x_1; @@ -19477,17 +19831,17 @@ x_1 = lean_mk_string_from_bytes("decide", 6); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -19496,7 +19850,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20() { _start: { lean_object* x_1; @@ -19504,17 +19858,17 @@ x_1 = lean_mk_string_from_bytes("autoUnfold", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -19523,7 +19877,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23() { _start: { lean_object* x_1; @@ -19531,17 +19885,17 @@ x_1 = lean_mk_string_from_bytes("failIfUnchanged", 15); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -19550,7 +19904,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26() { _start: { lean_object* x_1; @@ -19558,17 +19912,17 @@ x_1 = lean_mk_string_from_bytes("unfoldPartialApp", 16); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28() { _start: { lean_object* x_1; lean_object* x_2; @@ -19577,7 +19931,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29() { _start: { lean_object* x_1; @@ -19585,17 +19939,17 @@ x_1 = lean_mk_string_from_bytes("zetaDelta", 9); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31() { _start: { lean_object* x_1; lean_object* x_2; @@ -19605,23 +19959,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19629,7 +19983,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -19639,23 +19993,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19663,7 +20017,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093_(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; uint8_t x_13; uint8_t x_14; uint8_t x_15; uint8_t x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; @@ -19672,8 +20026,8 @@ x_4 = lean_ctor_get_uint8(x_1, 1); x_5 = lean_ctor_get_uint8(x_1, 2); x_6 = lean_ctor_get_uint8(x_1, 3); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530_(x_6, x_7); -x_9 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12; +x_8 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978_(x_6, x_7); +x_9 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12; x_10 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -19691,32 +20045,32 @@ x_19 = lean_ctor_get_uint8(x_1, 10); if (x_3 == 0) { lean_object* x_160; -x_160 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_160 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_20 = x_160; goto block_159; } else { lean_object* x_161; -x_161 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_161 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_20 = x_161; goto block_159; } block_159: { 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; -x_21 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5; +x_21 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5; x_22 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); x_23 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_23, 0, x_22); lean_ctor_set_uint8(x_23, sizeof(void*)*1, x_11); -x_24 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4; +x_24 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4; x_25 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4; +x_26 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4; x_27 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -19724,25 +20078,25 @@ x_28 = lean_box(1); x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); -x_30 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7; +x_30 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7; x_31 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); -x_32 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; +x_32 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; x_33 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_33, 0, x_31); lean_ctor_set(x_33, 1, x_32); if (x_4 == 0) { lean_object* x_157; -x_157 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_157 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_34 = x_157; goto block_156; } else { lean_object* x_158; -x_158 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_158 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_34 = x_158; goto block_156; } @@ -19764,7 +20118,7 @@ lean_ctor_set(x_38, 1, x_26); x_39 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_28); -x_40 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9; +x_40 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9; x_41 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_41, 0, x_39); lean_ctor_set(x_41, 1, x_40); @@ -19774,21 +20128,21 @@ lean_ctor_set(x_42, 1, x_32); if (x_5 == 0) { lean_object* x_154; -x_154 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_154 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_43 = x_154; goto block_153; } else { lean_object* x_155; -x_155 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_155 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_43 = x_155; goto block_153; } block_153: { 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; -x_44 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7; +x_44 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7; x_45 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -19804,7 +20158,7 @@ lean_ctor_set(x_48, 1, x_26); x_49 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_28); -x_50 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11; +x_50 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11; x_51 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); @@ -19820,7 +20174,7 @@ lean_ctor_set(x_54, 1, x_26); x_55 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_28); -x_56 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14; +x_56 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14; x_57 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_57, 0, x_55); lean_ctor_set(x_57, 1, x_56); @@ -19830,14 +20184,14 @@ lean_ctor_set(x_58, 1, x_32); if (x_13 == 0) { lean_object* x_151; -x_151 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_151 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_59 = x_151; goto block_150; } else { lean_object* x_152; -x_152 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_152 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_59 = x_152; goto block_150; } @@ -19859,7 +20213,7 @@ lean_ctor_set(x_63, 1, x_26); x_64 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_28); -x_65 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16; +x_65 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16; x_66 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); @@ -19869,14 +20223,14 @@ lean_ctor_set(x_67, 1, x_32); if (x_14 == 0) { lean_object* x_148; -x_148 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_148 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_68 = x_148; goto block_147; } else { lean_object* x_149; -x_149 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_149 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_68 = x_149; goto block_147; } @@ -19898,7 +20252,7 @@ lean_ctor_set(x_72, 1, x_26); x_73 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_28); -x_74 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18; +x_74 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18; x_75 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_75, 0, x_73); lean_ctor_set(x_75, 1, x_74); @@ -19908,21 +20262,21 @@ lean_ctor_set(x_76, 1, x_32); if (x_15 == 0) { lean_object* x_145; -x_145 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_145 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_77 = x_145; goto block_144; } else { lean_object* x_146; -x_146 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_146 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_77 = x_146; goto block_144; } block_144: { 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; -x_78 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19; +x_78 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19; x_79 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -19938,7 +20292,7 @@ lean_ctor_set(x_82, 1, x_26); x_83 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_28); -x_84 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21; +x_84 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21; x_85 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); @@ -19948,21 +20302,21 @@ lean_ctor_set(x_86, 1, x_32); if (x_16 == 0) { lean_object* x_142; -x_142 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_142 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_87 = x_142; goto block_141; } else { lean_object* x_143; -x_143 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_143 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_87 = x_143; goto block_141; } block_141: { 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; -x_88 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22; +x_88 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22; x_89 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -19978,7 +20332,7 @@ lean_ctor_set(x_92, 1, x_26); x_93 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_28); -x_94 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24; +x_94 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24; x_95 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_95, 0, x_93); lean_ctor_set(x_95, 1, x_94); @@ -19988,21 +20342,21 @@ lean_ctor_set(x_96, 1, x_32); if (x_17 == 0) { lean_object* x_139; -x_139 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_139 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_97 = x_139; goto block_138; } else { lean_object* x_140; -x_140 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_140 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_97 = x_140; goto block_138; } block_138: { 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; -x_98 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25; +x_98 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25; x_99 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -20018,7 +20372,7 @@ lean_ctor_set(x_102, 1, x_26); x_103 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_28); -x_104 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27; +x_104 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27; x_105 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_105, 0, x_103); lean_ctor_set(x_105, 1, x_104); @@ -20028,21 +20382,21 @@ lean_ctor_set(x_106, 1, x_32); if (x_18 == 0) { lean_object* x_136; -x_136 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_136 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_107 = x_136; goto block_135; } else { lean_object* x_137; -x_137 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_137 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_107 = x_137; goto block_135; } block_135: { 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; -x_108 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28; +x_108 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28; x_109 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -20058,7 +20412,7 @@ lean_ctor_set(x_112, 1, x_26); x_113 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_28); -x_114 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30; +x_114 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30; x_115 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_115, 0, x_113); lean_ctor_set(x_115, 1, x_114); @@ -20068,19 +20422,19 @@ lean_ctor_set(x_116, 1, x_32); if (x_19 == 0) { 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; -x_117 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33; +x_117 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33; x_118 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_118, 0, x_116); lean_ctor_set(x_118, 1, x_117); -x_119 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +x_119 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; x_120 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_118); -x_121 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +x_121 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; x_122 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_122, 0, x_120); lean_ctor_set(x_122, 1, x_121); -x_123 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; +x_123 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; x_124 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_124, 0, x_123); lean_ctor_set(x_124, 1, x_122); @@ -20092,19 +20446,19 @@ return x_125; else { 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; -x_126 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36; +x_126 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36; x_127 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_127, 0, x_116); lean_ctor_set(x_127, 1, x_126); -x_128 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +x_128 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; x_129 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); -x_130 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +x_130 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; x_131 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_131, 0, x_129); lean_ctor_set(x_131, 1, x_130); -x_132 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; +x_132 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; x_133 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_133, 0, x_132); lean_ctor_set(x_133, 1, x_131); @@ -20124,11 +20478,11 @@ return x_134; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -20138,7 +20492,7 @@ static lean_object* _init_l_Lean_Meta_instReprConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____boxed), 2, 0); return x_1; } } @@ -20150,7 +20504,7 @@ x_1 = l_Lean_Meta_instReprConfig___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1() { _start: { lean_object* x_1; @@ -20158,41 +20512,41 @@ x_1 = lean_mk_string_from_bytes("maxSteps", 8); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3; +x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -20201,7 +20555,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6() { _start: { lean_object* x_1; @@ -20209,17 +20563,17 @@ x_1 = lean_mk_string_from_bytes("maxDischargeDepth", 17); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -20228,7 +20582,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9() { _start: { lean_object* x_1; @@ -20236,17 +20590,17 @@ x_1 = lean_mk_string_from_bytes("contextual", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11() { _start: { lean_object* x_1; @@ -20254,17 +20608,17 @@ x_1 = lean_mk_string_from_bytes("memoize", 7); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -20273,7 +20627,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14() { _start: { lean_object* x_1; @@ -20281,17 +20635,17 @@ x_1 = lean_mk_string_from_bytes("singlePass", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16() { _start: { lean_object* x_1; @@ -20299,17 +20653,17 @@ x_1 = lean_mk_string_from_bytes("arith", 5); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -20318,7 +20672,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19() { _start: { lean_object* x_1; @@ -20326,17 +20680,17 @@ x_1 = lean_mk_string_from_bytes("dsimp", 5); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21() { _start: { lean_object* x_1; @@ -20344,17 +20698,17 @@ x_1 = lean_mk_string_from_bytes("ground", 6); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330_(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; lean_object* x_7; uint8_t x_8; lean_object* x_9; 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; uint8_t x_32; uint8_t x_33; uint8_t x_34; uint8_t x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; uint8_t x_49; uint8_t x_50; uint8_t x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; @@ -20363,7 +20717,7 @@ lean_inc(x_3); x_4 = l_Nat_repr(x_3); x_5 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5; +x_6 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5; x_7 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); @@ -20371,11 +20725,11 @@ x_8 = 0; x_9 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_9, 0, x_7); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_8); -x_10 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4; +x_10 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4; x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4; +x_12 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4; x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -20383,11 +20737,11 @@ x_14 = lean_box(1); x_15 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7; +x_16 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5; +x_18 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5; x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -20396,7 +20750,7 @@ lean_inc(x_20); x_21 = l_Nat_repr(x_20); x_22 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_22, 0, x_21); -x_23 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8; +x_23 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8; x_24 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -20412,7 +20766,7 @@ lean_ctor_set(x_27, 1, x_12); x_28 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_14); -x_29 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10; +x_29 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10; x_30 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -20427,8 +20781,8 @@ x_36 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 4); x_37 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 5); x_38 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 6); x_39 = lean_unsigned_to_nat(0u); -x_40 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530_(x_38, x_39); -x_41 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12; +x_40 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978_(x_38, x_39); +x_41 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12; x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); @@ -20449,21 +20803,21 @@ lean_dec(x_1); if (x_32 == 0) { lean_object* x_264; -x_264 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_264 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_54 = x_264; goto block_263; } else { lean_object* x_265; -x_265 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_265 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_54 = x_265; goto block_263; } block_263: { 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_55 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22; +x_55 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22; x_56 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -20479,7 +20833,7 @@ lean_ctor_set(x_59, 1, x_12); x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_14); -x_61 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12; +x_61 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12; x_62 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_62, 0, x_60); lean_ctor_set(x_62, 1, x_61); @@ -20489,21 +20843,21 @@ lean_ctor_set(x_63, 1, x_18); if (x_33 == 0) { lean_object* x_261; -x_261 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_261 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_64 = x_261; goto block_260; } else { lean_object* x_262; -x_262 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_262 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_64 = x_262; goto block_260; } block_260: { 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_65 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13; +x_65 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13; x_66 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -20519,7 +20873,7 @@ lean_ctor_set(x_69, 1, x_12); x_70 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_14); -x_71 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15; +x_71 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15; x_72 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -20529,14 +20883,14 @@ lean_ctor_set(x_73, 1, x_18); if (x_34 == 0) { lean_object* x_258; -x_258 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_258 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_74 = x_258; goto block_257; } else { lean_object* x_259; -x_259 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_259 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_74 = x_259; goto block_257; } @@ -20558,7 +20912,7 @@ lean_ctor_set(x_78, 1, x_12); x_79 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_14); -x_80 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2; +x_80 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2; x_81 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_81, 0, x_79); lean_ctor_set(x_81, 1, x_80); @@ -20568,21 +20922,21 @@ lean_ctor_set(x_82, 1, x_18); if (x_35 == 0) { lean_object* x_255; -x_255 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_255 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_83 = x_255; goto block_254; } else { lean_object* x_256; -x_256 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_256 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_83 = x_256; goto block_254; } block_254: { 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; -x_84 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5; +x_84 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5; x_85 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); @@ -20598,7 +20952,7 @@ lean_ctor_set(x_88, 1, x_12); x_89 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_14); -x_90 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7; +x_90 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7; x_91 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_91, 0, x_89); lean_ctor_set(x_91, 1, x_90); @@ -20608,14 +20962,14 @@ lean_ctor_set(x_92, 1, x_18); if (x_36 == 0) { lean_object* x_252; -x_252 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_252 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_93 = x_252; goto block_251; } else { lean_object* x_253; -x_253 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_253 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_93 = x_253; goto block_251; } @@ -20637,7 +20991,7 @@ lean_ctor_set(x_97, 1, x_12); x_98 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_14); -x_99 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9; +x_99 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9; x_100 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_100, 0, x_98); lean_ctor_set(x_100, 1, x_99); @@ -20647,21 +21001,21 @@ lean_ctor_set(x_101, 1, x_18); if (x_37 == 0) { lean_object* x_249; -x_249 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_249 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_102 = x_249; goto block_248; } else { lean_object* x_250; -x_250 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_250 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_102 = x_250; goto block_248; } block_248: { 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; -x_103 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7; +x_103 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7; x_104 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); @@ -20677,7 +21031,7 @@ lean_ctor_set(x_107, 1, x_12); x_108 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_14); -x_109 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11; +x_109 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11; x_110 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); @@ -20693,7 +21047,7 @@ lean_ctor_set(x_113, 1, x_12); x_114 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_14); -x_115 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14; +x_115 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14; x_116 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_116, 0, x_114); lean_ctor_set(x_116, 1, x_115); @@ -20703,14 +21057,14 @@ lean_ctor_set(x_117, 1, x_18); if (x_44 == 0) { lean_object* x_246; -x_246 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_246 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_118 = x_246; goto block_245; } else { lean_object* x_247; -x_247 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_247 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_118 = x_247; goto block_245; } @@ -20732,7 +21086,7 @@ lean_ctor_set(x_122, 1, x_12); x_123 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_14); -x_124 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16; +x_124 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16; x_125 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_125, 0, x_123); lean_ctor_set(x_125, 1, x_124); @@ -20742,14 +21096,14 @@ lean_ctor_set(x_126, 1, x_18); if (x_45 == 0) { lean_object* x_243; -x_243 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_243 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_127 = x_243; goto block_242; } else { lean_object* x_244; -x_244 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_244 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_127 = x_244; goto block_242; } @@ -20771,7 +21125,7 @@ lean_ctor_set(x_131, 1, x_12); x_132 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_14); -x_133 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18; +x_133 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18; x_134 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_134, 0, x_132); lean_ctor_set(x_134, 1, x_133); @@ -20781,21 +21135,21 @@ lean_ctor_set(x_135, 1, x_18); if (x_46 == 0) { lean_object* x_240; -x_240 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_240 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_136 = x_240; goto block_239; } else { lean_object* x_241; -x_241 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_241 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_136 = x_241; goto block_239; } block_239: { 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; -x_137 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19; +x_137 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19; x_138 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_138, 0, x_137); lean_ctor_set(x_138, 1, x_136); @@ -20811,7 +21165,7 @@ lean_ctor_set(x_141, 1, x_12); x_142 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_14); -x_143 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17; +x_143 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17; x_144 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_144, 0, x_142); lean_ctor_set(x_144, 1, x_143); @@ -20821,21 +21175,21 @@ lean_ctor_set(x_145, 1, x_18); if (x_47 == 0) { lean_object* x_237; -x_237 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_237 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_146 = x_237; goto block_236; } else { lean_object* x_238; -x_238 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_238 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_146 = x_238; goto block_236; } block_236: { 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; -x_147 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18; +x_147 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18; x_148 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_146); @@ -20851,7 +21205,7 @@ lean_ctor_set(x_151, 1, x_12); x_152 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_152, 0, x_151); lean_ctor_set(x_152, 1, x_14); -x_153 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21; +x_153 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21; x_154 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_154, 0, x_152); lean_ctor_set(x_154, 1, x_153); @@ -20861,14 +21215,14 @@ lean_ctor_set(x_155, 1, x_18); if (x_48 == 0) { lean_object* x_234; -x_234 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_234 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_156 = x_234; goto block_233; } else { lean_object* x_235; -x_235 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_235 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_156 = x_235; goto block_233; } @@ -20890,7 +21244,7 @@ lean_ctor_set(x_160, 1, x_12); x_161 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_161, 0, x_160); lean_ctor_set(x_161, 1, x_14); -x_162 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20; +x_162 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20; x_163 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_163, 0, x_161); lean_ctor_set(x_163, 1, x_162); @@ -20900,14 +21254,14 @@ lean_ctor_set(x_164, 1, x_18); if (x_49 == 0) { lean_object* x_231; -x_231 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_231 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_165 = x_231; goto block_230; } else { lean_object* x_232; -x_232 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_232 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_165 = x_232; goto block_230; } @@ -20929,7 +21283,7 @@ lean_ctor_set(x_169, 1, x_12); x_170 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_170, 0, x_169); lean_ctor_set(x_170, 1, x_14); -x_171 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24; +x_171 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24; x_172 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_172, 0, x_170); lean_ctor_set(x_172, 1, x_171); @@ -20939,21 +21293,21 @@ lean_ctor_set(x_173, 1, x_18); if (x_50 == 0) { lean_object* x_228; -x_228 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_228 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_174 = x_228; goto block_227; } else { lean_object* x_229; -x_229 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_229 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_174 = x_229; goto block_227; } block_227: { 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; -x_175 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25; +x_175 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25; x_176 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_176, 0, x_175); lean_ctor_set(x_176, 1, x_174); @@ -20969,7 +21323,7 @@ lean_ctor_set(x_179, 1, x_12); x_180 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_14); -x_181 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22; +x_181 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22; x_182 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_182, 0, x_180); lean_ctor_set(x_182, 1, x_181); @@ -20979,14 +21333,14 @@ lean_ctor_set(x_183, 1, x_18); if (x_51 == 0) { lean_object* x_225; -x_225 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_225 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_184 = x_225; goto block_224; } else { lean_object* x_226; -x_226 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_226 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_184 = x_226; goto block_224; } @@ -21008,7 +21362,7 @@ lean_ctor_set(x_188, 1, x_12); x_189 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_14); -x_190 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27; +x_190 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27; x_191 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_191, 0, x_189); lean_ctor_set(x_191, 1, x_190); @@ -21018,21 +21372,21 @@ lean_ctor_set(x_192, 1, x_18); if (x_52 == 0) { lean_object* x_222; -x_222 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31; +x_222 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31; x_193 = x_222; goto block_221; } else { lean_object* x_223; -x_223 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34; +x_223 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34; x_193 = x_223; goto block_221; } block_221: { 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; -x_194 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28; +x_194 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28; x_195 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_195, 0, x_194); lean_ctor_set(x_195, 1, x_193); @@ -21048,7 +21402,7 @@ lean_ctor_set(x_198, 1, x_12); x_199 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_199, 0, x_198); lean_ctor_set(x_199, 1, x_14); -x_200 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30; +x_200 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30; x_201 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_201, 0, x_199); lean_ctor_set(x_201, 1, x_200); @@ -21058,19 +21412,19 @@ lean_ctor_set(x_202, 1, x_18); if (x_53 == 0) { 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; -x_203 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33; +x_203 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33; x_204 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_204, 0, x_202); lean_ctor_set(x_204, 1, x_203); -x_205 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +x_205 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; x_206 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_206, 0, x_205); lean_ctor_set(x_206, 1, x_204); -x_207 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +x_207 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; x_208 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_208, 0, x_206); lean_ctor_set(x_208, 1, x_207); -x_209 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; +x_209 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; x_210 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_210, 0, x_209); lean_ctor_set(x_210, 1, x_208); @@ -21082,19 +21436,19 @@ return x_211; else { 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; -x_212 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36; +x_212 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36; x_213 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_213, 0, x_202); lean_ctor_set(x_213, 1, x_212); -x_214 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11; +x_214 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11; x_215 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_215, 0, x_214); lean_ctor_set(x_215, 1, x_213); -x_216 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13; +x_216 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13; x_217 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_217, 0, x_215); lean_ctor_set(x_217, 1, x_216); -x_218 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10; +x_218 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10; x_219 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_219, 0, x_218); lean_ctor_set(x_219, 1, x_217); @@ -21120,11 +21474,11 @@ return x_220; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -21133,7 +21487,7 @@ static lean_object* _init_l_Lean_Meta_instReprConfig__1___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____boxed), 2, 0); return x_1; } } @@ -22053,7 +22407,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simpAllKind___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4; +x_1 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -22169,7 +22523,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_dsimpKind___closed__3() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -24056,7 +24410,7 @@ lean_inc(x_12); x_27 = l_Lean_Syntax_node2(x_12, x_26, x_21, x_25); lean_inc(x_12); x_28 = l_Lean_Syntax_node1(x_12, x_15, x_27); -x_29 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10; +x_29 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10; lean_inc(x_12); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_12); @@ -24178,7 +24532,7 @@ lean_inc(x_12); x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_12); lean_ctor_set(x_79, 1, x_78); -x_80 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6; +x_80 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6; lean_inc(x_12); x_81 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_81, 0, x_12); @@ -24544,7 +24898,7 @@ lean_ctor_set(x_225, 0, x_12); lean_ctor_set(x_225, 1, x_223); lean_ctor_set(x_225, 2, x_222); lean_ctor_set(x_225, 3, x_224); -x_226 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10; +x_226 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10; lean_inc(x_12); x_227 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_227, 0, x_12); @@ -24649,7 +25003,7 @@ static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_2 = l_String_toSubstring_x27(x_1); return x_2; } @@ -24659,7 +25013,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -24671,7 +25025,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; x_2 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__2; x_3 = l_Lean_Parser_Tactic_tacticErw_______closed__1; -x_4 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_4 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } @@ -27075,7 +27429,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__16; -x_2 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_2 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; x_3 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__18; x_4 = 0; x_5 = lean_alloc_ctor(10, 3, 1); @@ -27104,7 +27458,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simpAutoUnfold___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10; +x_1 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -27186,7 +27540,7 @@ x_1 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__26; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t 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; @@ -27214,7 +27568,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1() { _start: { lean_object* x_1; @@ -27222,16 +27576,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.Simp.Config", 21); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3() { _start: { lean_object* x_1; @@ -27239,7 +27593,7 @@ x_1 = lean_mk_string_from_bytes("Meta", 4); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4() { _start: { lean_object* x_1; @@ -27247,7 +27601,7 @@ x_1 = lean_mk_string_from_bytes("Simp", 4); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5() { _start: { lean_object* x_1; @@ -27255,84 +27609,84 @@ x_1 = lean_mk_string_from_bytes("Config", 6); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; 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_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9; x_3 = lean_alloc_ctor(1, 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_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -27393,12 +27747,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -27446,11 +27800,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -27517,7 +27871,7 @@ x_82 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_83 = l_Lean_Syntax_node2(x_12, x_82, x_75, x_81); x_84 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_83, x_38); -x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_84, x_2, x_3); +x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_84, x_2, x_3); lean_dec(x_2); return x_85; } @@ -27572,12 +27926,12 @@ lean_inc(x_90); x_107 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_107, 0, x_90); lean_ctor_set(x_107, 1, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_91); lean_inc(x_92); x_109 = l_Lean_addMacroScope(x_92, x_108, x_91); -x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_90); x_112 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_112, 0, x_90); @@ -27625,11 +27979,11 @@ lean_ctor_set(x_128, 0, x_90); lean_ctor_set(x_128, 1, x_127); lean_inc(x_90); x_129 = l_Lean_Syntax_node2(x_90, x_113, x_126, x_128); -x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_91); lean_inc(x_92); x_131 = l_Lean_addMacroScope(x_92, x_130, x_91); -x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_90); x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_90); @@ -27681,17 +28035,17 @@ x_155 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_90); x_156 = l_Lean_Syntax_node2(x_90, x_155, x_153, x_154); x_157 = l_Lean_Syntax_node5(x_90, x_8, x_94, x_96, x_98, x_156, x_116); -x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_157, x_2, x_3); +x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_157, x_2, x_3); lean_dec(x_2); return x_158; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -27828,45 +28182,45 @@ x_1 = l_Lean_Parser_Tactic_simpArith___closed__10; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5() { _start: { lean_object* x_1; @@ -27874,41 +28228,41 @@ x_1 = lean_mk_string_from_bytes("Decidable", 9); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____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_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -27969,12 +28323,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -28022,11 +28376,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -28054,15 +28408,15 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_64 = l_Lean_Syntax_node3(x_12, x_63, x_57, x_20, x_62); -x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_12); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_12); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_68 = l_Lean_addMacroScope(x_14, x_67, x_13); -x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_70 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_70 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_12); x_71 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_71, 0, x_12); @@ -28117,7 +28471,7 @@ x_91 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_92 = l_Lean_Syntax_node2(x_12, x_91, x_84, x_90); x_93 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_92, x_38); -x_94 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_93, x_2, x_3); +x_94 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_93, x_2, x_3); lean_dec(x_2); return x_94; } @@ -28172,12 +28526,12 @@ lean_inc(x_99); x_116 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_116, 0, x_99); lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_117 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_100); lean_inc(x_101); x_118 = l_Lean_addMacroScope(x_101, x_117, x_100); -x_119 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_120 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_119 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_120 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_99); x_121 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_121, 0, x_99); @@ -28225,11 +28579,11 @@ lean_ctor_set(x_137, 0, x_99); lean_ctor_set(x_137, 1, x_136); lean_inc(x_99); x_138 = l_Lean_Syntax_node2(x_99, x_122, x_135, x_137); -x_139 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_139 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_100); lean_inc(x_101); x_140 = l_Lean_addMacroScope(x_101, x_139, x_100); -x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_99); x_142 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_142, 0, x_99); @@ -28257,15 +28611,15 @@ lean_inc(x_149); lean_inc(x_107); lean_inc(x_99); x_151 = l_Lean_Syntax_node3(x_99, x_150, x_144, x_107, x_149); -x_152 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_152 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_99); x_153 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_153, 0, x_99); lean_ctor_set(x_153, 1, x_152); -x_154 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_154 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_155 = l_Lean_addMacroScope(x_101, x_154, x_100); -x_156 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_157 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_156 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_157 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_99); x_158 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_158, 0, x_99); @@ -28305,7 +28659,7 @@ x_173 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_99); x_174 = l_Lean_Syntax_node2(x_99, x_173, x_171, x_172); x_175 = l_Lean_Syntax_node5(x_99, x_8, x_103, x_105, x_107, x_174, x_125); -x_176 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_175, x_2, x_3); +x_176 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_175, x_2, x_3); lean_dec(x_2); return x_176; } @@ -28443,7 +28797,7 @@ x_1 = l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17561_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19010_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -28504,12 +28858,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -28557,11 +28911,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -28589,16 +28943,16 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_64 = l_Lean_Syntax_node3(x_12, x_63, x_57, x_20, x_62); -x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_12); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_12); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_13); lean_inc(x_14); x_68 = l_Lean_addMacroScope(x_14, x_67, x_13); -x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_12); x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_12); @@ -28612,10 +28966,10 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_72 = l_Lean_Syntax_node3(x_12, x_63, x_71, x_20, x_62); -x_73 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_73 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_74 = l_Lean_addMacroScope(x_14, x_73, x_13); -x_75 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_76 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_75 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_76 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_12); x_77 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_77, 0, x_12); @@ -28671,7 +29025,7 @@ x_97 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_98 = l_Lean_Syntax_node2(x_12, x_97, x_90, x_96); x_99 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_98, x_38); -x_100 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_99, x_2, x_3); +x_100 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_99, x_2, x_3); lean_dec(x_2); return x_100; } @@ -28726,12 +29080,12 @@ lean_inc(x_105); x_122 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_122, 0, x_105); lean_ctor_set(x_122, 1, x_121); -x_123 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6; +x_123 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6; lean_inc(x_106); lean_inc(x_107); x_124 = l_Lean_addMacroScope(x_107, x_123, x_106); -x_125 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2; -x_126 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10; +x_125 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2; +x_126 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10; lean_inc(x_105); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_105); @@ -28779,11 +29133,11 @@ lean_ctor_set(x_143, 0, x_105); lean_ctor_set(x_143, 1, x_142); lean_inc(x_105); x_144 = l_Lean_Syntax_node2(x_105, x_128, x_141, x_143); -x_145 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_145 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_106); lean_inc(x_107); x_146 = l_Lean_addMacroScope(x_107, x_145, x_106); -x_147 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_147 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_105); x_148 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_148, 0, x_105); @@ -28811,16 +29165,16 @@ lean_inc(x_155); lean_inc(x_113); lean_inc(x_105); x_157 = l_Lean_Syntax_node3(x_105, x_156, x_150, x_113, x_155); -x_158 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_158 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_105); x_159 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_159, 0, x_105); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_160 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_106); lean_inc(x_107); x_161 = l_Lean_addMacroScope(x_107, x_160, x_106); -x_162 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_162 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_105); x_163 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_163, 0, x_105); @@ -28834,10 +29188,10 @@ lean_inc(x_155); lean_inc(x_113); lean_inc(x_105); x_165 = l_Lean_Syntax_node3(x_105, x_156, x_164, x_113, x_155); -x_166 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_166 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_167 = l_Lean_addMacroScope(x_107, x_166, x_106); -x_168 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_169 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_168 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_169 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_105); x_170 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_170, 0, x_105); @@ -28878,7 +29232,7 @@ x_185 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_105); x_186 = l_Lean_Syntax_node2(x_105, x_185, x_183, x_184); x_187 = l_Lean_Syntax_node5(x_105, x_8, x_109, x_111, x_113, x_186, x_131); -x_188 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____lambda__1(x_1, x_187, x_2, x_3); +x_188 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____lambda__1(x_1, x_187, x_2, x_3); lean_dec(x_2); return x_188; } @@ -28971,7 +29325,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__15; -x_2 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_2 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; x_3 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__18; x_4 = 0; x_5 = lean_alloc_ctor(10, 3, 1); @@ -29058,7 +29412,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1() { _start: { lean_object* x_1; @@ -29066,7 +29420,7 @@ x_1 = lean_mk_string_from_bytes("simp_all", 8); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t 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; @@ -29074,7 +29428,7 @@ x_5 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tact x_6 = l_Lean_Syntax_setKind(x_1, x_5); x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_6, x_7); -x_9 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1; +x_9 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1; x_10 = 1; x_11 = l_Lean_mkAtomFrom(x_8, x_9, x_10); x_12 = l_Lean_Syntax_setArg(x_6, x_7, x_11); @@ -29094,7 +29448,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1() { _start: { lean_object* x_1; @@ -29102,16 +29456,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.Simp.ConfigCtx", 24); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3() { _start: { lean_object* x_1; @@ -29119,65 +29473,65 @@ x_1 = lean_mk_string_from_bytes("ConfigCtx", 9); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; 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_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -29238,12 +29592,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -29291,11 +29645,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -29362,7 +29716,7 @@ x_82 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_83 = l_Lean_Syntax_node2(x_12, x_82, x_75, x_81); x_84 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_83, x_38); -x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_84, x_2, x_3); +x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_84, x_2, x_3); lean_dec(x_2); return x_85; } @@ -29417,12 +29771,12 @@ lean_inc(x_90); x_107 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_107, 0, x_90); lean_ctor_set(x_107, 1, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_91); lean_inc(x_92); x_109 = l_Lean_addMacroScope(x_92, x_108, x_91); -x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_90); x_112 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_112, 0, x_90); @@ -29470,11 +29824,11 @@ lean_ctor_set(x_128, 0, x_90); lean_ctor_set(x_128, 1, x_127); lean_inc(x_90); x_129 = l_Lean_Syntax_node2(x_90, x_113, x_126, x_128); -x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_91); lean_inc(x_92); x_131 = l_Lean_addMacroScope(x_92, x_130, x_91); -x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_90); x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_90); @@ -29526,17 +29880,17 @@ x_155 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_90); x_156 = l_Lean_Syntax_node2(x_90, x_155, x_153, x_154); x_157 = l_Lean_Syntax_node5(x_90, x_8, x_94, x_96, x_98, x_156, x_116); -x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_157, x_2, x_3); +x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_157, x_2, x_3); lean_dec(x_2); return x_158; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -29659,7 +30013,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllArith___closed__9; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19315_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20764_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -29720,12 +30074,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -29773,11 +30127,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -29805,15 +30159,15 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_64 = l_Lean_Syntax_node3(x_12, x_63, x_57, x_20, x_62); -x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_12); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_12); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_68 = l_Lean_addMacroScope(x_14, x_67, x_13); -x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_70 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_70 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_12); x_71 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_71, 0, x_12); @@ -29868,7 +30222,7 @@ x_91 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_92 = l_Lean_Syntax_node2(x_12, x_91, x_84, x_90); x_93 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_92, x_38); -x_94 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_93, x_2, x_3); +x_94 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_93, x_2, x_3); lean_dec(x_2); return x_94; } @@ -29923,12 +30277,12 @@ lean_inc(x_99); x_116 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_116, 0, x_99); lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_117 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_100); lean_inc(x_101); x_118 = l_Lean_addMacroScope(x_101, x_117, x_100); -x_119 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_120 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_119 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_120 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_99); x_121 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_121, 0, x_99); @@ -29976,11 +30330,11 @@ lean_ctor_set(x_137, 0, x_99); lean_ctor_set(x_137, 1, x_136); lean_inc(x_99); x_138 = l_Lean_Syntax_node2(x_99, x_122, x_135, x_137); -x_139 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_139 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_100); lean_inc(x_101); x_140 = l_Lean_addMacroScope(x_101, x_139, x_100); -x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_99); x_142 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_142, 0, x_99); @@ -30008,15 +30362,15 @@ lean_inc(x_149); lean_inc(x_107); lean_inc(x_99); x_151 = l_Lean_Syntax_node3(x_99, x_150, x_144, x_107, x_149); -x_152 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_152 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_99); x_153 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_153, 0, x_99); lean_ctor_set(x_153, 1, x_152); -x_154 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_154 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_155 = l_Lean_addMacroScope(x_101, x_154, x_100); -x_156 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_157 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_156 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_157 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_99); x_158 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_158, 0, x_99); @@ -30056,7 +30410,7 @@ x_173 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_99); x_174 = l_Lean_Syntax_node2(x_99, x_173, x_171, x_172); x_175 = l_Lean_Syntax_node5(x_99, x_8, x_103, x_105, x_107, x_174, x_125); -x_176 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_175, x_2, x_3); +x_176 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_175, x_2, x_3); lean_dec(x_2); return x_176; } @@ -30180,7 +30534,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__9; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20191_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21640_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -30241,12 +30595,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -30294,11 +30648,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -30326,16 +30680,16 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_64 = l_Lean_Syntax_node3(x_12, x_63, x_57, x_20, x_62); -x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_65 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_12); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_12); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_67 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_13); lean_inc(x_14); x_68 = l_Lean_addMacroScope(x_14, x_67, x_13); -x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_69 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_12); x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_12); @@ -30349,10 +30703,10 @@ lean_inc(x_62); lean_inc(x_20); lean_inc(x_12); x_72 = l_Lean_Syntax_node3(x_12, x_63, x_71, x_20, x_62); -x_73 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_73 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_74 = l_Lean_addMacroScope(x_14, x_73, x_13); -x_75 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_76 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_75 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_76 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_12); x_77 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_77, 0, x_12); @@ -30408,7 +30762,7 @@ x_97 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_98 = l_Lean_Syntax_node2(x_12, x_97, x_90, x_96); x_99 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_98, x_38); -x_100 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_99, x_2, x_3); +x_100 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_99, x_2, x_3); lean_dec(x_2); return x_100; } @@ -30463,12 +30817,12 @@ lean_inc(x_105); x_122 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_122, 0, x_105); lean_ctor_set(x_122, 1, x_121); -x_123 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4; +x_123 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4; lean_inc(x_106); lean_inc(x_107); x_124 = l_Lean_addMacroScope(x_107, x_123, x_106); -x_125 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2; -x_126 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8; +x_125 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2; +x_126 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8; lean_inc(x_105); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_105); @@ -30516,11 +30870,11 @@ lean_ctor_set(x_143, 0, x_105); lean_ctor_set(x_143, 1, x_142); lean_inc(x_105); x_144 = l_Lean_Syntax_node2(x_105, x_128, x_141, x_143); -x_145 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2; +x_145 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2; lean_inc(x_106); lean_inc(x_107); x_146 = l_Lean_addMacroScope(x_107, x_145, x_106); -x_147 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1; +x_147 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1; lean_inc(x_105); x_148 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_148, 0, x_105); @@ -30548,16 +30902,16 @@ lean_inc(x_155); lean_inc(x_113); lean_inc(x_105); x_157 = l_Lean_Syntax_node3(x_105, x_156, x_150, x_113, x_155); -x_158 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3; +x_158 = l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3; lean_inc(x_105); x_159 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_159, 0, x_105); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_160 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_106); lean_inc(x_107); x_161 = l_Lean_addMacroScope(x_107, x_160, x_106); -x_162 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_162 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_105); x_163 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_163, 0, x_105); @@ -30571,10 +30925,10 @@ lean_inc(x_155); lean_inc(x_113); lean_inc(x_105); x_165 = l_Lean_Syntax_node3(x_105, x_156, x_164, x_113, x_155); -x_166 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4; +x_166 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4; x_167 = l_Lean_addMacroScope(x_107, x_166, x_106); -x_168 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3; -x_169 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8; +x_168 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3; +x_169 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8; lean_inc(x_105); x_170 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_170, 0, x_105); @@ -30615,7 +30969,7 @@ x_185 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_105); x_186 = l_Lean_Syntax_node2(x_105, x_185, x_183, x_184); x_187 = l_Lean_Syntax_node5(x_105, x_8, x_109, x_111, x_113, x_186, x_131); -x_188 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1(x_1, x_187, x_2, x_3); +x_188 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1(x_1, x_187, x_2, x_3); lean_dec(x_2); return x_188; } @@ -30753,7 +31107,7 @@ x_1 = l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t 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; @@ -30761,7 +31115,7 @@ x_5 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tact x_6 = l_Lean_Syntax_setKind(x_1, x_5); x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_6, x_7); -x_9 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19; +x_9 = l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19; x_10 = 1; x_11 = l_Lean_mkAtomFrom(x_8, x_9, x_10); x_12 = l_Lean_Syntax_setArg(x_6, x_7, x_11); @@ -30781,7 +31135,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1() { _start: { lean_object* x_1; @@ -30789,16 +31143,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.DSimp.Config", 22); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3() { _start: { lean_object* x_1; @@ -30806,65 +31160,65 @@ x_1 = lean_mk_string_from_bytes("DSimp", 5); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4; 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_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6; 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_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -30925,12 +31279,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -30978,11 +31332,11 @@ lean_ctor_set(x_50, 0, x_12); lean_ctor_set(x_50, 1, x_49); lean_inc(x_12); x_51 = l_Lean_Syntax_node2(x_12, x_35, x_48, x_50); -x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_52 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_13); lean_inc(x_14); x_53 = l_Lean_addMacroScope(x_14, x_52, x_13); -x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_54 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_12); x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_12); @@ -31049,7 +31403,7 @@ x_82 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_12); x_83 = l_Lean_Syntax_node2(x_12, x_82, x_75, x_81); x_84 = l_Lean_Syntax_node5(x_12, x_8, x_16, x_18, x_20, x_83, x_38); -x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1(x_1, x_84, x_2, x_3); +x_85 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1(x_1, x_84, x_2, x_3); lean_dec(x_2); return x_85; } @@ -31104,12 +31458,12 @@ lean_inc(x_90); x_107 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_107, 0, x_90); lean_ctor_set(x_107, 1, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4; +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4; lean_inc(x_91); lean_inc(x_92); x_109 = l_Lean_addMacroScope(x_92, x_108, x_91); -x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2; -x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8; +x_110 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2; +x_111 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8; lean_inc(x_90); x_112 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_112, 0, x_90); @@ -31157,11 +31511,11 @@ lean_ctor_set(x_128, 0, x_90); lean_ctor_set(x_128, 1, x_127); lean_inc(x_90); x_129 = l_Lean_Syntax_node2(x_90, x_113, x_126, x_128); -x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12; +x_130 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12; lean_inc(x_91); lean_inc(x_92); x_131 = l_Lean_addMacroScope(x_92, x_130, x_91); -x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11; +x_132 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11; lean_inc(x_90); x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_90); @@ -31213,17 +31567,17 @@ x_155 = l_Lean_Syntax_mkApp___closed__2; lean_inc(x_90); x_156 = l_Lean_Syntax_node2(x_90, x_155, x_153, x_154); x_157 = l_Lean_Syntax_node5(x_90, x_8, x_94, x_96, x_98, x_156, x_116); -x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1(x_1, x_157, x_2, x_3); +x_158 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1(x_1, x_157, x_2, x_3); lean_dec(x_2); return x_158; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -31231,6 +31585,7 @@ return x_5; lean_object* initialize_Init_MetaTypes(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Array_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Option_BasicAux(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_String_Extra(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Meta(uint8_t builtin, lean_object* w) { lean_object * res; @@ -31245,6 +31600,9 @@ lean_dec_ref(res); res = initialize_Init_Data_Option_BasicAux(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_String_Extra(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_version_major___closed__1 = _init_l_Lean_version_major___closed__1(); lean_mark_persistent(l_Lean_version_major___closed__1); l_Lean_version_major = _init_l_Lean_version_major(); @@ -31371,122 +31729,122 @@ l_Lean_Name_instReprName = _init_l_Lean_Name_instReprName(); lean_mark_persistent(l_Lean_Name_instReprName); l_Lean_Name_appendIndexAfter___closed__1 = _init_l_Lean_Name_appendIndexAfter___closed__1(); lean_mark_persistent(l_Lean_Name_appendIndexAfter___closed__1); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__1); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__2); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__3); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__4); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__5); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__6); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__7); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__8); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__9); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__10); -l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11(); -lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____spec__1___closed__11); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__1); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__2); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__3); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__4); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__5); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__6); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__7); -l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_1943____closed__8); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__1); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__2); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__3); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__4); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__5); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__6); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__7); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__8); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__9); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__10); +l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11 = _init_l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11(); +lean_mark_persistent(l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____spec__1___closed__11); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__1); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__2); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__3); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__4); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__5); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__6); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__7); +l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_3316____closed__8); l_Lean_Syntax_instReprPreresolved___closed__1 = _init_l_Lean_Syntax_instReprPreresolved___closed__1(); lean_mark_persistent(l_Lean_Syntax_instReprPreresolved___closed__1); l_Lean_Syntax_instReprPreresolved = _init_l_Lean_Syntax_instReprPreresolved(); lean_mark_persistent(l_Lean_Syntax_instReprPreresolved); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__1); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__2); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__3); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__4); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__5); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__6); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__7); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__8); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__9); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__10); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__11); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__12); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__13); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__14); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__15); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__16); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__17); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__18); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__19); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__20); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__21); -l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056____closed__22); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__1); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__2); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__3); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__4); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__5); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__6); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__7); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__8); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__9); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__10); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__11); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__12); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__13); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__14); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__15); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__16); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__17); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__18); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__19); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__20); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__21); +l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22 = _init_l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429____closed__22); l_Lean_Syntax_instReprSyntax___closed__1 = _init_l_Lean_Syntax_instReprSyntax___closed__1(); lean_mark_persistent(l_Lean_Syntax_instReprSyntax___closed__1); l_Lean_Syntax_instReprSyntax = _init_l_Lean_Syntax_instReprSyntax(); lean_mark_persistent(l_Lean_Syntax_instReprSyntax); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__1); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__2); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__3); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__4); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__5); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__6); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__7); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__8); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__9); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__10); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__11); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__12); -l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg___closed__13); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__1); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__2); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__3); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__4); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__5); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__6); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__7); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__8); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__9); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__10); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__11); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__12); +l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13 = _init_l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg___closed__13); l_Lean_Syntax_instReprTSyntax___closed__1 = _init_l_Lean_Syntax_instReprTSyntax___closed__1(); lean_mark_persistent(l_Lean_Syntax_instReprTSyntax___closed__1); l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray___closed__1 = _init_l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray___closed__1(); @@ -31793,218 +32151,218 @@ l_Lean_TSyntax_expandInterpolatedStr___closed__4 = _init_l_Lean_TSyntax_expandIn lean_mark_persistent(l_Lean_TSyntax_expandInterpolatedStr___closed__4); l_Lean_TSyntax_expandInterpolatedStr___closed__5 = _init_l_Lean_TSyntax_expandInterpolatedStr___closed__5(); lean_mark_persistent(l_Lean_TSyntax_expandInterpolatedStr___closed__5); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__18); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__19); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__20); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__21); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__22); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__23); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_11383____closed__24); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__19); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__20); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__21); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__22); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__23); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12831____closed__24); l_Lean_Meta_instReprTransparencyMode___closed__1 = _init_l_Lean_Meta_instReprTransparencyMode___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprTransparencyMode___closed__1); l_Lean_Meta_instReprTransparencyMode = _init_l_Lean_Meta_instReprTransparencyMode(); lean_mark_persistent(l_Lean_Meta_instReprTransparencyMode); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_11530____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12978____closed__18); l_Lean_Meta_instReprEtaStructMode___closed__1 = _init_l_Lean_Meta_instReprEtaStructMode___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprEtaStructMode___closed__1); l_Lean_Meta_instReprEtaStructMode = _init_l_Lean_Meta_instReprEtaStructMode(); lean_mark_persistent(l_Lean_Meta_instReprEtaStructMode); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__18); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__19); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__20); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__21); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__22); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__23); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__24); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__25); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__26); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__27); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__28); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__29); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__30); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__31); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__32); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__33); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__34); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__35); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11645____closed__36); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__19); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__20); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__21); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__22); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__23); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__24); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__25); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__26); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__27); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__28); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__29); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__30); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__31); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__32); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__33); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__34); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__35); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13093____closed__36); l_Lean_Meta_instReprConfig___closed__1 = _init_l_Lean_Meta_instReprConfig___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprConfig___closed__1); l_Lean_Meta_instReprConfig = _init_l_Lean_Meta_instReprConfig(); lean_mark_persistent(l_Lean_Meta_instReprConfig); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__18); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__19); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__20); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__21); -l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_11882____closed__22); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__19); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__20); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__21); +l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprConfig____x40_Init_Meta___hyg_13330____closed__22); l_Lean_Meta_instReprConfig__1___closed__1 = _init_l_Lean_Meta_instReprConfig__1___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprConfig__1___closed__1); l_Lean_Meta_instReprConfig__1 = _init_l_Lean_Meta_instReprConfig__1(); @@ -32753,30 +33111,30 @@ l_Lean_Parser_Tactic_simpAutoUnfold___closed__26 = _init_l_Lean_Parser_Tactic_si lean_mark_persistent(l_Lean_Parser_Tactic_simpAutoUnfold___closed__26); l_Lean_Parser_Tactic_simpAutoUnfold = _init_l_Lean_Parser_Tactic_simpAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__8); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__9); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__10); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__11); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_15881____closed__12); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__9); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__10); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__11); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17330____closed__12); l_Lean_Parser_Tactic_simpArith___closed__1 = _init_l_Lean_Parser_Tactic_simpArith___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArith___closed__1); l_Lean_Parser_Tactic_simpArith___closed__2 = _init_l_Lean_Parser_Tactic_simpArith___closed__2(); @@ -32799,22 +33157,22 @@ l_Lean_Parser_Tactic_simpArith___closed__10 = _init_l_Lean_Parser_Tactic_simpAri lean_mark_persistent(l_Lean_Parser_Tactic_simpArith___closed__10); l_Lean_Parser_Tactic_simpArith = _init_l_Lean_Parser_Tactic_simpArith(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArith); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_16675____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18124____closed__8); l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1 = _init_l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1); l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2 = _init_l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2(); @@ -32865,24 +33223,24 @@ l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13); l_Lean_Parser_Tactic_simpAllAutoUnfold = _init_l_Lean_Parser_Tactic_simpAllAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAllAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____lambda__1___closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18531____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____lambda__1___closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19980____closed__8); l_Lean_Parser_Tactic_simpAllArith___closed__1 = _init_l_Lean_Parser_Tactic_simpAllArith___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAllArith___closed__1); l_Lean_Parser_Tactic_simpAllArith___closed__2 = _init_l_Lean_Parser_Tactic_simpAllArith___closed__2(); @@ -32945,22 +33303,22 @@ l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10 = _init_l_Lean_Parser_Tactic_d lean_mark_persistent(l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10); l_Lean_Parser_Tactic_dsimpAutoUnfold = _init_l_Lean_Parser_Tactic_dsimpAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_dsimpAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21151____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22600____closed__8); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Omega/Int.c b/stage0/stdlib/Init/Omega/Int.c index 4f17beb6bc..d5dd693b09 100644 --- a/stage0/stdlib/Init/Omega/Int.c +++ b/stage0/stdlib/Init/Omega/Int.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Omega.Int -// Imports: Init.Data.Int.Order +// Imports: Init.Data.Int.Order Init.Data.Int.DivModLemmas Init.Data.Nat.Lemmas #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -75,6 +75,8 @@ return x_4; } } lean_object* initialize_Init_Data_Int_Order(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Int_DivModLemmas(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Nat_Lemmas(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Omega_Int(uint8_t builtin, lean_object* w) { lean_object * res; @@ -83,6 +85,12 @@ _G_initialized = true; res = initialize_Init_Data_Int_Order(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Int_DivModLemmas(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Nat_Lemmas(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Init_Omega_Int_0__Int_neg_match__1_splitter___rarg___closed__1 = _init_l___private_Init_Omega_Int_0__Int_neg_match__1_splitter___rarg___closed__1(); lean_mark_persistent(l___private_Init_Omega_Int_0__Int_neg_match__1_splitter___rarg___closed__1); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index e8022c55f4..171209994f 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -20,21 +20,22 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd___boxed(lean_object*, lean_obj LEAN_EXPORT lean_object* l_IO_println___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_eprintln___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instInhabitedStream___closed__1; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25; -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327_(uint8_t, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_byte_array_copy_slice(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22; static lean_object* l_termPrintln_x21_______closed__9; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_EIO_toIO_x27(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_eprint___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_io_cancel(lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__20; static lean_object* l_IO_FS_instInhabitedSystemTime___closed__1; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1; lean_object* lean_io_prim_handle_lock(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_getNumHeartbeats___boxed(lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6; LEAN_EXPORT lean_object* l_EIO_toBaseIO___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_cwd___default; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2; LEAN_EXPORT lean_object* l_unsafeBaseIO(lean_object*); LEAN_EXPORT lean_object* l_termPrintln_x21____; static lean_object* l_IO_FS_instInhabitedStream___closed__4; @@ -43,57 +44,57 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd(lean_object*, lean_object*) lean_object* lean_io_prim_handle_unlock(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_EIO_toIO(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642_(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__1; lean_object* lean_io_prim_handle_put_str(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_toEIO(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__2(lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at_IO_Process_output___spec__1(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_walkDir(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_runEval(lean_object*); LEAN_EXPORT lean_object* l_IO_mkRef___rarg(lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____boxed(lean_object*, lean_object*); lean_object* l_System_FilePath_join(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeFile___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_lines_read___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4; LEAN_EXPORT lean_object* l_IO_Process_spawn___boxed(lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__5; LEAN_EXPORT lean_object* l_MonadExcept_orElse___at_instOrElseEIO___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_io_remove_file(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3; static uint32_t l_IO_AccessRight_flags___closed__11; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___rarg___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_println(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14; lean_object* lean_string_from_utf8_unchecked(lean_object*); lean_object* lean_io_prim_handle_read(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readFile___boxed(lean_object*, lean_object*); lean_object* lean_io_check_canceled(lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16; LEAN_EXPORT lean_object* l_IO_appPath___boxed(lean_object*); LEAN_EXPORT lean_object* l_EIO_toIO___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___boxed(lean_object*, lean_object*); lean_object* lean_io_has_finished(lean_object*, lean_object*); static uint32_t l_IO_FS_instInhabitedStream___lambda__1___closed__1; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20; LEAN_EXPORT lean_object* l_EIO_asTask(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_toIO_x27___rarg(lean_object*, lean_object*); lean_object* lean_get_set_stdout(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__8; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__3; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3; LEAN_EXPORT lean_object* l_Lean_instEvalUnit(lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__17; LEAN_EXPORT lean_object* l_IO_mkRef(lean_object*); lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12; LEAN_EXPORT lean_object* l_Lean_runEval___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_String_quote(lean_object*); lean_object* lean_io_prim_handle_flush(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; LEAN_EXPORT lean_object* l_EIO_bindTask___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_getLine___boxed(lean_object*, lean_object*); @@ -113,9 +114,11 @@ LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__2___boxed(lean_objec LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instInhabitedSystemTime___closed__2; LEAN_EXPORT lean_object* l_IO_FS_instOrdSystemTime; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3; LEAN_EXPORT lean_object* l_Lean_instEvalUnit___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_io_eprintln(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_write___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__2(lean_object*, lean_object*); uint8_t l_ByteArray_isEmpty(lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__13; @@ -123,6 +126,7 @@ lean_object* lean_io_process_child_take_stdin(lean_object*, lean_object*, lean_o static lean_object* l_IO_appDir___closed__1; static lean_object* l_termPrintln_x21_______closed__1; lean_object* lean_io_rename(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__5___boxed(lean_object*, lean_object*); @@ -141,9 +145,12 @@ static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__4; static lean_object* l_IO_FileRight_user___default___closed__1; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__3(lean_object*, lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__4; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12; LEAN_EXPORT lean_object* l_IO_withStderr___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__16; lean_object* lean_io_remove_dir(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13; LEAN_EXPORT lean_object* l_IO_FS_DirEntry_path(lean_object*); static uint32_t l_IO_AccessRight_flags___closed__2; LEAN_EXPORT lean_object* l_IO_checkCanceled___boxed(lean_object*); @@ -154,22 +161,18 @@ static lean_object* l_termPrintln_x21_______closed__13; lean_object* l_EStateM_instMonadEStateM(lean_object*, lean_object*); static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__9; LEAN_EXPORT lean_object* l_allocprof___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedSystemTime; LEAN_EXPORT lean_object* l_Lean_instEval(lean_object*); static lean_object* l_Lean_instEvalUnit___rarg___closed__2; static lean_object* l_termPrintln_x21_______closed__3; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__10; LEAN_EXPORT lean_object* l_IO_FS_FileType_toCtorIdx(uint8_t); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_get_num_heartbeats(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instReprSystemTime; LEAN_EXPORT lean_object* l_instInhabitedEIO___rarg(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16; LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion(lean_object*); LEAN_EXPORT lean_object* l_instMonadFinallyBaseIO; LEAN_EXPORT lean_object* l_System_FilePath_readDir___boxed(lean_object*, lean_object*); @@ -178,15 +181,13 @@ static uint32_t l_IO_AccessRight_flags___closed__12; LEAN_EXPORT lean_object* l_Lean_instEvalUnit___rarg(uint8_t, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__8; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__3; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20; LEAN_EXPORT lean_object* l_IO_getStdout___boxed(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17; LEAN_EXPORT lean_object* l_Lean_instEval__1___rarg(lean_object*, lean_object*, uint8_t, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25; static lean_object* l_IO_FS_instInhabitedStream___closed__3; LEAN_EXPORT lean_object* l_System_FilePath_walkDir_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___lambda__1___boxed(lean_object*); lean_object* l_ByteArray_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd_loop(lean_object*, lean_object*, lean_object*); @@ -202,6 +203,7 @@ static lean_object* l_IO_FS_instReprFileType___closed__1; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3; LEAN_EXPORT lean_object* l_instMonadExceptOfEIO(lean_object*); LEAN_EXPORT lean_object* l_Lean_instEval___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instEvalUnit___boxed(lean_object*); @@ -209,35 +211,39 @@ LEAN_EXPORT lean_object* l_IO_iterate___rarg(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_cancel___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__5; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19; LEAN_EXPORT lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202_; LEAN_EXPORT lean_object* l_IO_withStdout___at_Lean_runEval___spec__2(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5; LEAN_EXPORT lean_object* l_IO_withStdin(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll(lean_object*, lean_object*); lean_object* lean_get_stdout(lean_object*); static lean_object* l_termPrintln_x21_______closed__4; -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedEIO(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; LEAN_EXPORT uint32_t l_IO_AccessRight_flags(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_writeBinFile(lean_object*, lean_object*, lean_object*); lean_object* lean_io_process_child_wait(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11; LEAN_EXPORT lean_object* l_IO_println___at_Lean_instEval___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18; static lean_object* l_IO_Process_output___closed__1; LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask(lean_object*, lean_object*, lean_object*); uint8_t l_String_isEmpty(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_sleep___lambda__1(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lambda__2(size_t, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1; LEAN_EXPORT lean_object* l_unsafeEIO(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_ms_now(lean_object*); lean_object* lean_task_pure(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_try_lock(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_getStdin___boxed(lean_object*); @@ -247,51 +253,43 @@ LEAN_EXPORT lean_object* l_IO_ofExcept(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* lean_io_allocprof(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_instInhabitedEStateM___rarg(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lambda__3___boxed(lean_object*, lean_object*); lean_object* l_String_dropRight(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; LEAN_EXPORT lean_object* l_IO_FS_Handle_truncate___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_isDir(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6; LEAN_EXPORT lean_object* l_IO_Process_Stdio_toCtorIdx(uint8_t); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__4___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_waitAny___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26; LEAN_EXPORT lean_object* l_IO_eprintln___at___private_Init_System_IO_0__IO_eprintlnAux___spec__1(lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); lean_object* lean_io_timeit(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_putStrLn(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4; extern lean_object* l_ByteArray_empty; LEAN_EXPORT lean_object* l_System_FilePath_walkDir_go(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mapTasks___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254_(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8; static lean_object* l_IO_FS_instBEqSystemTime___closed__1; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__4___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_run___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15; static lean_object* l_IO_Process_run___closed__1; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15; LEAN_EXPORT lean_object* l_instMonadEIO(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_System_FilePath_walkDir_go___spec__1___closed__1; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__12; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__1; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1; lean_object* lean_io_wait_any(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_tryLock___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__9; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__4; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5; LEAN_EXPORT lean_object* l_IO_FS_withFile(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; lean_object* lean_uint64_to_nat(uint64_t); @@ -299,7 +297,6 @@ static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__5; LEAN_EXPORT lean_object* l_BaseIO_mapTasks___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_lazyPure___rarg(lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__10; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2; LEAN_EXPORT lean_object* l_IO_sleep(uint32_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd_loop(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeDirAll___boxed(lean_object*, lean_object*); @@ -308,11 +305,11 @@ LEAN_EXPORT lean_object* l_timeit___boxed(lean_object*, lean_object*, lean_objec LEAN_EXPORT lean_object* l_IO_AccessRight_flags___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__5(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20; static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__8; lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_mk___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9; LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd_loop___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_print(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28; @@ -324,22 +321,24 @@ LEAN_EXPORT lean_object* l_IO_withStderr___at_Lean_runEval___spec__4(lean_object lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__11; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508_(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_stream_of_handle(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11; lean_object* lean_io_process_spawn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeDirAll(lean_object*, lean_object*); lean_object* lean_io_map_task(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_System_FilePath_parent(lean_object*); lean_object* l_Int_repr(lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6; lean_object* lean_io_mono_nanos_now(lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__15; LEAN_EXPORT uint8_t l_IO_AccessRight_execution___default; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__2; lean_object* lean_get_stdin(lean_object*); static uint32_t l_IO_AccessRight_flags___closed__13; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16; LEAN_EXPORT lean_object* l_IO_FS_instBEqSystemTime; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__8; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21; lean_object* lean_get_stderr(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lambda__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__1(lean_object*, lean_object*, lean_object*); @@ -348,7 +347,6 @@ LEAN_EXPORT lean_object* l_IO_Process_output(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_exit___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_print___at_IO_println___spec__1(lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3; LEAN_EXPORT lean_object* l___auto____x40_Init_System_IO___hyg_1378_; LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_env___default; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); @@ -360,10 +358,9 @@ LEAN_EXPORT lean_object* l_IO_print___rarg(lean_object*, lean_object*, lean_obje static lean_object* l_IO_FS_withIsolatedStreams___rarg___closed__1; LEAN_EXPORT lean_object* l_IO_withStdout(lean_object*, lean_object*); lean_object* lean_io_prim_handle_write(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Child_wait___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7; LEAN_EXPORT lean_object* l_instMonadBaseIO; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* lean_io_prim_handle_mk(lean_object*, uint8_t, lean_object*); @@ -371,20 +368,24 @@ static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202__ LEAN_EXPORT lean_object* l_EIO_bindTask___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_instMonadExceptOfEStateM___rarg(lean_object*); static lean_object* l_IO_FS_instReprMetadata___closed__1; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_System_FilePath_walkDir_go___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instEvalIO___rarg(lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__1(lean_object*, lean_object*); lean_object* lean_get_set_stderr(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2; LEAN_EXPORT lean_object* l_EIO_toBaseIO(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4; static uint32_t l_IO_AccessRight_flags___closed__6; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17; LEAN_EXPORT lean_object* l_IO_sleep___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7; +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473_(uint8_t, uint8_t); lean_object* lean_task_get_own(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; extern lean_object* l_Std_Format_defWidth; static lean_object* l_Lean_instEvalUnit___rarg___closed__1; -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__5(lean_object*, lean_object*); static lean_object* l_instMonadEIO___closed__1; LEAN_EXPORT uint8_t l_IO_Process_StdioConfig_stdin___default; @@ -393,27 +394,23 @@ LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___at_Lean_runEval___spec__1 LEAN_EXPORT lean_object* l_ByteArray_findIdx_x3f_loop___at_IO_FS_Stream_ofBuffer___elambda__2___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_toEIO___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_setStderr___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_getRandomBytes___boxed(lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__2; lean_object* lean_usize_to_nat(size_t); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15; LEAN_EXPORT lean_object* l_IO_FS_instReprDirEntry; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___lambda__1(lean_object*); static lean_object* l_IO_FS_instBEqFileType___closed__1; static lean_object* l_IO_FS_Mode_noConfusion___rarg___closed__1; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; lean_object* lean_io_prim_handle_get_line(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5; LEAN_EXPORT uint8_t l_IO_AccessRight_write___default; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4; static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__4; static lean_object* l_IO_FS_Stream_ofBuffer___closed__1; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12; static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__12; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9; static lean_object* l_termPrintln_x21_______closed__12; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readFile(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readBinFile___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_toCtorIdx___boxed(lean_object*); @@ -430,15 +427,16 @@ static lean_object* l_termPrintln_x21_______closed__5; LEAN_EXPORT lean_object* l_IO_FS_writeFile___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_Process_SpawnArgs_setsid___default; static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__12; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253_(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10; LEAN_EXPORT lean_object* l_System_FilePath_walkDir_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__1; LEAN_EXPORT lean_object* l_EIO_catchExceptions___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__10; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__7; LEAN_EXPORT lean_object* l_IO_withStdout___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12; LEAN_EXPORT lean_object* l_IO_FS_withFile___rarg(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_toIO(lean_object*); static lean_object* l_IO_Process_run___closed__2; @@ -449,6 +447,7 @@ static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21__ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_IO_FS_removeDirAll___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_getEnv___boxed(lean_object*, lean_object*); lean_object* l_EStateM_instMonadFinallyEStateM(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11; LEAN_EXPORT lean_object* l_IO_withStdout___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__19; lean_object* lean_string_length(lean_object*); @@ -457,23 +456,20 @@ static lean_object* l_termPrintln_x21_______closed__16; LEAN_EXPORT lean_object* l_Lean_instEvalIO(lean_object*); LEAN_EXPORT lean_object* l_EIO_bindTask(lean_object*, lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__11; -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_args___default; static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__5; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13; static lean_object* l_IO_FS_withIsolatedStreams___rarg___closed__2; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lambda__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4; LEAN_EXPORT lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__13; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); extern lean_object* l_Task_Priority_dedicated; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5; static lean_object* l_IO_withStdin___rarg___lambda__3___closed__1; LEAN_EXPORT lean_object* l_IO_setAccessRights___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -482,13 +478,17 @@ LEAN_EXPORT lean_object* l_IO_bindTask___rarg(lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_bindTask___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; LEAN_EXPORT lean_object* l_Lean_instEvalBaseIO___rarg(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1; LEAN_EXPORT lean_object* l_IO_FS_instReprFileType; lean_object* lean_io_app_path(lean_object*); uint32_t l_String_back(lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_isDir___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10; static lean_object* l_instMonadExceptOfEIO___closed__1; LEAN_EXPORT lean_object* l_IO_Process_getPID___boxed(lean_object*); static uint32_t l_IO_AccessRight_flags___closed__10; @@ -501,14 +501,12 @@ static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNone static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; lean_object* lean_io_realpath(lean_object*, lean_object*); lean_object* lean_string_to_utf8(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8; lean_object* lean_io_exit(uint8_t, lean_object*); static lean_object* l_termPrintln_x21_______closed__10; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1; LEAN_EXPORT lean_object* l_IO_Prim_setAccessRights___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unsafeIO(lean_object*); static lean_object* l_termPrintln_x21_______closed__2; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____boxed(lean_object*, lean_object*); lean_object* l_Repr_addAppParen(lean_object*, lean_object*); uint32_t lean_uint32_lor(uint32_t, uint32_t); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__16; @@ -517,10 +515,10 @@ uint32_t lean_uint32_shift_left(uint32_t, uint32_t); static lean_object* l_IO_FS_instInhabitedStream___lambda__1___closed__2; lean_object* lean_chmod(lean_object*, uint32_t, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__7; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26; uint8_t lean_int_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instBEqFileType; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6; LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instInhabitedStream___lambda__1___closed__3; LEAN_EXPORT lean_object* l_IO_currentDir___boxed(lean_object*); @@ -531,18 +529,17 @@ lean_object* lean_io_bind_task(lean_object*, lean_object*, lean_object*, uint8_t LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_System_FilePath_walkDir_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_set_stdin(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_lazyPure(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17; LEAN_EXPORT uint32_t l_IO_FileRight_flags(lean_object*); static lean_object* l_termPrintln_x21_______closed__14; LEAN_EXPORT lean_object* l_IO_println___at_Lean_instEval__1___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__4(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_Buffer_data___default; LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Child_takeStdin___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_setStdout___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_toIO___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____boxed(lean_object*, lean_object*); static lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1___closed__14; LEAN_EXPORT lean_object* l_IO_FileRight_user___default; LEAN_EXPORT lean_object* l_instMonadLiftBaseIOEIO___rarg(lean_object*, lean_object*); @@ -554,38 +551,41 @@ static uint32_t l_IO_AccessRight_flags___closed__3; LEAN_EXPORT lean_object* l_Lean_instEval___rarg(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_termPrintln_x21_______closed__17; lean_object* lean_io_read_dir(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4; LEAN_EXPORT lean_object* l_IO_monoNanosNow___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_unlock___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd_loop___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_byte_array_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unsafeEIO___rarg(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6; -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____boxed(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); lean_object* lean_io_current_dir(lean_object*); LEAN_EXPORT lean_object* l_IO_getStderr___boxed(lean_object*); uint8_t lean_uint32_dec_lt(uint32_t, uint32_t); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9; static lean_object* l_IO_FS_instReprDirEntry___closed__1; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10; static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__11; lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6; LEAN_EXPORT lean_object* l_IO_FileRight_group___default; LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___rarg(uint8_t, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__3(lean_object*, lean_object*, lean_object*); lean_object* lean_io_error_to_string(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mapTask___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_IO_FS_instOrdSystemTime___closed__1; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473____boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd(lean_object*, lean_object*); static lean_object* l_IO_appDir___closed__2; uint8_t lean_int_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_putStrLn(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2; LEAN_EXPORT lean_object* l_IO_FS_writeFile(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__14; LEAN_EXPORT lean_object* l_IO_initializing___boxed(lean_object*); @@ -608,35 +608,34 @@ lean_object* lean_io_wait(lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__6; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1; lean_object* lean_array_get_size(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19; LEAN_EXPORT lean_object* l_IO_FS_writeBinFile___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_eprint___at_IO_eprintln___spec__1(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10; LEAN_EXPORT lean_object* l_IO_asTask(lean_object*); LEAN_EXPORT lean_object* l_BaseIO_toEIO___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_pathExists___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509_(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14; LEAN_EXPORT lean_object* l_IO_withStdin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instReprSystemTime___closed__1; uint8_t lean_usize_dec_lt(size_t, size_t); static uint32_t l_IO_AccessRight_flags___closed__7; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14; LEAN_EXPORT lean_object* l_Lean_instEvalIO___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__17; LEAN_EXPORT lean_object* l_IO_sleep___lambda__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474_(uint8_t, uint8_t); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadLiftBaseIOEIO(lean_object*, lean_object*); lean_object* lean_io_get_random_bytes(size_t, lean_object*); lean_object* lean_io_process_get_pid(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readBinFile(lean_object*, lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3; LEAN_EXPORT lean_object* l_EIO_asTask___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ByteArray_findIdx_x3f_loop___at_IO_FS_Stream_ofBuffer___elambda__2___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__6; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5; LEAN_EXPORT lean_object* l_IO_FS_Handle_rewind___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instEval__1(lean_object*); LEAN_EXPORT lean_object* l_IO_bindTask(lean_object*, lean_object*); @@ -645,14 +644,12 @@ LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__2___boxed(lean_objec LEAN_EXPORT lean_object* l_Lean_instEvalBaseIO(lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___at_Lean_runEval___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_instMonadLiftSTRealWorldBaseIO___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_Process_StdioConfig_stdout___default; static lean_object* l_IO_tacticNonempty__list____x40_Init_System_IO___hyg_1202____closed__3; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22; LEAN_EXPORT lean_object* l_IO___aux__Init__System__IO______macroRules__IO__tacticNonempty__list__1(lean_object*, lean_object*, lean_object*); extern uint8_t l_System_Platform_isWindows; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14; lean_object* lean_byte_array_size(lean_object*); -static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24; uint8_t lean_uint8_dec_eq(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_instEvalBaseIO___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_AccessRight_read___default; @@ -668,15 +665,18 @@ static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21__ LEAN_EXPORT lean_object* l_IO_Process_Child_kill___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_rewind(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadFinallyEIO(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; -static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4; static lean_object* l_termPrintln_x21_______closed__7; static uint32_t l_IO_AccessRight_flags___closed__9; +static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8; LEAN_EXPORT lean_object* lean_io_eprint(lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion(lean_object*); static lean_object* l___auto____x40_Init_System_IO___hyg_1378____closed__13; LEAN_EXPORT lean_object* l_IO_FS_withFile___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -3896,7 +3896,7 @@ x_7 = lean_apply_2(x_4, x_6, x_3); return x_7; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1() { _start: { lean_object* x_1; @@ -3904,29 +3904,29 @@ x_1 = lean_mk_string_from_bytes("root", 4); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2; +x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4() { _start: { lean_object* x_1; @@ -3934,29 +3934,29 @@ x_1 = lean_mk_string_from_bytes(" := ", 4); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -3965,7 +3965,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8() { _start: { lean_object* x_1; @@ -3973,17 +3973,17 @@ x_1 = lean_mk_string_from_bytes("FilePath.mk ", 12); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10() { _start: { lean_object* x_1; @@ -3991,17 +3991,17 @@ x_1 = lean_mk_string_from_bytes(",", 1); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12() { _start: { lean_object* x_1; @@ -4009,17 +4009,17 @@ x_1 = lean_mk_string_from_bytes("fileName", 8); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -4028,7 +4028,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15() { _start: { lean_object* x_1; @@ -4036,35 +4036,35 @@ x_1 = lean_mk_string_from_bytes("{ ", 2); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15; x_2 = lean_string_length(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16; x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19() { _start: { lean_object* x_1; @@ -4072,17 +4072,17 @@ x_1 = lean_mk_string_from_bytes(" }", 2); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19; +x_1 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253_(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t 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; @@ -4090,13 +4090,13 @@ x_3 = lean_ctor_get(x_1, 0); x_4 = l_String_quote(x_3); x_5 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9; +x_6 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9; x_7 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); x_8 = lean_unsigned_to_nat(0u); x_9 = l_Repr_addAppParen(x_7, x_8); -x_10 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7; +x_10 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7; x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -4104,11 +4104,11 @@ x_12 = 0; x_13 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_13, 0, x_11); lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_12); -x_14 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6; +x_14 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6; x_15 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); -x_16 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11; +x_16 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); @@ -4116,11 +4116,11 @@ x_18 = lean_box(1); x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13; +x_20 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13; x_21 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_22 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_23 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); @@ -4128,7 +4128,7 @@ x_24 = lean_ctor_get(x_1, 1); x_25 = l_String_quote(x_24); x_26 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_26, 0, x_25); -x_27 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14; +x_27 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14; x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -4138,15 +4138,15 @@ lean_ctor_set_uint8(x_29, sizeof(void*)*1, x_12); x_30 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_30, 0, x_23); lean_ctor_set(x_30, 1, x_29); -x_31 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18; +x_31 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18; x_32 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20; +x_33 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20; x_34 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_33); -x_35 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17; +x_35 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17; x_36 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); @@ -4156,11 +4156,11 @@ lean_ctor_set_uint8(x_37, sizeof(void*)*1, x_12); return x_37; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254_(x_1, x_2); +x_3 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -4170,7 +4170,7 @@ static lean_object* _init_l_IO_FS_instReprDirEntry___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____boxed), 2, 0); return x_1; } } @@ -4264,7 +4264,7 @@ x_6 = l_IO_FS_FileType_noConfusion___rarg(x_4, x_5, x_3); return x_6; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1() { _start: { lean_object* x_1; @@ -4272,17 +4272,17 @@ x_1 = lean_mk_string_from_bytes("IO.FS.FileType.dir", 18); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -4291,23 +4291,23 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4315,7 +4315,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -4324,23 +4324,23 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4348,7 +4348,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9() { _start: { lean_object* x_1; @@ -4356,33 +4356,33 @@ x_1 = lean_mk_string_from_bytes("IO.FS.FileType.file", 19); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4390,23 +4390,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4414,7 +4414,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15() { _start: { lean_object* x_1; @@ -4422,33 +4422,33 @@ x_1 = lean_mk_string_from_bytes("IO.FS.FileType.symlink", 22); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4456,23 +4456,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4480,7 +4480,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21() { _start: { lean_object* x_1; @@ -4488,33 +4488,33 @@ x_1 = lean_mk_string_from_bytes("IO.FS.FileType.other", 20); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4522,23 +4522,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6; -x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6; +x_2 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22; x_3 = lean_alloc_ctor(4, 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___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25; +x_1 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -4546,7 +4546,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -4558,14 +4558,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5; +x_5 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8; +x_7 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -4578,14 +4578,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12; +x_11 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14; +x_13 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -4598,14 +4598,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18; +x_17 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20; +x_19 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -4618,14 +4618,14 @@ x_22 = lean_nat_dec_le(x_21, x_2); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24; +x_23 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24; x_24 = l_Repr_addAppParen(x_23, x_2); return x_24; } else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26; +x_25 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26; x_26 = l_Repr_addAppParen(x_25, x_2); return x_26; } @@ -4633,13 +4633,13 @@ return x_26; } } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327_(x_3, x_2); +x_4 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -4648,7 +4648,7 @@ static lean_object* _init_l_IO_FS_instReprFileType___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____boxed), 2, 0); return x_1; } } @@ -4660,7 +4660,7 @@ x_1 = l_IO_FS_instReprFileType___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -4672,7 +4672,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -4680,7 +4680,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474_(x_3, x_4); +x_5 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -4689,7 +4689,7 @@ static lean_object* _init_l_IO_FS_instBEqFileType___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473____boxed), 2, 0); return x_1; } } @@ -4701,7 +4701,7 @@ x_1 = l_IO_FS_instBEqFileType___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1() { _start: { lean_object* x_1; @@ -4709,41 +4709,41 @@ x_1 = lean_mk_string_from_bytes("sec", 3); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1; +x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2; +x_2 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -4752,7 +4752,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6() { _start: { lean_object* x_1; @@ -4760,17 +4760,17 @@ x_1 = lean_mk_string_from_bytes("nsec", 4); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6; +x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508_(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; lean_object* x_7; uint8_t x_8; lean_object* x_9; 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; uint32_t 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; @@ -4778,7 +4778,7 @@ x_3 = lean_ctor_get(x_1, 0); x_4 = l_Int_repr(x_3); x_5 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5; +x_6 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5; x_7 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); @@ -4786,11 +4786,11 @@ x_8 = 0; x_9 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_9, 0, x_7); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_8); -x_10 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4; +x_10 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4; x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11; +x_12 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11; x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -4798,11 +4798,11 @@ x_14 = lean_box(1); x_15 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7; +x_16 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_18 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -4811,7 +4811,7 @@ x_21 = lean_uint32_to_nat(x_20); x_22 = l_Nat_repr(x_21); x_23 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_23, 0, x_22); -x_24 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7; +x_24 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7; x_25 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -4821,15 +4821,15 @@ lean_ctor_set_uint8(x_26, sizeof(void*)*1, x_8); x_27 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_27, 0, x_19); lean_ctor_set(x_27, 1, x_26); -x_28 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18; +x_28 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18; x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20; +x_30 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20; x_31 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); -x_32 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17; +x_32 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17; x_33 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -4839,11 +4839,11 @@ lean_ctor_set_uint8(x_34, sizeof(void*)*1, x_8); return x_34; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509_(x_1, x_2); +x_3 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -4853,7 +4853,7 @@ static lean_object* _init_l_IO_FS_instReprSystemTime___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____boxed), 2, 0); return x_1; } } @@ -4865,7 +4865,7 @@ x_1 = l_IO_FS_instReprSystemTime___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint32_t x_4; lean_object* x_5; uint32_t x_6; uint8_t x_7; @@ -4888,11 +4888,11 @@ return x_9; } } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566_(x_1, x_2); +x_3 = l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -4903,7 +4903,7 @@ static lean_object* _init_l_IO_FS_instBEqSystemTime___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2566____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_2565____boxed), 2, 0); return x_1; } } @@ -4915,7 +4915,7 @@ x_1 = l_IO_FS_instBEqSystemTime___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint32_t x_4; lean_object* x_5; uint32_t x_6; uint8_t x_7; @@ -4971,11 +4971,11 @@ return x_15; } } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643_(x_1, x_2); +x_3 = l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -4986,7 +4986,7 @@ static lean_object* _init_l_IO_FS_instOrdSystemTime___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2643____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_2642____boxed), 2, 0); return x_1; } } @@ -5043,7 +5043,7 @@ x_1 = lean_box(0); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1() { _start: { lean_object* x_1; @@ -5051,41 +5051,41 @@ x_1 = lean_mk_string_from_bytes("accessed", 8); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1; +x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2; +x_2 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3; -x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3; +x_2 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_3 = lean_alloc_ctor(5, 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___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5() { _start: { lean_object* x_1; @@ -5093,17 +5093,17 @@ x_1 = lean_mk_string_from_bytes("modified", 8); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5; +x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7() { _start: { lean_object* x_1; @@ -5111,17 +5111,17 @@ x_1 = lean_mk_string_from_bytes("byteSize", 8); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7; +x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9() { _start: { lean_object* x_1; @@ -5129,24 +5129,24 @@ x_1 = lean_mk_string_from_bytes("type", 4); return x_1; } } -static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10() { +static lean_object* _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9; +x_1 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783_(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; lean_object* x_7; uint8_t x_8; lean_object* x_9; 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; uint64_t 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; uint8_t 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; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_unsigned_to_nat(0u); -x_5 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509_(x_3, x_4); -x_6 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14; +x_5 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508_(x_3, x_4); +x_6 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14; x_7 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); @@ -5154,11 +5154,11 @@ x_8 = 0; x_9 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_9, 0, x_7); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_8); -x_10 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4; +x_10 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4; x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11; +x_12 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11; x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -5166,16 +5166,16 @@ x_14 = lean_box(1); x_15 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6; +x_16 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5; +x_18 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5; x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); x_20 = lean_ctor_get(x_1, 1); -x_21 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509_(x_20, x_4); +x_21 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508_(x_20, x_4); x_22 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_22, 0, x_6); lean_ctor_set(x_22, 1, x_21); @@ -5191,7 +5191,7 @@ lean_ctor_set(x_25, 1, x_12); x_26 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_14); -x_27 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8; +x_27 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8; x_28 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -5218,7 +5218,7 @@ lean_ctor_set(x_37, 1, x_12); x_38 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_14); -x_39 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10; +x_39 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10; x_40 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); @@ -5226,8 +5226,8 @@ x_41 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_18); x_42 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 8); -x_43 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327_(x_42, x_4); -x_44 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7; +x_43 = l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326_(x_42, x_4); +x_44 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7; x_45 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -5237,15 +5237,15 @@ lean_ctor_set_uint8(x_46, sizeof(void*)*1, x_8); x_47 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_47, 0, x_41); lean_ctor_set(x_47, 1, x_46); -x_48 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18; +x_48 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18; x_49 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20; +x_50 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20; x_51 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); -x_52 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17; +x_52 = l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17; x_53 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); @@ -5255,11 +5255,11 @@ lean_ctor_set_uint8(x_54, sizeof(void*)*1, x_8); return x_54; } } -LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784_(x_1, x_2); +x_3 = l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -5269,7 +5269,7 @@ static lean_object* _init_l_IO_FS_instReprMetadata___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____boxed), 2, 0); return x_1; } } @@ -5315,7 +5315,7 @@ x_5 = lean_ctor_get(x_3, 0); x_6 = lean_ctor_get_uint8(x_5, sizeof(void*)*2 + 8); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474_(x_6, x_7); +x_8 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473_(x_6, x_7); x_9 = lean_box(x_8); lean_ctor_set(x_3, 0, x_9); return x_3; @@ -5331,7 +5331,7 @@ lean_dec(x_3); x_12 = lean_ctor_get_uint8(x_10, sizeof(void*)*2 + 8); lean_dec(x_10); x_13 = 0; -x_14 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2474_(x_12, x_13); +x_14 = l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_2473_(x_12, x_13); x_15 = lean_box(x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); @@ -10969,102 +10969,102 @@ l_IO_FS_instInhabitedStream___closed__4 = _init_l_IO_FS_instInhabitedStream___cl lean_mark_persistent(l_IO_FS_instInhabitedStream___closed__4); l_IO_FS_instInhabitedStream = _init_l_IO_FS_instInhabitedStream(); lean_mark_persistent(l_IO_FS_instInhabitedStream); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__1); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__2); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__3); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__4); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__5); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__6); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__7); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__8); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__9); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__10); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__11); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__12); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__13); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__14); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__15); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__16); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__17); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__18); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__19); -l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2254____closed__20); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__1); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__2); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__3); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__4); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__5); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__6); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__7); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__8); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__9); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__10); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__11); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__12); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__13); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__14); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__15); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__16); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__17); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__18); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__19); +l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20 = _init_l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2253____closed__20); l_IO_FS_instReprDirEntry___closed__1 = _init_l_IO_FS_instReprDirEntry___closed__1(); lean_mark_persistent(l_IO_FS_instReprDirEntry___closed__1); l_IO_FS_instReprDirEntry = _init_l_IO_FS_instReprDirEntry(); lean_mark_persistent(l_IO_FS_instReprDirEntry); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__1); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__2); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__3); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__4); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__5); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__6); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__7); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__8); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__9); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__10); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__11); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__12); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__13); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__14); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__15); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__16); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__17); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__18); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__19); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__20); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__21); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__22); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__23); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__24); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__25); -l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2327____closed__26); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__1); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__2); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__3); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__4); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__5); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__6); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__7); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__8); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__9); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__10); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__11); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__12); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__13); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__14); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__15); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__16); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__17); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__18); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__19); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__20); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__21); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__22); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__23); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__24); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__25); +l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26 = _init_l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2326____closed__26); l_IO_FS_instReprFileType___closed__1 = _init_l_IO_FS_instReprFileType___closed__1(); lean_mark_persistent(l_IO_FS_instReprFileType___closed__1); l_IO_FS_instReprFileType = _init_l_IO_FS_instReprFileType(); @@ -11073,20 +11073,20 @@ l_IO_FS_instBEqFileType___closed__1 = _init_l_IO_FS_instBEqFileType___closed__1( lean_mark_persistent(l_IO_FS_instBEqFileType___closed__1); l_IO_FS_instBEqFileType = _init_l_IO_FS_instBEqFileType(); lean_mark_persistent(l_IO_FS_instBEqFileType); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__1); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__2); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__3); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__4); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__5); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__6); -l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2509____closed__7); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__1); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__2); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__3); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__4); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__5); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__6); +l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2508____closed__7); l_IO_FS_instReprSystemTime___closed__1 = _init_l_IO_FS_instReprSystemTime___closed__1(); lean_mark_persistent(l_IO_FS_instReprSystemTime___closed__1); l_IO_FS_instReprSystemTime = _init_l_IO_FS_instReprSystemTime(); @@ -11109,26 +11109,26 @@ l_IO_FS_instLTSystemTime = _init_l_IO_FS_instLTSystemTime(); lean_mark_persistent(l_IO_FS_instLTSystemTime); l_IO_FS_instLESystemTime = _init_l_IO_FS_instLESystemTime(); lean_mark_persistent(l_IO_FS_instLESystemTime); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__1); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__2); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__3); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__4); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__5); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__6); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__7); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__8); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__9); -l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10(); -lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2784____closed__10); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__1); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__2); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__3); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__4); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__5); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__6); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__7); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__8); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__9); +l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10 = _init_l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10(); +lean_mark_persistent(l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_2783____closed__10); l_IO_FS_instReprMetadata___closed__1 = _init_l_IO_FS_instReprMetadata___closed__1(); lean_mark_persistent(l_IO_FS_instReprMetadata___closed__1); l_IO_FS_instReprMetadata = _init_l_IO_FS_instReprMetadata(); diff --git a/stage0/stdlib/Init/System/Uri.c b/stage0/stdlib/Init/System/Uri.c index 197ea62ebf..5274b519fd 100644 --- a/stage0/stdlib/Init/System/Uri.c +++ b/stage0/stdlib/Init/System/Uri.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.System.Uri -// Imports: Init.Data.String.Extra Init.System.FilePath +// Imports: Init.Data.String.Extra Init.Data.Nat.Linear Init.System.FilePath #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1703,6 +1703,7 @@ return x_3; } } lean_object* initialize_Init_Data_String_Extra(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Nat_Linear(uint8_t builtin, lean_object*); lean_object* initialize_Init_System_FilePath(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_System_Uri(uint8_t builtin, lean_object* w) { @@ -1712,6 +1713,9 @@ _G_initialized = true; res = initialize_Init_Data_String_Extra(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Nat_Linear(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_System_FilePath(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Init/Tactics.c b/stage0/stdlib/Init/Tactics.c index d90d5659af..d1c0b4dac3 100644 --- a/stage0/stdlib/Init/Tactics.c +++ b/stage0/stdlib/Init/Tactics.c @@ -26,6 +26,7 @@ static lean_object* l_Lean_Parser_Tactic_split___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSimp_x3f_x21____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__6; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__4; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_specialize; static lean_object* l_Lean_Parser_Tactic_withUnfoldingAll___closed__3; static lean_object* l_Lean_Parser_Tactic_simpTrace___closed__1; @@ -33,8 +34,10 @@ static lean_object* l_Lean_Parser_Tactic_simpa___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticSimp_x3f_x21__; static lean_object* l_Lean_Parser_Tactic_simpa___closed__3; static lean_object* l_Lean_Parser_Tactic_omega___closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_applyRules; static lean_object* l_Lean_Parser_Tactic_case_x27___closed__8; static lean_object* l_Lean_Parser_Tactic_repeat1_x27___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_SolveByElim_using__; static lean_object* l_Lean_Parser_Tactic_split___closed__5; static lean_object* l_Lean_Parser_Tactic_intro___closed__15; static lean_object* l_term_____x5b___x5d___closed__5; @@ -92,6 +95,7 @@ static lean_object* l_term_____x5b___x5d___closed__2; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticHaveI_____closed__1; static lean_object* l_Lean_Parser_Tactic_assumption___closed__3; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_induction; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__5; static lean_object* l_Lean_Parser_Tactic_fail___closed__4; @@ -105,6 +109,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRul static lean_object* l_Lean_Parser_Tactic_dbgTrace___closed__4; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticExists___x2c_x2c___closed__1; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__8; static lean_object* l_Lean_Parser_Tactic_simpTrace___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRfl_x27__1(lean_object*, lean_object*, lean_object*); @@ -140,8 +145,10 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRul static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__14; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticLetI____1___closed__1; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__6; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__9; static lean_object* l_Lean_Parser_Tactic_intros___closed__9; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticDsimp_x3f_x21____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_case___closed__5; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__32; @@ -190,6 +197,7 @@ static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__19; static lean_object* l_Lean_Parser_Tactic_dsimpTrace___closed__7; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__5; static lean_object* l_Lean_Parser_Tactic_case___closed__1; +static lean_object* l_Lean_Parser_Tactic_symm___closed__4; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_anyGoals; static lean_object* l_Lean_Parser_Tactic_dsimpArgs___closed__5; @@ -200,6 +208,7 @@ static lean_object* l_Lean_Parser_Tactic_save___closed__1; static lean_object* l_Lean_Parser_Tactic_dsimpTrace___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__2; lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__3; static lean_object* l_Lean_Parser_Tactic_first___closed__7; static lean_object* l_Lean_Parser_Tactic_dsimp___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__8; @@ -208,7 +217,9 @@ static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__9; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__5; static lean_object* l_Lean_Parser_Tactic_intros___closed__13; static lean_object* l_Lean_Parser_Tactic_subst___closed__3; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_x21_____closed__2; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_star___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticNofun__1___closed__1; static lean_object* l_Lean_Parser_Tactic_fail___closed__3; static lean_object* l_Lean_Parser_Tactic_runTac___closed__5; @@ -252,6 +263,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRul static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave_x27___x3a_x3d____1___closed__4; static lean_object* l_Lean_Parser_Tactic_intros___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__4; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__9; static lean_object* l_Lean_Parser_Tactic_discharger___closed__12; static lean_object* l_Lean_Parser_Tactic_simpAllTrace___closed__4; @@ -296,6 +308,7 @@ static lean_object* l_Lean_Parser_Tactic_discharger___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__2; static lean_object* l_Lean_Parser_Tactic_paren___closed__5; static lean_object* l_Lean_Parser_Tactic_dsimp___closed__5; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__2; static lean_object* l_Lean_Parser_Tactic_case___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticLetI_____closed__1; @@ -313,6 +326,7 @@ static lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest___closed__10; static lean_object* l_Lean_Parser_Tactic_case___closed__14; static lean_object* l_Lean_Parser_Tactic_checkpoint___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__9; static lean_object* l_Lean_Parser_Tactic_intros___closed__16; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__6; @@ -322,6 +336,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L LEAN_EXPORT lean_object* l_tacticGet__elem__tactic; static lean_object* l_Lean_Parser_Tactic_simpAllTraceArgsRest___closed__1; static lean_object* l_Lean_Parser_Tactic_paren___closed__1; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__1; static lean_object* l_Lean_Parser_Tactic_discharger___closed__7; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__10; @@ -334,7 +349,9 @@ lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_ static lean_object* l_Lean_Parser_Tactic_changeWith___closed__7; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__5; +lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRfl__2___closed__6; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__2; static lean_object* l_Lean_Parser_Tactic_dsimpTrace___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticSimp__all_x3f_x21__; static lean_object* l_Lean_Parser_Tactic_dbgTrace___closed__1; @@ -348,10 +365,12 @@ static lean_object* l_Lean_Parser_Tactic_tacticHave_x27___x3a_x3d_____closed__7; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__4; static lean_object* l_Lean_Parser_Tactic_tacIfThenElse___closed__2; static lean_object* l_Lean_Parser_Tactic_constructor___closed__2; +static lean_object* l_Lean_Parser_Tactic_symm___closed__1; static lean_object* l_Lean_Parser_Tactic_generalize___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__2; static lean_object* l_Lean_Parser_Tactic_congr___closed__4; static lean_object* l_Lean_Parser_Tactic_done___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_SolveByElim_erase; static lean_object* l_tacticGet__elem__tactic___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__1; @@ -373,6 +392,7 @@ static lean_object* l_Lean_Parser_Tactic_repeat_x27___closed__1; static lean_object* l_Lean_Parser_Tactic_config___closed__7; static lean_object* l_Lean_Parser_Attr_simp___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f__; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__4; static lean_object* l_Lean_Parser_Tactic_pushCast___closed__13; static lean_object* l_Lean_Parser_Tactic_simp___closed__18; static lean_object* l_Lean_Parser_Tactic_simpa___closed__7; @@ -382,6 +402,7 @@ static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__2; static lean_object* l_Lean_Parser_Tactic_dsimpTrace___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_replace; static lean_object* l_Lean_Parser_Tactic_intros___closed__15; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__2; static lean_object* l_Lean_Parser_Tactic_substVars___closed__3; static lean_object* l_Lean_Parser_Tactic_specialize___closed__4; static lean_object* l_Lean_Parser_Tactic_change___closed__5; @@ -390,6 +411,7 @@ static lean_object* l_Lean_Parser_Tactic_simpPre___closed__1; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__4; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__7; static lean_object* l_Lean_Parser_Tactic_checkpoint___closed__2; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_erase___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__6; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__11; static lean_object* l_Lean_Parser_Tactic_constructor___closed__3; @@ -455,6 +477,7 @@ static lean_object* l_Lean_Parser_Tactic_letrec___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_cases; static lean_object* l_Lean_Parser_Tactic_case___closed__12; static lean_object* l_Lean_Parser_Tactic_cases___closed__8; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__4; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__10; static lean_object* l_Lean_Parser_Tactic_cases___closed__4; @@ -470,6 +493,7 @@ static lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; static lean_object* l_Lean_Parser_Tactic_config___closed__5; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__6; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__12; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllTrace; static lean_object* l_Lean_Parser_Tactic_first___closed__3; static lean_object* l_Lean_Parser_Tactic_injection___closed__9; @@ -506,7 +530,9 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_traceMessage___closed__8; static lean_object* l_term_____x5b___x5d___closed__1; static lean_object* l_Lean_Parser_Tactic_congr___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_SolveByElim_arg; static lean_object* l_Lean_Parser_Attr_normCastLabel___closed__5; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__8; static lean_object* l_Lean_Parser_Tactic_letrec___closed__13; static lean_object* l_Lean_Parser_Tactic_simp___closed__15; static lean_object* l_Lean_Parser_Tactic_simp___closed__9; @@ -540,7 +566,10 @@ static lean_object* l_Lean_Parser_Tactic_tacticNorm__cast_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__letrec__1___closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__11; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__5; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__4; static lean_object* l_term_____x5b___x5d___closed__3; +static lean_object* l_Lean_Parser_Tactic_symmSaturate___closed__1; static lean_object* l_Lean_Parser_Tactic_induction___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticAnd__intros___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__2; @@ -549,9 +578,12 @@ static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__3; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Tactic_cases___closed__9; static lean_object* l_Lean_Parser_Tactic_induction___closed__17; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__13; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__6; static lean_object* l_Lean_Parser_Tactic_done___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExfalso__1___closed__3; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__2; static lean_object* l_Lean_Parser_Tactic_paren___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpTrace; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__6; @@ -560,14 +592,17 @@ static lean_object* l_Lean_Parser_Tactic_tacticNofun___closed__1; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_runTac___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_applyAssumption; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHaveI____1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticSimp_x3f_x21_____closed__4; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__3; static lean_object* l_Lean_Parser_Tactic_simpaArgsRest___closed__13; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_erase___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSimp_x3f_x21_____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1; static lean_object* l_Lean_Parser_Tactic_substVars___closed__4; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__12; static lean_object* l_tacticGet__elem__tactic__trivial___closed__3; static lean_object* l_Lean_Parser_Tactic_specialize___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_x21_____closed__5; @@ -585,6 +620,7 @@ static lean_object* l_Lean_Parser_Tactic_induction___closed__16; static lean_object* l_Lean_Parser_Tactic_pushCast___closed__8; static lean_object* l_Lean_Parser_Tactic_sleep___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27___x3a_x3d_____closed__5; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__1; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSimp__all_x3f_x21_____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAltLHS___closed__6; @@ -599,6 +635,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rwRuleSeq; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__rwSeq__1___closed__2; static lean_object* l___aux__Init__Tactics______macroRules__term_u2039___u203a__1___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_SolveByElim_args; static lean_object* l_Lean_Parser_Tactic_exact___closed__1; static lean_object* l_Lean_Parser_Tactic_location___closed__6; static lean_object* l_Lean_Parser_Tactic_substVars___closed__2; @@ -622,17 +659,20 @@ static lean_object* l_Lean_Parser_Tactic_simpaArgsRest___closed__5; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__14; static lean_object* l_Lean_Parser_Tactic_congr___closed__5; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__3; static lean_object* l_Lean_Parser_Tactic_config___closed__9; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__6; static lean_object* l_Lean_Parser_Tactic_simp___closed__12; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__7; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__5; +static lean_object* l_Lean_Parser_Tactic_symmSaturate___closed__4; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__20; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_skip; static lean_object* l_Lean_Parser_Tactic_intros___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_case_x27; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_____closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_symm; static lean_object* l_Lean_Parser_Tactic_paren___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__4; static lean_object* l_Lean_Parser_Tactic_generalize___closed__1; @@ -680,6 +720,7 @@ static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; static lean_object* l_Lean_Parser_Tactic_right___closed__4; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__14; static lean_object* l_Lean_Parser_Tactic_tacticStop_____closed__4; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__9; static lean_object* l_Lean_Parser_Tactic_simpTrace___closed__10; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__13; static lean_object* l_Lean_Parser_Tactic_normCastAddElim___closed__4; @@ -796,6 +837,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__6; static lean_object* l_Lean_Parser_Tactic_simpArgs___closed__6; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__6; static lean_object* l_Lean_Parser_Tactic_injection___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); @@ -809,6 +851,7 @@ static lean_object* l_Lean_Parser_Tactic_simp___closed__3; static lean_object* l_Lean_Parser_Tactic_case___closed__9; static lean_object* l_Lean_Parser_Tactic_pushCast___closed__7; static lean_object* l_Lean_Parser_Tactic_first___closed__26; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_using_____closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticNofun; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -853,6 +896,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticAdmit; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_inductionAltLHS; static lean_object* l_Lean_Parser_Tactic_tacIfThenElse___closed__6; static lean_object* l_Lean_Parser_Tactic_cases___closed__5; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__5; static lean_object* l_Lean_Parser_Tactic_pushCast___closed__6; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__9; static lean_object* l_Lean_Parser_Tactic_intros___closed__14; @@ -876,6 +920,7 @@ static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__30; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__2; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__14; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_using_____closed__4; static lean_object* l_Lean_Parser_Tactic_contradiction___closed__3; static lean_object* l_Lean_Parser_Tactic_injections___closed__4; static lean_object* l_Lean_Parser_Tactic_simpAllTraceArgsRest___closed__3; @@ -912,6 +957,7 @@ static lean_object* l_Lean_Parser_Attr_simp___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_withAnnotateState; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__22; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__2; +static lean_object* l_Lean_Parser_Tactic_applyRules___closed__7; static lean_object* l_Lean_Parser_Tactic_runTac___closed__9; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__7; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__8; @@ -989,6 +1035,7 @@ static lean_object* l_Lean_Parser_Tactic_renameI___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExfalso__1___closed__8; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; +static lean_object* l_Lean_Parser_Tactic_symm___closed__3; static lean_object* l_Lean_Parser_Tactic_rename___closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAltLHS___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRfl_x27; @@ -1010,6 +1057,7 @@ static lean_object* l_Lean_Parser_Tactic_first___closed__18; static lean_object* l_Lean_Parser_Tactic_letrec___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_eqRefl; static lean_object* l_Lean_Parser_Tactic_config___closed__14; +static lean_object* l_Lean_Parser_Tactic_symm___closed__2; static lean_object* l_Lean_Parser_Tactic_revert___closed__3; static lean_object* l_Lean_Parser_Tactic_dsimpArgs___closed__4; static lean_object* l_Lean_Parser_Tactic_tacIfThenElse___closed__10; @@ -1032,6 +1080,7 @@ static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; static lean_object* l_Lean_Parser_Tactic_intros___closed__12; static lean_object* l_term_____x5b___x5d_x27_____closed__5; +static lean_object* l_Lean_Parser_Tactic_symmSaturate___closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticDsimp_x3f_x21__; static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__2; @@ -1046,6 +1095,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_simpAllTrace___closed__2; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__31; static lean_object* l_Lean_Parser_Tactic_repeat_x27___closed__4; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticExists___x2c_x2c; static lean_object* l_tacticGet__elem__tactic___closed__4; static lean_object* l_Lean_Parser_Tactic_first___closed__25; @@ -1054,6 +1104,7 @@ lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_subst___closed__4; static lean_object* l_Lean_Parser_Tactic_normCast0___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRfl__2___closed__5; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__4; static lean_object* l_Lean_Parser_Attr_normCastLabel___closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAltLHS___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave_x27___x3a_x3d____1(lean_object*, lean_object*, lean_object*); @@ -1070,6 +1121,7 @@ static lean_object* l_Lean_Parser_Tactic_simpTrace___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticNext___x3d_x3e____1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rewriteSeq; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRwa____; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__6; static lean_object* l_Lean_Parser_Tactic_right___closed__1; static lean_object* l_Lean_Parser_Attr_simp___closed__9; static lean_object* l_Lean_Parser_Tactic_simpAllTrace___closed__7; @@ -1077,7 +1129,9 @@ static lean_object* l_Lean_Parser_Tactic_generalize___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticNorm__cast__; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__9; static lean_object* l_Lean_Parser_Tactic_traceMessage___closed__3; +static lean_object* l_Lean_Parser_Tactic_symmSaturate___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticLet____1___closed__2; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_erase___closed__2; static lean_object* l_Lean_Parser_Tactic_fail___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e__; static lean_object* l_Lean_Parser_Tactic_intro___closed__19; @@ -1091,6 +1145,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__L static lean_object* l_Lean_Parser_Tactic_normCastAddElim___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simp; static lean_object* l_Lean_Parser_Tactic_pushCast___closed__9; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__7; static lean_object* l_Lean_Parser_Tactic_split___closed__8; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x21_____closed__2; @@ -1107,6 +1162,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_injections; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave_x27___x3a_x3d____1___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__6; static lean_object* l_Lean_Parser_Tactic_case_x27___closed__5; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_using_____closed__3; static lean_object* l_Lean_Parser_Tactic_dsimpArgs___closed__3; static lean_object* l_term_u2039___u203a___closed__1; static lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest___closed__6; @@ -1181,6 +1237,7 @@ static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLetI_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__6; static lean_object* l_Lean_Parser_Tactic_falseOrByContra___closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_symmSaturate; static lean_object* l_Lean_Parser_Tactic_paren___closed__4; static lean_object* l_Lean_Parser_Tactic_simpaArgsRest___closed__2; static lean_object* l_Lean_Parser_Tactic_simpaArgsRest___closed__3; @@ -1236,11 +1293,14 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_letrec; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_substEqs; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_revert; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_SolveByElim_star; static lean_object* l___aux__Init__Tactics______macroRules__term_____x5b___x5d__1___closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5; static lean_object* l_Lean_Parser_Tactic_config___closed__10; static lean_object* l_Lean_Parser_Tactic_runTac___closed__1; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__3; static lean_object* l_Lean_Parser_Tactic_paren___closed__6; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_using_____closed__2; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__5; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__13; static lean_object* l_Lean_Parser_Tactic_repeat1_x27___closed__5; @@ -1262,6 +1322,8 @@ static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__3; static lean_object* l_Lean_Parser_Tactic_rename___closed__9; static lean_object* l_Lean_Parser_Tactic_dsimpTrace___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExfalso__1___closed__17; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__1; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_using_____closed__1; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacIfThenElse; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; @@ -1272,6 +1334,7 @@ static lean_object* l_Lean_Parser_Tactic_normCastAddElim___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_clear; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_traceState; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__1; static lean_object* l_Lean_Parser_Tactic_discharger___closed__11; static lean_object* l_tacticGet__elem__tactic__trivial___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpArgs; @@ -1315,11 +1378,13 @@ static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__23; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExists___x2c_x2c__1___closed__3; static lean_object* l_Lean_Parser_Tactic_clear___closed__5; static lean_object* l_Lean_Parser_Tactic_left___closed__3; +static lean_object* l_Lean_Parser_Tactic_symmSaturate___closed__3; static lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest___closed__7; static lean_object* l_Lean_Parser_Tactic_split___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticExfalso___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__1; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__3; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__4; static lean_object* l_Lean_Parser_Tactic_first___closed__14; @@ -1345,6 +1410,7 @@ static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticNofun___closed__5; static lean_object* l_Lean_Parser_Attr_simp___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExfalso__1___closed__15; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__4; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__13; static lean_object* l_Lean_Parser_Tactic_intro___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_config; @@ -1393,10 +1459,12 @@ static lean_object* l_Lean_Parser_Tactic_unfold___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticNext___x3d_x3e_____closed__7; static lean_object* l___aux__Init__Tactics______macroRules__term_____x5b___x5d__1___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__5; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__5; static lean_object* l_Lean_Parser_Tactic_delta___closed__5; LEAN_EXPORT lean_object* l___aux__Init__Tactics______macroRules__term_____x5b___x5d__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticDsimp_x3f_x21_____closed__5; static lean_object* l_Lean_Parser_Tactic_withAnnotateState___closed__14; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_star___closed__3; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArgs___closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__8; @@ -1418,16 +1486,19 @@ static lean_object* l___aux__Init__Tactics______macroRules__term_u2039___u203a__ static lean_object* l___aux__Init__Tactics______macroRules__term_u2039___u203a__1___closed__3; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__1; static lean_object* l_Lean_Parser_Tactic_injection___closed__12; +static lean_object* l_Lean_Parser_Tactic_solveByElim___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticRepeat____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_case___closed__4; static lean_object* l_Lean_Parser_Attr_simp___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; +static lean_object* l_Lean_Parser_Tactic_applyAssumption___closed__7; static lean_object* l_Lean_Parser_Tactic_subst___closed__5; static lean_object* l_Lean_Parser_Tactic_tacDepIfThenElse___closed__26; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__12; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__13; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_star___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticNorm__cast____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticSimpa_x3f_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSimp__all_x3f_x21_____closed__3; @@ -1495,6 +1566,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_refine; static lean_object* l_Lean_Parser_Tactic_case___closed__2; static lean_object* l___aux__Init__Tactics______macroRules__tacticGet__elem__tactic__trivial__2___closed__18; LEAN_EXPORT lean_object* l_term_____x5b___x5d; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_arg___closed__2; static lean_object* l_Lean_Parser_Attr_norm__cast___closed__6; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_failIfSuccess; @@ -1527,7 +1599,9 @@ static lean_object* l_Lean_Parser_Tactic_first___closed__16; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticAssumption__mod__cast___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticNomatch___x2c_x2c___closed__6; +static lean_object* l_Lean_Parser_Tactic_symm___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticHave_x27___x3a_x3d____1___closed__5; +static lean_object* l_Lean_Parser_Tactic_SolveByElim_args___closed__5; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticSorry__1___closed__10; @@ -1552,6 +1626,7 @@ static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__5; static lean_object* l_Lean_Parser_Tactic_dsimp___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Tactics______macroRules__Lean__Parser__Tactic__tacticExists___x2c_x2c__1___closed__2; static lean_object* l_Lean_Parser_Tactic_intros___closed__6; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_solveByElim; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__3; static lean_object* l_Lean_Parser_Tactic_simpTraceArgsRest___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__4; @@ -20058,6 +20133,865 @@ x_1 = l_Lean_Parser_Tactic_normCastAddElim___closed__6; return x_1; } } +static lean_object* _init_l_Lean_Parser_Tactic_symm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symm", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symm___closed__2() { +_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_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_symm___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symm___closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_symm___closed__1; +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_Lean_Parser_Tactic_symm___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_symm___closed__3; +x_3 = l_Lean_Parser_Tactic_change___closed__6; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_symm___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_symm___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_symm___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_Lean_Parser_Tactic_symm() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_symm___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symmSaturate___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symmSaturate", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symmSaturate___closed__2() { +_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_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_symmSaturate___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symmSaturate___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symm_saturate", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_symmSaturate___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_symmSaturate___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_Lean_Parser_Tactic_symmSaturate___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_symmSaturate___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_symmSaturate___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_Lean_Parser_Tactic_symmSaturate() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_symmSaturate___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SolveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("erase", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__3() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; +x_5 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__2; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__2; +x_2 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__3; +x_3 = l_Lean_Parser_Tactic_simpErase___closed__3; +x_4 = lean_alloc_ctor(9, 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_Lean_Parser_Tactic_SolveByElim_erase() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__4; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("star", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; +x_5 = l_Lean_Parser_Tactic_SolveByElim_star___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_SolveByElim_star___closed__1; +x_2 = l_Lean_Parser_Tactic_SolveByElim_star___closed__2; +x_3 = l_Lean_Parser_Tactic_simpStar___closed__4; +x_4 = lean_alloc_ctor(9, 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_Lean_Parser_Tactic_SolveByElim_star() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_SolveByElim_star___closed__3; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("arg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; +x_5 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intros___closed__5; +x_2 = l_Lean_Parser_Tactic_SolveByElim_erase; +x_3 = l_Lean_Parser_Tactic_rename___closed__5; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_SolveByElim_arg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_intros___closed__5; +x_2 = l_Lean_Parser_Tactic_SolveByElim_star; +x_3 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__3; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_SolveByElim_arg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__1; +x_2 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__2; +x_3 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__4; +x_4 = lean_alloc_ctor(9, 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_Lean_Parser_Tactic_SolveByElim_arg() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_SolveByElim_arg___closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("args", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; +x_5 = l_Lean_Parser_Tactic_SolveByElim_args___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_SolveByElim_arg; +x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; +x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__6; +x_4 = 0; +x_5 = lean_alloc_ctor(10, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__4; +x_3 = l_Lean_Parser_Tactic_SolveByElim_args___closed__3; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_SolveByElim_args___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_SolveByElim_args___closed__4; +x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__12; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_SolveByElim_args___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_SolveByElim_args___closed__1; +x_2 = l_Lean_Parser_Tactic_SolveByElim_args___closed__2; +x_3 = l_Lean_Parser_Tactic_SolveByElim_args___closed__5; +x_4 = lean_alloc_ctor(9, 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_Lean_Parser_Tactic_SolveByElim_args() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_SolveByElim_args___closed__6; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("using_", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__2() { +_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_Parser_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_SolveByElim_erase___closed__1; +x_5 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_intros___closed__8; +x_2 = l_Lean_Parser_Tactic_rwRuleSeq___closed__7; +x_3 = l_Lean_Parser_Tactic_rwRuleSeq___closed__6; +x_4 = 0; +x_5 = lean_alloc_ctor(10, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_simpaArgsRest___closed__9; +x_3 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__3; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_SolveByElim_using_____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__1; +x_2 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__2; +x_3 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__4; +x_4 = lean_alloc_ctor(9, 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_Lean_Parser_Tactic_SolveByElim_using__() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_SolveByElim_using_____closed__5; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_solveByElim___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("solveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_solveByElim___closed__2() { +_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_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_solveByElim___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_solveByElim___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("solve_by_elim", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_solveByElim___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_solveByElim___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_Lean_Parser_Tactic_solveByElim___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_rotateLeft___closed__6; +x_2 = l_Lean_Parser_Tactic_simpStar___closed__4; +x_3 = lean_alloc_ctor(1, 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_Tactic_solveByElim___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_solveByElim___closed__4; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__5; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_solveByElim___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_solveByElim___closed__6; +x_3 = l_Lean_Parser_Tactic_rewriteSeq___closed__5; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_solveByElim___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_solveByElim___closed__7; +x_3 = l_Lean_Parser_Tactic_simp___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_solveByElim___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_rotateLeft___closed__6; +x_2 = l_Lean_Parser_Tactic_SolveByElim_args; +x_3 = lean_alloc_ctor(1, 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_Tactic_solveByElim___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_solveByElim___closed__8; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_solveByElim___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_rotateLeft___closed__6; +x_2 = l_Lean_Parser_Tactic_SolveByElim_using__; +x_3 = lean_alloc_ctor(1, 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_Tactic_solveByElim___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_solveByElim___closed__10; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__11; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_solveByElim___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_solveByElim___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__12; +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_Lean_Parser_Tactic_solveByElim() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_solveByElim___closed__13; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyAssumption___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("applyAssumption", 15); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyAssumption___closed__2() { +_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_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_applyAssumption___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyAssumption___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply_assumption", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyAssumption___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_applyAssumption___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_Lean_Parser_Tactic_applyAssumption___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyAssumption___closed__4; +x_3 = l_Lean_Parser_Tactic_rewriteSeq___closed__5; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyAssumption___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyAssumption___closed__5; +x_3 = l_Lean_Parser_Tactic_simp___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyAssumption___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyAssumption___closed__6; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyAssumption___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyAssumption___closed__7; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__11; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyAssumption___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_applyAssumption___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_applyAssumption___closed__8; +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_Lean_Parser_Tactic_applyAssumption() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_applyAssumption___closed__9; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyRules___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("applyRules", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyRules___closed__2() { +_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_Tactic_withAnnotateState___closed__1; +x_2 = l_Lean_Parser_Tactic_withAnnotateState___closed__2; +x_3 = l_Lean_Parser_Tactic_withAnnotateState___closed__3; +x_4 = l_Lean_Parser_Tactic_applyRules___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyRules___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("apply_rules", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_applyRules___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_applyRules___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_Lean_Parser_Tactic_applyRules___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyRules___closed__4; +x_3 = l_Lean_Parser_Tactic_rewriteSeq___closed__5; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyRules___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyRules___closed__5; +x_3 = l_Lean_Parser_Tactic_simp___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyRules___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyRules___closed__6; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__9; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyRules___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_withAnnotateState___closed__7; +x_2 = l_Lean_Parser_Tactic_applyRules___closed__7; +x_3 = l_Lean_Parser_Tactic_solveByElim___closed__11; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Tactic_applyRules___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_applyRules___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_applyRules___closed__8; +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_Lean_Parser_Tactic_applyRules() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_applyRules___closed__9; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Attr_simp___closed__1() { _start: { @@ -24448,6 +25382,154 @@ l_Lean_Parser_Tactic_normCastAddElim___closed__6 = _init_l_Lean_Parser_Tactic_no lean_mark_persistent(l_Lean_Parser_Tactic_normCastAddElim___closed__6); l_Lean_Parser_Tactic_normCastAddElim = _init_l_Lean_Parser_Tactic_normCastAddElim(); lean_mark_persistent(l_Lean_Parser_Tactic_normCastAddElim); +l_Lean_Parser_Tactic_symm___closed__1 = _init_l_Lean_Parser_Tactic_symm___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm___closed__1); +l_Lean_Parser_Tactic_symm___closed__2 = _init_l_Lean_Parser_Tactic_symm___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm___closed__2); +l_Lean_Parser_Tactic_symm___closed__3 = _init_l_Lean_Parser_Tactic_symm___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm___closed__3); +l_Lean_Parser_Tactic_symm___closed__4 = _init_l_Lean_Parser_Tactic_symm___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm___closed__4); +l_Lean_Parser_Tactic_symm___closed__5 = _init_l_Lean_Parser_Tactic_symm___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm___closed__5); +l_Lean_Parser_Tactic_symm = _init_l_Lean_Parser_Tactic_symm(); +lean_mark_persistent(l_Lean_Parser_Tactic_symm); +l_Lean_Parser_Tactic_symmSaturate___closed__1 = _init_l_Lean_Parser_Tactic_symmSaturate___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate___closed__1); +l_Lean_Parser_Tactic_symmSaturate___closed__2 = _init_l_Lean_Parser_Tactic_symmSaturate___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate___closed__2); +l_Lean_Parser_Tactic_symmSaturate___closed__3 = _init_l_Lean_Parser_Tactic_symmSaturate___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate___closed__3); +l_Lean_Parser_Tactic_symmSaturate___closed__4 = _init_l_Lean_Parser_Tactic_symmSaturate___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate___closed__4); +l_Lean_Parser_Tactic_symmSaturate___closed__5 = _init_l_Lean_Parser_Tactic_symmSaturate___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate___closed__5); +l_Lean_Parser_Tactic_symmSaturate = _init_l_Lean_Parser_Tactic_symmSaturate(); +lean_mark_persistent(l_Lean_Parser_Tactic_symmSaturate); +l_Lean_Parser_Tactic_SolveByElim_erase___closed__1 = _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_erase___closed__1); +l_Lean_Parser_Tactic_SolveByElim_erase___closed__2 = _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_erase___closed__2); +l_Lean_Parser_Tactic_SolveByElim_erase___closed__3 = _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_erase___closed__3); +l_Lean_Parser_Tactic_SolveByElim_erase___closed__4 = _init_l_Lean_Parser_Tactic_SolveByElim_erase___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_erase___closed__4); +l_Lean_Parser_Tactic_SolveByElim_erase = _init_l_Lean_Parser_Tactic_SolveByElim_erase(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_erase); +l_Lean_Parser_Tactic_SolveByElim_star___closed__1 = _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_star___closed__1); +l_Lean_Parser_Tactic_SolveByElim_star___closed__2 = _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_star___closed__2); +l_Lean_Parser_Tactic_SolveByElim_star___closed__3 = _init_l_Lean_Parser_Tactic_SolveByElim_star___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_star___closed__3); +l_Lean_Parser_Tactic_SolveByElim_star = _init_l_Lean_Parser_Tactic_SolveByElim_star(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_star); +l_Lean_Parser_Tactic_SolveByElim_arg___closed__1 = _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg___closed__1); +l_Lean_Parser_Tactic_SolveByElim_arg___closed__2 = _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg___closed__2); +l_Lean_Parser_Tactic_SolveByElim_arg___closed__3 = _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg___closed__3); +l_Lean_Parser_Tactic_SolveByElim_arg___closed__4 = _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg___closed__4); +l_Lean_Parser_Tactic_SolveByElim_arg___closed__5 = _init_l_Lean_Parser_Tactic_SolveByElim_arg___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg___closed__5); +l_Lean_Parser_Tactic_SolveByElim_arg = _init_l_Lean_Parser_Tactic_SolveByElim_arg(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_arg); +l_Lean_Parser_Tactic_SolveByElim_args___closed__1 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__1); +l_Lean_Parser_Tactic_SolveByElim_args___closed__2 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__2); +l_Lean_Parser_Tactic_SolveByElim_args___closed__3 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__3); +l_Lean_Parser_Tactic_SolveByElim_args___closed__4 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__4); +l_Lean_Parser_Tactic_SolveByElim_args___closed__5 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__5); +l_Lean_Parser_Tactic_SolveByElim_args___closed__6 = _init_l_Lean_Parser_Tactic_SolveByElim_args___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args___closed__6); +l_Lean_Parser_Tactic_SolveByElim_args = _init_l_Lean_Parser_Tactic_SolveByElim_args(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_args); +l_Lean_Parser_Tactic_SolveByElim_using_____closed__1 = _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using_____closed__1); +l_Lean_Parser_Tactic_SolveByElim_using_____closed__2 = _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using_____closed__2); +l_Lean_Parser_Tactic_SolveByElim_using_____closed__3 = _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using_____closed__3); +l_Lean_Parser_Tactic_SolveByElim_using_____closed__4 = _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using_____closed__4); +l_Lean_Parser_Tactic_SolveByElim_using_____closed__5 = _init_l_Lean_Parser_Tactic_SolveByElim_using_____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using_____closed__5); +l_Lean_Parser_Tactic_SolveByElim_using__ = _init_l_Lean_Parser_Tactic_SolveByElim_using__(); +lean_mark_persistent(l_Lean_Parser_Tactic_SolveByElim_using__); +l_Lean_Parser_Tactic_solveByElim___closed__1 = _init_l_Lean_Parser_Tactic_solveByElim___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__1); +l_Lean_Parser_Tactic_solveByElim___closed__2 = _init_l_Lean_Parser_Tactic_solveByElim___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__2); +l_Lean_Parser_Tactic_solveByElim___closed__3 = _init_l_Lean_Parser_Tactic_solveByElim___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__3); +l_Lean_Parser_Tactic_solveByElim___closed__4 = _init_l_Lean_Parser_Tactic_solveByElim___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__4); +l_Lean_Parser_Tactic_solveByElim___closed__5 = _init_l_Lean_Parser_Tactic_solveByElim___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__5); +l_Lean_Parser_Tactic_solveByElim___closed__6 = _init_l_Lean_Parser_Tactic_solveByElim___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__6); +l_Lean_Parser_Tactic_solveByElim___closed__7 = _init_l_Lean_Parser_Tactic_solveByElim___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__7); +l_Lean_Parser_Tactic_solveByElim___closed__8 = _init_l_Lean_Parser_Tactic_solveByElim___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__8); +l_Lean_Parser_Tactic_solveByElim___closed__9 = _init_l_Lean_Parser_Tactic_solveByElim___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__9); +l_Lean_Parser_Tactic_solveByElim___closed__10 = _init_l_Lean_Parser_Tactic_solveByElim___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__10); +l_Lean_Parser_Tactic_solveByElim___closed__11 = _init_l_Lean_Parser_Tactic_solveByElim___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__11); +l_Lean_Parser_Tactic_solveByElim___closed__12 = _init_l_Lean_Parser_Tactic_solveByElim___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__12); +l_Lean_Parser_Tactic_solveByElim___closed__13 = _init_l_Lean_Parser_Tactic_solveByElim___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim___closed__13); +l_Lean_Parser_Tactic_solveByElim = _init_l_Lean_Parser_Tactic_solveByElim(); +lean_mark_persistent(l_Lean_Parser_Tactic_solveByElim); +l_Lean_Parser_Tactic_applyAssumption___closed__1 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__1); +l_Lean_Parser_Tactic_applyAssumption___closed__2 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__2); +l_Lean_Parser_Tactic_applyAssumption___closed__3 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__3); +l_Lean_Parser_Tactic_applyAssumption___closed__4 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__4); +l_Lean_Parser_Tactic_applyAssumption___closed__5 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__5); +l_Lean_Parser_Tactic_applyAssumption___closed__6 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__6); +l_Lean_Parser_Tactic_applyAssumption___closed__7 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__7); +l_Lean_Parser_Tactic_applyAssumption___closed__8 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__8); +l_Lean_Parser_Tactic_applyAssumption___closed__9 = _init_l_Lean_Parser_Tactic_applyAssumption___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption___closed__9); +l_Lean_Parser_Tactic_applyAssumption = _init_l_Lean_Parser_Tactic_applyAssumption(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyAssumption); +l_Lean_Parser_Tactic_applyRules___closed__1 = _init_l_Lean_Parser_Tactic_applyRules___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__1); +l_Lean_Parser_Tactic_applyRules___closed__2 = _init_l_Lean_Parser_Tactic_applyRules___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__2); +l_Lean_Parser_Tactic_applyRules___closed__3 = _init_l_Lean_Parser_Tactic_applyRules___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__3); +l_Lean_Parser_Tactic_applyRules___closed__4 = _init_l_Lean_Parser_Tactic_applyRules___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__4); +l_Lean_Parser_Tactic_applyRules___closed__5 = _init_l_Lean_Parser_Tactic_applyRules___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__5); +l_Lean_Parser_Tactic_applyRules___closed__6 = _init_l_Lean_Parser_Tactic_applyRules___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__6); +l_Lean_Parser_Tactic_applyRules___closed__7 = _init_l_Lean_Parser_Tactic_applyRules___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__7); +l_Lean_Parser_Tactic_applyRules___closed__8 = _init_l_Lean_Parser_Tactic_applyRules___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__8); +l_Lean_Parser_Tactic_applyRules___closed__9 = _init_l_Lean_Parser_Tactic_applyRules___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules___closed__9); +l_Lean_Parser_Tactic_applyRules = _init_l_Lean_Parser_Tactic_applyRules(); +lean_mark_persistent(l_Lean_Parser_Tactic_applyRules); l_Lean_Parser_Attr_simp___closed__1 = _init_l_Lean_Parser_Attr_simp___closed__1(); lean_mark_persistent(l_Lean_Parser_Attr_simp___closed__1); l_Lean_Parser_Attr_simp___closed__2 = _init_l_Lean_Parser_Attr_simp___closed__2(); diff --git a/stage0/stdlib/Lean.c b/stage0/stdlib/Lean.c index e40f1a77d1..6d2dd92a67 100644 --- a/stage0/stdlib/Lean.c +++ b/stage0/stdlib/Lean.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean -// Imports: Init Lean.Data Lean.Compiler Lean.Environment Lean.Modifiers Lean.ProjFns Lean.Runtime Lean.ResolveName Lean.Attributes Lean.Parser Lean.ReducibilityAttrs Lean.Elab Lean.Class Lean.LocalContext Lean.MetavarContext Lean.AuxRecursor Lean.Meta Lean.Util Lean.Eval Lean.Structure Lean.PrettyPrinter Lean.CoreM Lean.InternalExceptionId Lean.Server Lean.ScopedEnvExtension Lean.DocString Lean.DeclarationRange Lean.LazyInitExtension Lean.LoadDynlib Lean.Widget Lean.Log Lean.Linter Lean.SubExpr +// Imports: Init Lean.Data Lean.Compiler Lean.Environment Lean.Modifiers Lean.ProjFns Lean.Runtime Lean.ResolveName Lean.Attributes Lean.Parser Lean.ReducibilityAttrs Lean.Elab Lean.Class Lean.LocalContext Lean.MetavarContext Lean.AuxRecursor Lean.Meta Lean.Util Lean.Eval Lean.Structure Lean.PrettyPrinter Lean.CoreM Lean.InternalExceptionId Lean.Server Lean.ScopedEnvExtension Lean.DocString Lean.DeclarationRange Lean.LazyInitExtension Lean.LoadDynlib Lean.Widget Lean.Log Lean.Linter Lean.SubExpr Lean.LabelAttribute #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -46,6 +46,7 @@ lean_object* initialize_Lean_Widget(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Log(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Linter(uint8_t builtin, lean_object*); lean_object* initialize_Lean_SubExpr(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_LabelAttribute(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean(uint8_t builtin, lean_object* w) { lean_object * res; @@ -150,6 +151,9 @@ lean_dec_ref(res); res = initialize_Lean_SubExpr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_LabelAttribute(builtin, 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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Compiler/LCNF/JoinPoints.c b/stage0/stdlib/Lean/Compiler/LCNF/JoinPoints.c index dab693c899..6abffb05a0 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/JoinPoints.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/JoinPoints.c @@ -14189,7 +14189,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_Compiler_LCNF_JoinPointCommonArgs_isInJpScope___closed__1; x_2 = l_Lean_Compiler_LCNF_JoinPointCommonArgs_isInJpScope___closed__2; -x_3 = lean_unsigned_to_nat(375u); +x_3 = lean_unsigned_to_nat(377u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_Compiler_LCNF_JoinPointContextExtender_replaceFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Data/KVMap.c b/stage0/stdlib/Lean/Data/KVMap.c index ab81233a76..62ac70dfed 100644 --- a/stage0/stdlib/Lean/Data/KVMap.c +++ b/stage0/stdlib/Lean/Data/KVMap.c @@ -178,7 +178,6 @@ static lean_object* l_List_repr___at___private_Lean_Data_KVMap_0__Lean_reprKVMap LEAN_EXPORT lean_object* l_Lean_KVMap_instValueInt___lambda__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_KVMap_erase(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_DataValue_sameCtor___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_KVMap_get___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_abs(lean_object*); LEAN_EXPORT lean_object* l_Lean_KVMap_instValueDataValue; @@ -244,6 +243,7 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_KVMap_getName___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_KVMap_get___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_KVMap_instValueSyntax___closed__3; +lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Prod_repr___at___private_Lean_Data_KVMap_0__Lean_reprKVMap____x40_Lean_Data_KVMap___hyg_921____spec__3___closed__2; LEAN_EXPORT lean_object* l_Lean_instCoeIntDataValue(lean_object*); @@ -1078,7 +1078,7 @@ lean_inc(x_81); lean_dec(x_1); x_82 = lean_unsigned_to_nat(1024u); x_83 = lean_nat_dec_le(x_82, x_2); -x_84 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_81, x_82); +x_84 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_81, x_82); x_85 = l___private_Lean_Data_KVMap_0__Lean_reprDataValue____x40_Lean_Data_KVMap___hyg_273____closed__34; x_86 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_86, 0, x_85); diff --git a/stage0/stdlib/Lean/Data/RBMap.c b/stage0/stdlib/Lean/Data/RBMap.c index ba158d7314..232c7c083d 100644 --- a/stage0/stdlib/Lean/Data/RBMap.c +++ b/stage0/stdlib/Lean/Data/RBMap.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Data.RBMap -// Imports: Init.Data.Ord +// Imports: Init.Data.Ord Init.Data.Nat.Linear #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -22036,7 +22036,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_RBMap_min_x21___rarg___closed__1; x_2 = l_Lean_RBMap_min_x21___rarg___closed__2; -x_3 = lean_unsigned_to_nat(364u); +x_3 = lean_unsigned_to_nat(366u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_RBMap_min_x21___rarg___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -22126,7 +22126,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_RBMap_min_x21___rarg___closed__1; x_2 = l_Lean_RBMap_max_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(369u); +x_3 = lean_unsigned_to_nat(371u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_RBMap_min_x21___rarg___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -22205,7 +22205,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_RBMap_min_x21___rarg___closed__1; x_2 = l_Lean_RBMap_find_x21___rarg___closed__1; -x_3 = lean_unsigned_to_nat(375u); +x_3 = lean_unsigned_to_nat(377u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_RBMap_find_x21___rarg___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -22462,6 +22462,7 @@ return x_3; } } lean_object* initialize_Init_Data_Ord(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Nat_Linear(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Data_RBMap(uint8_t builtin, lean_object* w) { lean_object * res; @@ -22470,6 +22471,9 @@ _G_initialized = true; res = initialize_Init_Data_Ord(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Nat_Linear(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_RBColor_noConfusion___rarg___closed__1 = _init_l_Lean_RBColor_noConfusion___rarg___closed__1(); lean_mark_persistent(l_Lean_RBColor_noConfusion___rarg___closed__1); l_Lean_RBNode_toArray___rarg___closed__1 = _init_l_Lean_RBNode_toArray___rarg___closed__1(); diff --git a/stage0/stdlib/Lean/DocString.c b/stage0/stdlib/Lean/DocString.c index 03973b2b80..b2c423436b 100644 --- a/stage0/stdlib/Lean/DocString.c +++ b/stage0/stdlib/Lean/DocString.c @@ -14,97 +14,78 @@ extern "C" { #endif lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264_(lean_object*); lean_object* l_Lean_MapDeclarationExtension_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_addDocString_x27___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_saveLine(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1; LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_4_(lean_object*); lean_object* l_Lean_indentD(lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6; +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5; static lean_object* l_Lean_addBuiltinDocString___closed__1; LEAN_EXPORT lean_object* l_Lean_findDocString_x3f(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDocStringText(lean_object*); LEAN_EXPORT lean_object* l_Lean_getModuleDoc_x3f___boxed(lean_object*, lean_object*); -lean_object* l_String_Iterator_next(lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_getDocStringText___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_removeLeadingSpaces(lean_object*); +lean_object* l_Lean_removeLeadingSpaces(lean_object*); LEAN_EXPORT lean_object* l_Lean_findDocString_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addDocString___rarg___lambda__1___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* lean_string_push(lean_object*, uint32_t); -uint32_t l_String_Iterator_curr(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6; LEAN_EXPORT lean_object* l_Lean_addDocString___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_findNextLine(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_findDocString_x3f___spec__1(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDocStringText___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_instInhabitedString; -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_consumeSpaces(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_docStringExt; LEAN_EXPORT lean_object* l_Lean_addMainModuleDoc(lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___rarg___closed__4; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* lean_list_to_array(lean_object*, lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_consumeSpaces(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_find_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getDocStringText___rarg___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2; LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_builtinDocStrings; +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3; LEAN_EXPORT lean_object* l_Lean_addDocString___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getMainModuleDoc(lean_object*); LEAN_EXPORT lean_object* l_Lean_getModuleDoc_x3f(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5; -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4; +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___boxed(lean_object*); lean_object* l_Lean_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString___boxed(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4; static lean_object* l_Lean_getModuleDoc_x3f___closed__1; +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_moduleDocExt; LEAN_EXPORT lean_object* l_Lean_addDocString(lean_object*); -lean_object* lean_string_length(lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_44____closed__2; static lean_object* l_Lean_addMainModuleDoc___closed__1; -uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__2; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdx_x3f(lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_44____closed__3; -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3; -static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2; lean_object* l_Lean_mkMapDeclarationExtension___rarg(lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_44____closed__1; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637_(lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_44_(lean_object*); -static lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1; uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); static lean_object* l_Lean_getDocStringText___rarg___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces(lean_object*, lean_object*); lean_object* l_Lean_instInhabitedPersistentArray(lean_object*); static lean_object* l_Lean_getMainModuleDoc___closed__1; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_findDocString_x3f___spec__1___boxed(lean_object*, lean_object*); -uint8_t l_String_Iterator_atEnd(lean_object*); -LEAN_EXPORT lean_object* l_String_Iterator_find___at___private_Lean_DocString_0__Lean_findLeadingSpacesSize___spec__1(lean_object*); -uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1; +static lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1; static lean_object* l_Lean_getDocStringText___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_addDocString_x27(lean_object*); LEAN_EXPORT lean_object* l_Lean_getMainModuleDoc___boxed(lean_object*); @@ -169,315 +150,6 @@ x_3 = l_Lean_mkMapDeclarationExtension___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_consumeSpaces(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = l_String_Iterator_atEnd(x_1); -if (x_4 == 0) -{ -uint32_t x_5; uint32_t x_6; uint8_t x_7; -x_5 = l_String_Iterator_curr(x_1); -x_6 = 32; -x_7 = lean_uint32_dec_eq(x_5, x_6); -if (x_7 == 0) -{ -uint32_t x_8; uint8_t x_9; -x_8 = 9; -x_9 = lean_uint32_dec_eq(x_5, x_8); -if (x_9 == 0) -{ -uint32_t x_10; uint8_t x_11; -x_10 = 10; -x_11 = lean_uint32_dec_eq(x_5, x_10); -if (x_11 == 0) -{ -lean_object* x_12; uint8_t x_13; -x_12 = l_String_Iterator_next(x_1); -x_13 = lean_nat_dec_le(x_2, x_3); -if (x_13 == 0) -{ -lean_object* x_14; -lean_dec(x_2); -x_14 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_findNextLine(x_12, x_3); -return x_14; -} -else -{ -lean_object* x_15; -lean_dec(x_3); -x_15 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_findNextLine(x_12, x_2); -return x_15; -} -} -else -{ -lean_object* x_16; lean_object* x_17; -lean_dec(x_2); -x_16 = l_String_Iterator_next(x_1); -x_17 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_findNextLine(x_16, x_3); -return x_17; -} -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = l_String_Iterator_next(x_1); -x_19 = lean_unsigned_to_nat(1u); -x_20 = lean_nat_add(x_2, x_19); -lean_dec(x_2); -x_1 = x_18; -x_2 = x_20; -goto _start; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = l_String_Iterator_next(x_1); -x_23 = lean_unsigned_to_nat(1u); -x_24 = lean_nat_add(x_2, x_23); -lean_dec(x_2); -x_1 = x_22; -x_2 = x_24; -goto _start; -} -} -else -{ -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_findNextLine(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = l_String_Iterator_atEnd(x_1); -if (x_3 == 0) -{ -uint32_t x_4; uint32_t x_5; uint8_t x_6; -x_4 = l_String_Iterator_curr(x_1); -x_5 = 10; -x_6 = lean_uint32_dec_eq(x_4, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -x_7 = l_String_Iterator_next(x_1); -x_1 = x_7; -goto _start; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_String_Iterator_next(x_1); -x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_consumeSpaces(x_9, x_10, x_2); -return x_11; -} -} -else -{ -lean_dec(x_1); -return x_2; -} -} -} -LEAN_EXPORT lean_object* l_String_Iterator_find___at___private_Lean_DocString_0__Lean_findLeadingSpacesSize___spec__1(lean_object* x_1) { -_start: -{ -uint8_t x_2; -x_2 = l_String_Iterator_atEnd(x_1); -if (x_2 == 0) -{ -uint32_t x_3; uint32_t x_4; uint8_t x_5; -x_3 = l_String_Iterator_curr(x_1); -x_4 = 10; -x_5 = lean_uint32_dec_eq(x_3, x_4); -if (x_5 == 0) -{ -lean_object* x_6; -x_6 = l_String_Iterator_next(x_1); -x_1 = x_6; -goto _start; -} -else -{ -return x_1; -} -} -else -{ -return x_1; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_findLeadingSpacesSize(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; lean_object* x_7; -x_2 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -x_4 = l_String_Iterator_find___at___private_Lean_DocString_0__Lean_findLeadingSpacesSize___spec__1(x_3); -x_5 = l_String_Iterator_next(x_4); -x_6 = lean_string_length(x_1); -lean_dec(x_1); -x_7 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize_consumeSpaces(x_5, x_2, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_consumeSpaces(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_nat_dec_eq(x_2, x_5); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_unsigned_to_nat(1u); -x_8 = lean_nat_sub(x_2, x_7); -lean_dec(x_2); -x_9 = l_String_Iterator_atEnd(x_3); -if (x_9 == 0) -{ -uint32_t x_10; uint32_t x_11; uint8_t x_12; -x_10 = l_String_Iterator_curr(x_3); -x_11 = 32; -x_12 = lean_uint32_dec_eq(x_10, x_11); -if (x_12 == 0) -{ -uint32_t x_13; uint8_t x_14; -x_13 = 9; -x_14 = lean_uint32_dec_eq(x_10, x_13); -if (x_14 == 0) -{ -lean_object* x_15; -lean_dec(x_8); -x_15 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_saveLine(x_1, x_3, x_4); -return x_15; -} -else -{ -lean_object* x_16; -x_16 = l_String_Iterator_next(x_3); -x_2 = x_8; -x_3 = x_16; -goto _start; -} -} -else -{ -lean_object* x_18; -x_18 = l_String_Iterator_next(x_3); -x_2 = x_8; -x_3 = x_18; -goto _start; -} -} -else -{ -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_1); -return x_4; -} -} -else -{ -lean_object* x_20; -lean_dec(x_2); -x_20 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_saveLine(x_1, x_3, x_4); -return x_20; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_saveLine(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = l_String_Iterator_atEnd(x_2); -if (x_4 == 0) -{ -uint32_t x_5; uint32_t x_6; uint8_t x_7; -x_5 = l_String_Iterator_curr(x_2); -x_6 = 10; -x_7 = lean_uint32_dec_eq(x_5, x_6); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; -x_8 = l_String_Iterator_next(x_2); -x_9 = lean_string_push(x_3, x_5); -x_2 = x_8; -x_3 = x_9; -goto _start; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = l_String_Iterator_next(x_2); -x_12 = lean_string_push(x_3, x_6); -lean_inc(x_1); -x_13 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_consumeSpaces(x_1, x_1, x_11, x_12); -return x_13; -} -} -else -{ -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -} -static lean_object* _init_l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("", 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces(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; -x_3 = lean_unsigned_to_nat(0u); -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set(x_4, 1, x_3); -x_5 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1; -lean_inc(x_1); -x_6 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces_consumeSpaces(x_1, x_1, x_4, x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_removeLeadingSpaces(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; uint8_t x_4; -lean_inc(x_1); -x_2 = l___private_Lean_DocString_0__Lean_findLeadingSpacesSize(x_1); -x_3 = lean_unsigned_to_nat(0u); -x_4 = lean_nat_dec_eq(x_2, x_3); -if (x_4 == 0) -{ -lean_object* x_5; -x_5 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces(x_2, x_1); -return x_5; -} -else -{ -lean_dec(x_2); -return x_1; -} -} -} static lean_object* _init_l_Lean_addBuiltinDocString___closed__1() { _start: { @@ -741,7 +413,7 @@ x_6 = l_Lean_findDocString_x3f(x_1, x_2, x_5, x_4); return x_6; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -750,23 +422,23 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1; +x_1 = l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1; 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_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2; -x_3 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1; +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2; +x_3 = l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1; x_4 = lean_unsigned_to_nat(0u); x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_2); @@ -777,15 +449,15 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3; +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3; return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1() { _start: { lean_object* x_1; @@ -793,17 +465,17 @@ x_1 = lean_mk_string_from_bytes("moduleDocExt", 12); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_initFn____x40_Lean_DocString___hyg_44____closed__1; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1; +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3() { _start: { lean_object* x_1; @@ -812,7 +484,7 @@ lean_closure_set(x_1, 0, lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4() { _start: { lean_object* x_1; @@ -820,22 +492,22 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PersistentArray_push___rarg), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6() { +static lean_object* _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6() { _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_initFn____x40_Lean_DocString___hyg_1637____closed__2; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4; -x_3 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5; -x_4 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3; +x_1 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2; +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4; +x_3 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5; +x_4 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3; x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -844,20 +516,20 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6; +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6; x_3 = l_Lean_registerSimplePersistentEnvExtension___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1(x_1); +x_2 = l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1(x_1); lean_dec(x_1); return x_2; } @@ -990,8 +662,16 @@ return x_2; static lean_object* _init_l_Lean_getDocStringText___rarg___closed__3() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_getDocStringText___rarg___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1; +x_1 = l_Lean_getDocStringText___rarg___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -1036,7 +716,7 @@ x_18 = l_Lean_getDocStringText___rarg___closed__2; x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); -x_20 = l_Lean_getDocStringText___rarg___closed__3; +x_20 = l_Lean_getDocStringText___rarg___closed__4; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -1062,46 +742,6 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = lean_unsigned_to_nat(1u); -x_3 = l_Lean_Syntax_getArg(x_1, x_2); -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -lean_dec(x_3); -x_5 = lean_string_utf8_byte_size(x_4); -x_6 = lean_unsigned_to_nat(2u); -x_7 = lean_nat_sub(x_5, x_6); -lean_dec(x_5); -x_8 = lean_unsigned_to_nat(0u); -x_9 = lean_string_utf8_extract(x_4, x_8, x_7); -lean_dec(x_7); -lean_dec(x_4); -return x_9; -} -else -{ -lean_object* x_10; -lean_dec(x_3); -x_10 = l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1; -return x_10; -} -} -} -LEAN_EXPORT lean_object* l_Lean_TSyntax_getDocString___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_TSyntax_getDocString(x_1); -lean_dec(x_1); -return x_2; -} -} lean_object* initialize_Lean_DeclarationRange(uint8_t builtin, lean_object*); lean_object* initialize_Lean_MonadEnv(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -1131,31 +771,29 @@ if (lean_io_result_is_error(res)) return res; l___private_Lean_DocString_0__Lean_docStringExt = lean_io_result_get_value(res); lean_mark_persistent(l___private_Lean_DocString_0__Lean_docStringExt); lean_dec_ref(res); -}l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1 = _init_l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1(); -lean_mark_persistent(l___private_Lean_DocString_0__Lean_removeNumLeadingSpaces___closed__1); -l_Lean_addBuiltinDocString___closed__1 = _init_l_Lean_addBuiltinDocString___closed__1(); +}l_Lean_addBuiltinDocString___closed__1 = _init_l_Lean_addBuiltinDocString___closed__1(); lean_mark_persistent(l_Lean_addBuiltinDocString___closed__1); l_Lean_addDocString___rarg___lambda__1___closed__1 = _init_l_Lean_addDocString___rarg___lambda__1___closed__1(); lean_mark_persistent(l_Lean_addDocString___rarg___lambda__1___closed__1); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__1); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__2); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____lambda__1___closed__3); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__1); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__2 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__2); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__3); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__4); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__5); -l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_1637____closed__6); -if (builtin) {res = l_Lean_initFn____x40_Lean_DocString___hyg_1637_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__1); +l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__2); +l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____lambda__1___closed__3); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__1); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__2); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__3); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__4); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__5); +l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6 = _init_l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_DocString___hyg_264____closed__6); +if (builtin) {res = l_Lean_initFn____x40_Lean_DocString___hyg_264_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l___private_Lean_DocString_0__Lean_moduleDocExt = lean_io_result_get_value(res); lean_mark_persistent(l___private_Lean_DocString_0__Lean_moduleDocExt); @@ -1172,6 +810,8 @@ l_Lean_getDocStringText___rarg___closed__2 = _init_l_Lean_getDocStringText___rar lean_mark_persistent(l_Lean_getDocStringText___rarg___closed__2); l_Lean_getDocStringText___rarg___closed__3 = _init_l_Lean_getDocStringText___rarg___closed__3(); lean_mark_persistent(l_Lean_getDocStringText___rarg___closed__3); +l_Lean_getDocStringText___rarg___closed__4 = _init_l_Lean_getDocStringText___rarg___closed__4(); +lean_mark_persistent(l_Lean_getDocStringText___rarg___closed__4); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/PatternVar.c b/stage0/stdlib/Lean/Elab/PatternVar.c index 0d0bd006fe..5c1d3e65aa 100644 --- a/stage0/stdlib/Lean/Elab/PatternVar.c +++ b/stage0/stdlib/Lean/Elab/PatternVar.c @@ -28,12 +28,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_Coll static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg___closed__7; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__17; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12(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_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__3; lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__3___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_State_found___default; -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5; static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__3; @@ -49,7 +48,7 @@ lean_object* l_Lean_ConstantInfo_type(lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_getPatternsVars___spec__5___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11(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_Elab_Term_CollectPatternVars_collect___lambda__11(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_throwError___at_Lean_Elab_Term_CollectPatternVars_collect___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect___spec__3___closed__2; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg___spec__2(lean_object*, lean_object*); @@ -58,15 +57,15 @@ lean_object* l_Lean_Syntax_getId(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__3(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*, lean_object*); static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__4; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7; lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_getPatternsVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(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_Elab_Term_CollectPatternVars_collect___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2; static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(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_Elab_Term_CollectPatternVars_collect___lambda__10(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___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_getNextParam___closed__1; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Elab_Term_getPatternVars___closed__1; @@ -91,7 +90,6 @@ lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__7; lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_main___spec__3___closed__2; -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); @@ -100,6 +98,7 @@ extern lean_object* l_Lean_matchPatternAttr; lean_object* l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_getPatternsVars___spec__5___rarg___closed__2; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_main___spec__3___closed__4; +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___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* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_instInhabitedContext; @@ -126,6 +125,7 @@ static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPa static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___lambda__3(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_Elab_Term_CollectPatternVars_collect___lambda__5(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_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Term_CollectPatternVars_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processImplicitArg___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_isTracingEnabledFor___at_Lean_Elab_Term_CollectPatternVars_main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -133,13 +133,14 @@ static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVar LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_State_vars___default; lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___spec__1(lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1; static lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__1___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_main___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg(uint8_t, 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_PatternVar_0__Lean_Elab_Term_CollectPatternVars_isDone___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___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_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_CollectPatternVars_collect___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1; static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___lambda__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_panic___at_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___spec__1___closed__1; @@ -150,12 +151,15 @@ static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVar lean_object* l_liftExcept___at_Lean_Elab_liftMacroM___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__11; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14(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_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8___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_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg___closed__3; lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___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* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_getPatternVarNames___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -210,11 +214,9 @@ static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__22; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__4; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect___spec__3___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_samePatternsVariables___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3; lean_object* l_Lean_Core_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); @@ -235,7 +237,6 @@ lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Term_0__Lean_Elab_T LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_CollectPatternVars_collect___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -245,6 +246,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_getPattern LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg(uint8_t, 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_mapSepElemsM___at_Lean_Elab_Term_CollectPatternVars_collect___spec__7___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_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_getPatternsVars___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___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*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__1___closed__1; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__14; @@ -262,7 +264,6 @@ static lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_CollectPatternVar static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__4___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___closed__3; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___lambda__2___closed__1; @@ -273,9 +274,11 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0 LEAN_EXPORT lean_object* l_Array_isEqvAux___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_samePatternsVariables___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Term_CollectPatternVars_main___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_Elab_Term_CollectPatternVars_collect_pushNewArg___closed__1; +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___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___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_NameSet_empty; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__12; @@ -283,11 +286,10 @@ static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___cl static lean_object* l_panic___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__1___closed__2; uint8_t l_Lean_Name_isAtomic(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect___spec__3___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*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__2; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__3___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13(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_Elab_Term_CollectPatternVars_collect___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___closed__1; @@ -300,7 +302,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_Coll static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__19; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___closed__5; static lean_object* l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__8; uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); @@ -324,7 +325,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatte lean_object* l_Array_mkArray1___rarg(lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__7; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__4; -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Elab_Term_CollectPatternVars_collect___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*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__9; @@ -333,7 +333,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatte static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___closed__4; static lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__1___closed__3; static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__2___closed__6; -static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4; lean_object* lean_erase_macro_scopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg___closed__5; @@ -342,12 +341,14 @@ static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processExplicitA LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processImplicitArg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_CollectPatternVars_collect___spec__5(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2; extern lean_object* l_Lean_instInhabitedName; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2(uint8_t, 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_throwMaxRecDepthAt___at_Lean_Elab_Term_getPatternsVars___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -371,9 +372,8 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0 LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Elab_Term_CollectPatternVars_collect___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_getPatternVars___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppContext___lambda__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___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_Elab_Term_CollectPatternVars_collect___lambda__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_CollectPatternVars_collect_processExplicitArg___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*, uint8_t); lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__5; @@ -390,6 +390,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processExpl LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_processVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__4___boxed(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_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_CollectPatternVars_collect___spec__6(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_Context_paramDeclIdx___default; @@ -409,6 +410,7 @@ static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCo LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__3___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Term_getPatternVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_getPatternsVars___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1764,7 +1766,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_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__6; x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__7; -x_3 = lean_unsigned_to_nat(221u); +x_3 = lean_unsigned_to_nat(234u); x_4 = lean_unsigned_to_nat(15u); x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__8; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -2010,7 +2012,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_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__6; x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__7; -x_3 = lean_unsigned_to_nat(222u); +x_3 = lean_unsigned_to_nat(235u); x_4 = lean_unsigned_to_nat(74u); x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__8; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -4370,7 +4372,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_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__6; x_2 = l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___closed__1; -x_3 = lean_unsigned_to_nat(253u); +x_3 = lean_unsigned_to_nat(266u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorApp___spec__2___closed__8; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -5971,75 +5973,75 @@ return x_24; LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8(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: { -lean_object* x_11; +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_unsigned_to_nat(2u); +x_12 = l_Lean_Syntax_getArg(x_1, x_11); lean_inc(x_9); lean_inc(x_8); +lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_2); -x_11 = l_Lean_Elab_Term_CollectPatternVars_collect(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) +x_13 = l_Lean_Elab_Term_CollectPatternVars_collect(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_unsigned_to_nat(3u); -x_15 = l_Lean_Syntax_getArg(x_7, x_14); -x_16 = l_Lean_Elab_Term_CollectPatternVars_collect(x_15, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_13); -if (lean_obj_tag(x_16) == 0) +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +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_16 = lean_unsigned_to_nat(3u); +x_17 = l_Lean_Syntax_getArg(x_1, x_16); +x_18 = l_Lean_Elab_Term_CollectPatternVars_collect(x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15); +if (lean_obj_tag(x_18) == 0) { -uint8_t x_17; -x_17 = !lean_is_exclusive(x_16); -if (x_17 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_18 = lean_ctor_get(x_16, 0); -x_19 = lean_unsigned_to_nat(2u); -x_20 = l_Lean_Syntax_setArg(x_7, x_19, x_12); -x_21 = l_Lean_Syntax_setArg(x_20, x_14, x_18); -lean_ctor_set(x_16, 0, x_21); -return x_16; +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = l_Lean_Syntax_setArg(x_1, x_11, x_14); +x_22 = l_Lean_Syntax_setArg(x_21, x_16, x_20); +lean_ctor_set(x_18, 0, x_22); +return x_18; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_22 = lean_ctor_get(x_16, 0); -x_23 = lean_ctor_get(x_16, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_18, 0); +x_24 = lean_ctor_get(x_18, 1); +lean_inc(x_24); lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_16); -x_24 = lean_unsigned_to_nat(2u); -x_25 = l_Lean_Syntax_setArg(x_7, x_24, x_12); -x_26 = l_Lean_Syntax_setArg(x_25, x_14, x_22); +lean_dec(x_18); +x_25 = l_Lean_Syntax_setArg(x_1, x_11, x_14); +x_26 = l_Lean_Syntax_setArg(x_25, x_16, x_23); x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_23); +lean_ctor_set(x_27, 1, x_24); return x_27; } } else { uint8_t x_28; -lean_dec(x_12); -lean_dec(x_7); -x_28 = !lean_is_exclusive(x_16); +lean_dec(x_14); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_18); if (x_28 == 0) { -return x_16; +return x_18; } else { lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_16, 0); -x_30 = lean_ctor_get(x_16, 1); +x_29 = lean_ctor_get(x_18, 0); +x_30 = lean_ctor_get(x_18, 1); lean_inc(x_30); lean_inc(x_29); -lean_dec(x_16); +lean_dec(x_18); x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); @@ -6057,20 +6059,20 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); -x_32 = !lean_is_exclusive(x_11); +lean_dec(x_1); +x_32 = !lean_is_exclusive(x_13); if (x_32 == 0) { -return x_11; +return x_13; } else { lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_11, 0); -x_34 = lean_ctor_get(x_11, 1); +x_33 = lean_ctor_get(x_13, 0); +x_34 = lean_ctor_get(x_13, 1); lean_inc(x_34); lean_inc(x_33); -lean_dec(x_11); +lean_dec(x_13); x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_33); lean_ctor_set(x_35, 1, x_34); @@ -6079,7 +6081,138 @@ return x_35; } } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1() { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(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: +{ +lean_object* x_11; uint8_t x_12; lean_object* x_13; +x_11 = l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2___closed__1; +x_12 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_13 = l_Lean_Elab_Term_resolveId_x3f(x_1, x_11, x_12, x_2, x_3, x_4, x_5, x_8, x_9, x_10); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_7); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___rarg(x_6, x_2, x_3, x_4, x_5, x_8, x_9, x_15); +return x_16; +} +else +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_14, 0); +lean_inc(x_17); +lean_dec(x_14); +if (lean_obj_tag(x_17) == 4) +{ +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; uint8_t x_25; +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_dec(x_13); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_st_ref_get(x_9, x_18); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2___closed__3; +x_25 = l_Lean_TagAttribute_hasTag(x_24, x_23, x_19); +if (x_25 == 0) +{ +lean_object* x_26; uint8_t x_27; +lean_dec(x_7); +x_26 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___rarg(x_6, x_2, x_3, x_4, x_5, x_8, x_9, x_22); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +return x_26; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_box(0); +x_32 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8(x_7, x_31, x_6, x_2, x_3, x_4, x_5, x_8, x_9, x_22); +return x_32; +} +} +else +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_17); +lean_dec(x_7); +x_33 = lean_ctor_get(x_13, 1); +lean_inc(x_33); +lean_dec(x_13); +x_34 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___rarg(x_6, x_2, x_3, x_4, x_5, x_8, x_9, x_33); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_9); +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_35 = !lean_is_exclusive(x_13); +if (x_35 == 0) +{ +return x_13; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_13, 0); +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_13); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1() { _start: { lean_object* x_1; @@ -6087,16 +6220,16 @@ x_1 = lean_mk_string_from_bytes("_root_.namedPattern", 19); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1; +x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3() { _start: { lean_object* x_1; @@ -6104,7 +6237,7 @@ x_1 = lean_mk_string_from_bytes("_root_", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4() { _start: { lean_object* x_1; @@ -6112,51 +6245,51 @@ x_1 = lean_mk_string_from_bytes("namedPattern", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3; -x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4; +x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3; +x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4; +x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6; +x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6; 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_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7; +x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7; 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_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(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_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(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_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -6206,10 +6339,10 @@ x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); lean_dec(x_26); x_28 = lean_environment_main_module(x_27); -x_29 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5; +x_29 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5; x_30 = l_Lean_addMacroScope(x_28, x_29, x_23); -x_31 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2; -x_32 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8; +x_31 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2; +x_32 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8; lean_inc(x_22); x_33 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_33, 0, x_22); @@ -6235,10 +6368,10 @@ x_39 = lean_ctor_get(x_37, 0); lean_inc(x_39); lean_dec(x_37); x_40 = lean_environment_main_module(x_39); -x_41 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5; +x_41 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5; x_42 = l_Lean_addMacroScope(x_40, x_41, x_23); -x_43 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2; -x_44 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8; +x_43 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2; +x_44 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8; lean_inc(x_22); x_45 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_45, 0, x_22); @@ -6318,7 +6451,7 @@ return x_57; } } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1() { _start: { lean_object* x_1; @@ -6326,26 +6459,26 @@ x_1 = lean_mk_string_from_bytes("h", 1); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1; +x_1 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1; +x_2 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(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_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11(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_object* x_11) { _start: { lean_object* x_12; @@ -6373,7 +6506,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_unsigned_to_nat(0u); x_18 = l_Lean_Syntax_getArg(x_15, x_17); lean_dec(x_15); -x_19 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(x_7, x_1, x_8, x_18, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_13); +x_19 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(x_7, x_1, x_8, x_18, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_13); lean_dec(x_7); return x_19; } @@ -6397,16 +6530,16 @@ x_27 = lean_ctor_get(x_25, 0); lean_inc(x_27); lean_dec(x_25); x_28 = lean_environment_main_module(x_27); -x_29 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3; +x_29 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3; x_30 = l_Lean_addMacroScope(x_28, x_29, x_23); x_31 = lean_box(0); -x_32 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2; +x_32 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2; x_33 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_33, 0, x_22); lean_ctor_set(x_33, 1, x_32); lean_ctor_set(x_33, 2, x_30); lean_ctor_set(x_33, 3, x_31); -x_34 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(x_7, x_1, x_8, x_33, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_26); +x_34 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(x_7, x_1, x_8, x_33, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_26); lean_dec(x_7); return x_34; } @@ -6445,7 +6578,7 @@ return x_38; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11(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_Elab_Term_CollectPatternVars_collect___lambda__12(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: { lean_object* x_11; @@ -6504,7 +6637,7 @@ return x_24; } } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1() { _start: { lean_object* x_1; @@ -6512,19 +6645,19 @@ x_1 = lean_mk_string_from_bytes("inaccessible", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__3; x_2 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__4; x_3 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__5; -x_4 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1; +x_4 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3() { _start: { lean_object* x_1; @@ -6532,7 +6665,7 @@ x_1 = lean_mk_string_from_bytes(".(", 2); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -6548,7 +6681,7 @@ 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; x_10 = lean_ctor_get(x_8, 0); lean_dec(x_10); -x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3; +x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3; lean_inc(x_7); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_7); @@ -6558,7 +6691,7 @@ lean_inc(x_7); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_7); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2; +x_15 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2; x_16 = l_Lean_Syntax_node3(x_7, x_15, x_12, x_1, x_14); lean_ctor_set(x_8, 0, x_16); return x_8; @@ -6569,7 +6702,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean x_17 = lean_ctor_get(x_8, 1); lean_inc(x_17); lean_dec(x_8); -x_18 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3; +x_18 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3; lean_inc(x_7); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_7); @@ -6579,7 +6712,7 @@ lean_inc(x_7); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_7); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2; +x_22 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2; x_23 = l_Lean_Syntax_node3(x_7, x_22, x_19, x_1, x_21); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_23); @@ -6588,7 +6721,7 @@ return x_24; } } } -static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1() { +static lean_object* _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1() { _start: { lean_object* x_1; @@ -6596,11 +6729,11 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect), 9 return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13(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_Elab_Term_CollectPatternVars_collect___lambda__14(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: { lean_object* x_11; lean_object* x_12; -x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1; +x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1; x_12 = l_Array_mapSepElemsM___at_Lean_Elab_Term_CollectPatternVars_collect___spec__7(x_1, x_11, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_10); if (lean_obj_tag(x_12) == 0) { @@ -6775,7 +6908,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__3; x_2 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__4; x_3 = l___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_finalize___closed__5; -x_4 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4; +x_4 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } @@ -7001,7 +7134,7 @@ x_35 = lean_name_eq(x_10, x_34); if (x_35 == 0) { lean_object* x_36; uint8_t x_37; -x_36 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2; +x_36 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2; x_37 = lean_name_eq(x_10, x_36); if (x_37 == 0) { @@ -7339,15 +7472,15 @@ else { lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_dec(x_10); -x_111 = lean_unsigned_to_nat(2u); +x_111 = lean_unsigned_to_nat(1u); x_112 = l_Lean_Syntax_getArg(x_1, x_111); -x_113 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8), 10, 7); +x_113 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9), 10, 7); lean_closure_set(x_113, 0, x_112); -lean_closure_set(x_113, 1, x_2); -lean_closure_set(x_113, 2, x_3); -lean_closure_set(x_113, 3, x_4); -lean_closure_set(x_113, 4, x_5); -lean_closure_set(x_113, 5, x_6); +lean_closure_set(x_113, 1, x_3); +lean_closure_set(x_113, 2, x_4); +lean_closure_set(x_113, 3, x_5); +lean_closure_set(x_113, 4, x_6); +lean_closure_set(x_113, 5, x_2); lean_closure_set(x_113, 6, x_1); x_114 = l_Lean_Core_withFreshMacroScope___rarg(x_113, x_7, x_8, x_9); return x_114; @@ -7359,7 +7492,7 @@ lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_dec(x_10); x_115 = lean_unsigned_to_nat(0u); x_116 = l_Lean_Syntax_getArg(x_1, x_115); -x_117 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10), 11, 8); +x_117 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11), 11, 8); lean_closure_set(x_117, 0, x_116); lean_closure_set(x_117, 1, x_2); lean_closure_set(x_117, 2, x_3); @@ -7396,7 +7529,7 @@ lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_dec(x_10); x_123 = lean_unsigned_to_nat(1u); x_124 = l_Lean_Syntax_getArg(x_1, x_123); -x_125 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11), 10, 7); +x_125 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12), 10, 7); lean_closure_set(x_125, 0, x_124); lean_closure_set(x_125, 1, x_2); lean_closure_set(x_125, 2, x_3); @@ -7417,7 +7550,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_127 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed), 4, 1); +x_127 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 4, 1); lean_closure_set(x_127, 0, x_1); x_128 = l_Lean_Core_withFreshMacroScope___rarg(x_127, x_7, x_8, x_9); return x_128; @@ -7432,7 +7565,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_129 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed), 4, 1); +x_129 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 4, 1); lean_closure_set(x_129, 0, x_1); x_130 = l_Lean_Core_withFreshMacroScope___rarg(x_129, x_7, x_8, x_9); return x_130; @@ -7461,7 +7594,7 @@ x_133 = lean_unsigned_to_nat(1u); x_134 = l_Lean_Syntax_getArg(x_1, x_133); x_135 = l_Lean_Syntax_getArgs(x_134); lean_dec(x_134); -x_136 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 10, 7); +x_136 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___boxed), 10, 7); lean_closure_set(x_136, 0, x_135); lean_closure_set(x_136, 1, x_2); lean_closure_set(x_136, 2, x_3); @@ -7598,7 +7731,7 @@ x_175 = lean_name_eq(x_10, x_174); if (x_175 == 0) { lean_object* x_176; uint8_t x_177; -x_176 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2; +x_176 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2; x_177 = lean_name_eq(x_10, x_176); if (x_177 == 0) { @@ -7936,15 +8069,15 @@ else { lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_dec(x_10); -x_251 = lean_unsigned_to_nat(2u); +x_251 = lean_unsigned_to_nat(1u); x_252 = l_Lean_Syntax_getArg(x_1, x_251); -x_253 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8), 10, 7); +x_253 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9), 10, 7); lean_closure_set(x_253, 0, x_252); -lean_closure_set(x_253, 1, x_2); -lean_closure_set(x_253, 2, x_3); -lean_closure_set(x_253, 3, x_4); -lean_closure_set(x_253, 4, x_5); -lean_closure_set(x_253, 5, x_6); +lean_closure_set(x_253, 1, x_3); +lean_closure_set(x_253, 2, x_4); +lean_closure_set(x_253, 3, x_5); +lean_closure_set(x_253, 4, x_6); +lean_closure_set(x_253, 5, x_2); lean_closure_set(x_253, 6, x_1); x_254 = l_Lean_Core_withFreshMacroScope___rarg(x_253, x_155, x_8, x_9); return x_254; @@ -7956,7 +8089,7 @@ lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_dec(x_10); x_255 = lean_unsigned_to_nat(0u); x_256 = l_Lean_Syntax_getArg(x_1, x_255); -x_257 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10), 11, 8); +x_257 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11), 11, 8); lean_closure_set(x_257, 0, x_256); lean_closure_set(x_257, 1, x_2); lean_closure_set(x_257, 2, x_3); @@ -7993,7 +8126,7 @@ lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_dec(x_10); x_263 = lean_unsigned_to_nat(1u); x_264 = l_Lean_Syntax_getArg(x_1, x_263); -x_265 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11), 10, 7); +x_265 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12), 10, 7); lean_closure_set(x_265, 0, x_264); lean_closure_set(x_265, 1, x_2); lean_closure_set(x_265, 2, x_3); @@ -8014,7 +8147,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_267 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed), 4, 1); +x_267 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 4, 1); lean_closure_set(x_267, 0, x_1); x_268 = l_Lean_Core_withFreshMacroScope___rarg(x_267, x_155, x_8, x_9); return x_268; @@ -8029,7 +8162,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_269 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed), 4, 1); +x_269 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 4, 1); lean_closure_set(x_269, 0, x_1); x_270 = l_Lean_Core_withFreshMacroScope___rarg(x_269, x_155, x_8, x_9); return x_270; @@ -8058,7 +8191,7 @@ x_273 = lean_unsigned_to_nat(1u); x_274 = l_Lean_Syntax_getArg(x_1, x_273); x_275 = l_Lean_Syntax_getArgs(x_274); lean_dec(x_274); -x_276 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed), 10, 7); +x_276 = lean_alloc_closure((void*)(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___boxed), 10, 7); lean_closure_set(x_276, 0, x_275); lean_closure_set(x_276, 1, x_2); lean_closure_set(x_276, 2, x_3); @@ -8633,29 +8766,38 @@ lean_dec(x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8___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, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_1); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___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, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___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, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_1); return x_11; } @@ -10754,36 +10896,36 @@ l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__1 = _init_l_Le lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__1); l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__5___closed__2); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__1); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__2); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__3); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__4); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__5); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__6); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__7); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__9___closed__8); l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__1); l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__2); l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__3); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__1); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__2); -l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__12___closed__3); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__4); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__5); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__6); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__7); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__10___closed__8); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__1); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__2); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__11___closed__3); l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__1); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__2); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__13___closed__3); +l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___lambda__14___closed__1); l_Lean_Elab_Term_CollectPatternVars_collect___closed__1 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_CollectPatternVars_collect___closed__1); l_Lean_Elab_Term_CollectPatternVars_collect___closed__2 = _init_l_Lean_Elab_Term_CollectPatternVars_collect___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index d66eb9c27c..f8b50b4f1c 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -57,6 +57,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_toParserDescr_processAlias(lean_object LEAN_EXPORT lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst(lean_object*); static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39; static lean_object* l_Lean_Elab_Term_toParserDescr_process___closed__6; +uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605_(uint8_t, uint8_t); lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Term_checkLeftRec___spec__3(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_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescr_processAlias___spec__6___lambda__1___closed__1; @@ -745,7 +746,6 @@ lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_toParserDescr_processAlias___lambda__2___closed__9; static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38; static lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__17; -uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168_(uint8_t, uint8_t); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescr_processAlias___spec__6___lambda__1___closed__2; static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; uint8_t l_Lean_Parser_leadingIdentBehavior(lean_object*, lean_object*); @@ -5012,7 +5012,7 @@ _start: lean_object* x_12; uint8_t x_54; uint8_t x_55; uint8_t x_56; x_54 = lean_ctor_get_uint8(x_3, sizeof(void*)*1 + 2); x_55 = 0; -x_56 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168_(x_54, x_55); +x_56 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605_(x_54, x_55); if (x_56 == 0) { uint8_t x_57; diff --git a/stage0/stdlib/Lean/Elab/Tactic.c b/stage0/stdlib/Lean/Elab/Tactic.c index bfae2be83a..7e62507d56 100644 --- a/stage0/stdlib/Lean/Elab/Tactic.c +++ b/stage0/stdlib/Lean/Elab/Tactic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic -// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Induction Lean.Elab.Tactic.Generalize Lean.Elab.Tactic.Injection Lean.Elab.Tactic.Match Lean.Elab.Tactic.Rewrite Lean.Elab.Tactic.Location Lean.Elab.Tactic.SimpTrace Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Simproc Lean.Elab.Tactic.BuiltinTactic Lean.Elab.Tactic.Split Lean.Elab.Tactic.Conv Lean.Elab.Tactic.Delta Lean.Elab.Tactic.Meta Lean.Elab.Tactic.Unfold Lean.Elab.Tactic.Cache Lean.Elab.Tactic.Calc Lean.Elab.Tactic.Congr Lean.Elab.Tactic.Guard Lean.Elab.Tactic.RCases Lean.Elab.Tactic.Repeat Lean.Elab.Tactic.Ext Lean.Elab.Tactic.Change Lean.Elab.Tactic.FalseOrByContra Lean.Elab.Tactic.Omega Lean.Elab.Tactic.Simpa Lean.Elab.Tactic.NormCast +// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Induction Lean.Elab.Tactic.Generalize Lean.Elab.Tactic.Injection Lean.Elab.Tactic.Match Lean.Elab.Tactic.Rewrite Lean.Elab.Tactic.Location Lean.Elab.Tactic.SimpTrace Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Simproc Lean.Elab.Tactic.BuiltinTactic Lean.Elab.Tactic.Split Lean.Elab.Tactic.Conv Lean.Elab.Tactic.Delta Lean.Elab.Tactic.Meta Lean.Elab.Tactic.Unfold Lean.Elab.Tactic.Cache Lean.Elab.Tactic.Calc Lean.Elab.Tactic.Congr Lean.Elab.Tactic.Guard Lean.Elab.Tactic.RCases Lean.Elab.Tactic.Repeat Lean.Elab.Tactic.Ext Lean.Elab.Tactic.Change Lean.Elab.Tactic.FalseOrByContra Lean.Elab.Tactic.Omega Lean.Elab.Tactic.Simpa Lean.Elab.Tactic.NormCast Lean.Elab.Tactic.Symm Lean.Elab.Tactic.SolveByElim #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -43,6 +43,8 @@ lean_object* initialize_Lean_Elab_Tactic_FalseOrByContra(uint8_t builtin, lean_o lean_object* initialize_Lean_Elab_Tactic_Omega(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Simpa(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_NormCast(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Symm(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_SolveByElim(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic(uint8_t builtin, lean_object* w) { lean_object * res; @@ -138,6 +140,12 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_NormCast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Symm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_SolveByElim(builtin, 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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c index dad52c9a6b..5aa3523623 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/Core.c @@ -13,15 +13,14 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(lean_object*, lean_object*); -static uint8_t l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__2; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_Problem_possible___default; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__15; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__6; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___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*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_isEmpty___boxed(lean_object*); @@ -41,6 +40,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Omega_IntList_combo(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__7; +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__3; lean_object* l___private_Init_Omega_Constraint_0__Lean_Omega_decEqConstraint____x40_Init_Omega_Constraint___hyg_142_(lean_object*, lean_object*); @@ -80,23 +80,26 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEqualities(lean_obj static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__25; +lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__22; LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_isEmpty(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__2; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__7; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3; lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof(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_Elab_Tactic_Omega_Justification_tidyProof(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_toString___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_isEmpty___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__11; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Lean_Omega_bmod__coeffs(lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__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___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__8; LEAN_EXPORT lean_object* l_List_toString___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__1___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__5; @@ -121,17 +124,19 @@ lean_object* l_Lean_Omega_Constraint_exact(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_explanation_x3f___default; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__21; -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_lowerBounds___default; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___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_Elab_Tactic_Omega_Justification_proof___rarg___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_proof___rarg___closed__2; +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_find_x3f___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___closed__2; -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11; +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__7; LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__1; @@ -150,16 +155,19 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Omega_Core_0__Lean_Elab_Ta static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___lambda__1(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*, lean_object*); static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__12; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1(lean_object*); +static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__6; lean_object* lean_string_push(lean_object*, uint32_t); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__3; LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_moveEntries___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__12(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Fact_instToStringFact(lean_object*); @@ -170,7 +178,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1__ static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__12; lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(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_Omega_Justification_bmodProof___closed__5; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__9; @@ -181,14 +189,17 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination(lean_objec LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Int_sign(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___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_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(size_t, size_t, lean_object*); +static uint8_t l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__6___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__7(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1; uint8_t l_instDecidableNot___rarg(uint8_t); -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__3___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__9; @@ -196,13 +207,14 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__17 static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__4; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4(lean_object*, size_t, size_t, lean_object*); static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__16; uint8_t l___private_Init_Omega_Constraint_0__Lean_Omega_beqConstraint____x40_Init_Omega_Constraint___hyg_65_(lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__20; lean_object* l_StateRefT_x27_lift___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__3(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_proof___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -215,6 +227,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality___lambda LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___lambda__1(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__4; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_selectEquality___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_proof___rarg___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___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Elab_Tactic_Omega_Problem_constraints___default___spec__1(lean_object*); @@ -222,13 +236,15 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality___lambda static lean_object* l_List_foldr___at_Lean_Elab_Tactic_Omega_Problem_replayEliminations___spec__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__11; static lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__2___closed__2; -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(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*); static lean_object* l_List_foldr___at_Lean_Elab_Tactic_Omega_Problem_replayEliminations___spec__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___boxed(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_Elab_Tactic_Omega_Problem_proveFalse___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_numVars___default; +static lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2; +static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__6; LEAN_EXPORT lean_object* l_List_beq___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__3___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___closed__2; @@ -240,6 +256,7 @@ LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Elab_Tactic_Omega_P static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__10; lean_object* l_Lean_Meta_mkDecideProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality___closed__4; +lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Problem_addEqualities___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof___closed__3; @@ -259,6 +276,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omeg extern lean_object* l_Lean_instInhabitedExpr; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_combineProof___closed__2; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__4; lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); @@ -276,7 +294,6 @@ lean_object* l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(lean_object*, lea static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Omega_IntList_get(lean_object*, lean_object*); -static uint8_t l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__1; static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__13; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_instToStringJustification(lean_object*, lean_object*); @@ -298,7 +315,7 @@ extern lean_object* l_Lean_Meta_instMonadMetaM; static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__6; static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__17; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__11; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__16; lean_object* l_Int_bmod(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__10; @@ -309,6 +326,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof(lea size_t lean_hashmap_mk_idx(lean_object*, uint64_t); lean_object* lean_mk_thunk(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_comboProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Omega_Core_0__Lean_Elab_Tactic_Omega_Justification_bullet___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__1; @@ -316,6 +335,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_insertConstraint(lean_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_lookup(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static uint8_t l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1(lean_object*); @@ -330,6 +350,7 @@ LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_f static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_dealWithHardEquality___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_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__10(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__17; LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__15; @@ -352,6 +373,7 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_f lean_object* lean_int_mul(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__10; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__5; @@ -378,11 +400,13 @@ static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____cl static lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___boxed(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_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__14; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Fact_tidy(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__9(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_insertConstraint___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__3(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_constraints___default; LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Omega_Constraint_scale(lean_object*, lean_object*); @@ -404,6 +428,7 @@ lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__3; LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Elab_Tactic_Omega_Problem_replayEliminations___spec__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality__proof___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Justification_combineProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse_x3f___default; @@ -411,6 +436,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__2 static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__5; lean_object* l_List_reverse___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Omega_Constraint_combine(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__6; lean_object* l_String_intercalate(lean_object*, lean_object*); @@ -418,10 +444,12 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality__proof(l LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); static lean_object* l_List_toString___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3___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_Elab_Tactic_Omega_Justification_proof(lean_object*); LEAN_EXPORT lean_object* l_List_elem___at_Lean_Elab_Tactic_Omega_Problem_insertConstraint___spec__10___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(lean_object*); size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___closed__3; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9; @@ -433,8 +461,9 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__3 LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__4(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1___boxed(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_Omega_Problem_dealWithHardEquality___closed__4; +lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_int_dec_eq(lean_object*, lean_object*); @@ -442,7 +471,9 @@ uint8_t l_Lean_Omega_Constraint_isExact(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__5; static lean_object* l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Elab_Tactic_Omega_Justification_toString___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___lambda__1(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_HashMap_toList___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__1(lean_object*); @@ -455,11 +486,14 @@ LEAN_EXPORT uint64_t l_List_foldl___at_Lean_Elab_Tactic_Omega_Problem_insertCons uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__7; lean_object* l_Int_decEq___boxed(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__19; lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprLinearCombo___lambda__1___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__13; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_explanation_x3f___default___elambda__1___boxed(lean_object*); +lean_object* l_Lean_MessageData_bracket(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_Elab_Tactic_Omega_Problem_equalities___default___spec__1___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_tidyProof___closed__1; lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -473,7 +507,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_irr lean_object* l_List_toString___at_Lean_MetavarContext_MkBinding_instToStringException___spec__2(lean_object*); lean_object* l_List_enumFrom___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_comboProof___closed__1; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_minNatAbs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_assumptions___default; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_Problem_selectEquality___spec__1(lean_object*, lean_object*); @@ -489,7 +522,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__2 static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__26; static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__12; lean_object* l_Nat_repr(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2___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___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_instToExprConstraint___lambda__1___closed__9; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1___closed__8; @@ -501,6 +534,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__8 static lean_object* l_Lean_Elab_Tactic_Omega_Justification_toString___closed__9; lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_Justification_bmodProof___closed__18; +static lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem(lean_object*); static lean_object* _init_l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__1() { _start: @@ -13807,287 +13841,924 @@ lean_dec(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_2); -x_10 = lean_box(x_3); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_9); +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_1); +lean_ctor_set(x_14, 1, x_2); +x_15 = lean_box(x_3); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_4); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_13); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___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) { +_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; +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_1); x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_4); -lean_ctor_set(x_12, 1, x_11); -x_13 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_13, 0, x_12); -return x_13; +lean_ctor_set(x_12, 0, x_2); +lean_ctor_set(x_12, 1, x_3); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 1, x_13); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_10); +return x_16; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(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) { +static lean_object* _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1() { _start: { -uint8_t x_9; -x_9 = lean_nat_dec_le(x_6, x_5); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_unsigned_to_nat(0u); -x_11 = lean_nat_dec_eq(x_4, 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; uint8_t x_61; -x_12 = lean_unsigned_to_nat(1u); -x_13 = lean_nat_sub(x_4, x_12); -lean_dec(x_4); -x_14 = lean_ctor_get(x_8, 1); -lean_inc(x_14); -lean_dec(x_8); -x_15 = lean_ctor_get(x_14, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 0); -lean_inc(x_16); -if (lean_is_exclusive(x_14)) { - lean_ctor_release(x_14, 0); - lean_ctor_release(x_14, 1); - x_17 = x_14; -} else { - lean_dec_ref(x_14); - x_17 = lean_box(0); -} -x_18 = lean_ctor_get(x_15, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_15, 1); -lean_inc(x_19); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - x_20 = x_15; -} else { - lean_dec_ref(x_15); - x_20 = lean_box(0); -} -x_61 = lean_nat_dec_lt(x_5, x_2); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; -x_62 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; -x_63 = l___private_Init_Util_0__outOfBounds___rarg(x_62); -x_21 = x_63; -goto block_60; -} -else -{ -lean_object* x_64; -x_64 = lean_array_fget(x_1, x_5); -x_21 = x_64; -goto block_60; -} -block_60: -{ -uint8_t x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_43; -x_22 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_21); -x_23 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_21); -x_24 = lean_nat_dec_eq(x_23, x_10); -if (x_24 == 0) -{ -uint8_t x_55; -x_55 = lean_unbox(x_16); -if (x_55 == 0) -{ -if (x_22 == 0) -{ -lean_object* x_56; -x_56 = lean_box(0); -x_25 = x_56; -goto block_42; -} -else -{ -lean_object* x_57; -lean_dec(x_20); -lean_dec(x_17); -x_57 = lean_box(0); -x_43 = x_57; -goto block_54; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Selected variable ", 18); +return x_1; } } -else +static lean_object* _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2() { +_start: { -lean_object* x_58; -x_58 = lean_box(0); -x_25 = x_58; -goto block_42; +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; } } -else +static lean_object* _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3() { +_start: { -lean_object* x_59; -lean_dec(x_20); -lean_dec(x_17); -x_59 = lean_box(0); -x_43 = x_59; -goto block_54; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_Justification_toString___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; } -block_42: +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: { -uint8_t x_26; -lean_dec(x_25); -x_26 = lean_nat_dec_lt(x_23, x_19); -if (x_26 == 0) +uint8_t x_15; +x_15 = lean_nat_dec_le(x_7, x_6); +if (x_15 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_23); -lean_dec(x_21); -if (lean_is_scalar(x_20)) { - x_27 = lean_alloc_ctor(0, 2, 0); -} else { - x_27 = x_20; -} -lean_ctor_set(x_27, 0, x_18); -lean_ctor_set(x_27, 1, x_19); -if (lean_is_scalar(x_17)) { - x_28 = lean_alloc_ctor(0, 2, 0); -} else { - x_28 = x_17; -} -lean_ctor_set(x_28, 0, x_16); -lean_ctor_set(x_28, 1, x_27); -lean_inc(x_3); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_3); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_nat_add(x_5, x_7); +lean_object* x_16; uint8_t x_17; +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_eq(x_5, x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; uint8_t x_130; +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_5, x_18); lean_dec(x_5); -x_4 = x_13; -x_5 = x_30; -x_8 = x_29; +x_28 = lean_ctor_get(x_9, 1); +lean_inc(x_28); +lean_dec(x_9); +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 0); +lean_inc(x_30); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_31 = x_28; +} else { + lean_dec_ref(x_28); + x_31 = lean_box(0); +} +x_32 = lean_ctor_get(x_29, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_29, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_34 = x_29; +} else { + lean_dec_ref(x_29); + x_34 = lean_box(0); +} +x_130 = lean_nat_dec_lt(x_6, x_3); +if (x_130 == 0) +{ +lean_object* x_131; lean_object* x_132; +x_131 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; +x_132 = l___private_Init_Util_0__outOfBounds___rarg(x_131); +x_35 = x_132; +goto block_129; +} +else +{ +lean_object* x_133; +x_133 = lean_array_fget(x_2, x_6); +x_35 = x_133; +goto block_129; +} +block_27: +{ +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_19); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_1); +x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_21); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_20, 0); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_nat_add(x_6, x_8); +lean_dec(x_6); +x_5 = x_19; +x_6 = x_25; +x_9 = x_24; +x_14 = x_21; goto _start; } +} +block_129: +{ +uint8_t x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_69; +x_36 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_35); +x_37 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_35); +x_38 = lean_nat_dec_eq(x_37, x_16); +if (x_38 == 0) +{ +uint8_t x_92; +x_92 = lean_unbox(x_30); +if (x_92 == 0) +{ +if (x_36 == 0) +{ +lean_object* x_93; +x_93 = lean_box(0); +x_69 = x_93; +goto block_91; +} else { -if (x_24 == 0) -{ -lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_17); -x_32 = lean_box(0); -x_33 = lean_unbox(x_16); -lean_dec(x_16); -lean_inc(x_3); -lean_inc(x_5); -x_34 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(x_5, x_23, x_22, x_3, x_33, x_18, x_19, x_32); -lean_dec(x_19); -lean_dec(x_18); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); +lean_object* x_94; lean_dec(x_34); -x_36 = lean_nat_add(x_5, x_7); -lean_dec(x_5); -x_4 = x_13; -x_5 = x_36; -x_8 = x_35; -goto _start; +lean_dec(x_31); +x_94 = lean_box(0); +x_39 = x_94; +goto block_68; +} } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_23); -lean_dec(x_13); -lean_dec(x_5); -lean_dec(x_3); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_21); -if (lean_is_scalar(x_20)) { - x_39 = lean_alloc_ctor(0, 2, 0); -} else { - x_39 = x_20; -} -lean_ctor_set(x_39, 0, x_18); -lean_ctor_set(x_39, 1, x_19); -if (lean_is_scalar(x_17)) { - x_40 = lean_alloc_ctor(0, 2, 0); -} else { - x_40 = x_17; -} -lean_ctor_set(x_40, 0, x_16); -lean_ctor_set(x_40, 1, x_39); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_38); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_95; +x_95 = lean_box(0); +x_69 = x_95; +goto block_91; } } -} -block_54: +else { -lean_dec(x_43); -if (x_24 == 0) -{ -lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec(x_21); -x_44 = lean_box(0); -x_45 = lean_unbox(x_16); -lean_dec(x_16); -lean_inc(x_3); -lean_inc(x_5); -x_46 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(x_5, x_23, x_22, x_3, x_45, x_18, x_19, x_44); +lean_object* x_96; lean_object* x_97; uint8_t x_98; +lean_dec(x_37); +lean_dec(x_34); +lean_dec(x_31); lean_dec(x_19); -lean_dec(x_18); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); +lean_dec(x_6); +lean_dec(x_4); +lean_inc(x_1); +x_96 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_10, x_11, x_12, x_13, x_14); +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_unbox(x_97); +lean_dec(x_97); +if (x_98 == 0) +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; +lean_dec(x_1); +x_99 = lean_ctor_get(x_96, 1); +lean_inc(x_99); +lean_dec(x_96); +x_100 = lean_box(0); +x_101 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(x_35, x_32, x_33, x_30, x_100, x_10, x_11, x_12, x_13, x_99); +x_102 = !lean_is_exclusive(x_101); +if (x_102 == 0) +{ +lean_object* x_103; lean_object* x_104; +x_103 = lean_ctor_get(x_101, 0); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +lean_dec(x_103); +lean_ctor_set(x_101, 0, x_104); +return x_101; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_105 = lean_ctor_get(x_101, 0); +x_106 = lean_ctor_get(x_101, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_101); +x_107 = lean_ctor_get(x_105, 0); +lean_inc(x_107); +lean_dec(x_105); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +return x_108; +} +} +else +{ +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; uint8_t x_122; +x_109 = lean_ctor_get(x_96, 1); +lean_inc(x_109); +lean_dec(x_96); +x_110 = lean_ctor_get(x_35, 0); +lean_inc(x_110); +x_111 = l_Nat_repr(x_110); +x_112 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_112, 0, x_111); +x_113 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_113, 0, x_112); +x_114 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; +x_115 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_113); +x_116 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; +x_117 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +x_118 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_1, x_117, x_10, x_11, x_12, x_13, x_109); +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_118, 1); +lean_inc(x_120); +lean_dec(x_118); +x_121 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(x_35, x_32, x_33, x_30, x_119, x_10, x_11, x_12, x_13, x_120); +lean_dec(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) +{ +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +lean_dec(x_123); +lean_ctor_set(x_121, 0, x_124); +return x_121; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_125 = lean_ctor_get(x_121, 0); +x_126 = lean_ctor_get(x_121, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_121); +x_127 = lean_ctor_get(x_125, 0); +lean_inc(x_127); +lean_dec(x_125); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +return x_128; +} +} +} +block_68: +{ +lean_dec(x_39); +if (x_38 == 0) +{ +lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_35); +x_40 = lean_box(0); +x_41 = lean_unbox(x_30); +lean_dec(x_30); +lean_inc(x_4); +lean_inc(x_6); +x_42 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(x_6, x_37, x_36, x_4, x_41, x_32, x_33, x_40, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_33); +lean_dec(x_32); +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); +x_20 = x_43; +x_21 = x_44; +goto block_27; +} +else +{ +lean_object* x_45; lean_object* x_46; uint8_t x_47; +lean_dec(x_37); +lean_inc(x_1); +x_45 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_10, x_11, x_12, x_13, x_14); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_unbox(x_46); lean_dec(x_46); -x_48 = lean_nat_add(x_5, x_7); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_45, 1); +lean_inc(x_48); +lean_dec(x_45); +x_49 = lean_box(0); +x_50 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(x_35, x_32, x_33, x_30, x_49, x_10, x_11, x_12, x_13, x_48); +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +x_20 = x_51; +x_21 = x_52; +goto block_27; +} +else +{ +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; +x_53 = lean_ctor_get(x_45, 1); +lean_inc(x_53); +lean_dec(x_45); +x_54 = lean_ctor_get(x_35, 0); +lean_inc(x_54); +x_55 = l_Nat_repr(x_54); +x_56 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_56, 0, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +x_58 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; +x_61 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +lean_inc(x_1); +x_62 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_1, x_61, x_10, x_11, x_12, x_13, x_53); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +lean_dec(x_62); +x_65 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(x_35, x_32, x_33, x_30, x_63, x_10, x_11, x_12, x_13, x_64); +lean_dec(x_63); +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 1); +lean_inc(x_67); +lean_dec(x_65); +x_20 = x_66; +x_21 = x_67; +goto block_27; +} +} +} +block_91: +{ +uint8_t x_70; +lean_dec(x_69); +x_70 = lean_unbox(x_30); +if (x_70 == 0) +{ +if (x_36 == 0) +{ +uint8_t x_71; +x_71 = lean_nat_dec_lt(x_37, x_33); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_dec(x_37); +lean_dec(x_35); +if (lean_is_scalar(x_34)) { + x_72 = lean_alloc_ctor(0, 2, 0); +} else { + x_72 = x_34; +} +lean_ctor_set(x_72, 0, x_32); +lean_ctor_set(x_72, 1, x_33); +if (lean_is_scalar(x_31)) { + x_73 = lean_alloc_ctor(0, 2, 0); +} else { + x_73 = x_31; +} +lean_ctor_set(x_73, 0, x_30); +lean_ctor_set(x_73, 1, x_72); +lean_inc(x_4); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_4); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_75, 0, x_74); +x_20 = x_75; +x_21 = x_14; +goto block_27; +} +else +{ +lean_object* x_76; +lean_dec(x_34); +lean_dec(x_31); +x_76 = lean_box(0); +x_39 = x_76; +goto block_68; +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +lean_dec(x_37); +lean_dec(x_35); +if (lean_is_scalar(x_34)) { + x_77 = lean_alloc_ctor(0, 2, 0); +} else { + x_77 = x_34; +} +lean_ctor_set(x_77, 0, x_32); +lean_ctor_set(x_77, 1, x_33); +if (lean_is_scalar(x_31)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_31; +} +lean_ctor_set(x_78, 0, x_30); +lean_ctor_set(x_78, 1, x_77); +lean_inc(x_4); +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_4); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_80, 0, x_79); +x_20 = x_80; +x_21 = x_14; +goto block_27; +} +} +else +{ +if (x_36 == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_37); +lean_dec(x_35); +if (lean_is_scalar(x_34)) { + x_81 = lean_alloc_ctor(0, 2, 0); +} else { + x_81 = x_34; +} +lean_ctor_set(x_81, 0, x_32); +lean_ctor_set(x_81, 1, x_33); +if (lean_is_scalar(x_31)) { + x_82 = lean_alloc_ctor(0, 2, 0); +} else { + x_82 = x_31; +} +lean_ctor_set(x_82, 0, x_30); +lean_ctor_set(x_82, 1, x_81); +lean_inc(x_4); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_4); +lean_ctor_set(x_83, 1, x_82); +x_84 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_84, 0, x_83); +x_20 = x_84; +x_21 = x_14; +goto block_27; +} +else +{ +uint8_t x_85; +x_85 = lean_nat_dec_lt(x_37, x_33); +if (x_85 == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_37); +lean_dec(x_35); +if (lean_is_scalar(x_34)) { + x_86 = lean_alloc_ctor(0, 2, 0); +} else { + x_86 = x_34; +} +lean_ctor_set(x_86, 0, x_32); +lean_ctor_set(x_86, 1, x_33); +if (lean_is_scalar(x_31)) { + x_87 = lean_alloc_ctor(0, 2, 0); +} else { + x_87 = x_31; +} +lean_ctor_set(x_87, 0, x_30); +lean_ctor_set(x_87, 1, x_86); +lean_inc(x_4); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_4); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_89, 0, x_88); +x_20 = x_89; +x_21 = x_14; +goto block_27; +} +else +{ +lean_object* x_90; +lean_dec(x_34); +lean_dec(x_31); +x_90 = lean_box(0); +x_39 = x_90; +goto block_68; +} +} +} +} +} +} +else +{ +lean_object* x_134; +lean_dec(x_6); lean_dec(x_5); -x_4 = x_13; -x_5 = x_48; -x_8 = x_47; +lean_dec(x_4); +lean_dec(x_1); +x_134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_134, 0, x_9); +lean_ctor_set(x_134, 1, x_14); +return x_134; +} +} +else +{ +lean_object* x_135; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_9); +lean_ctor_set(x_135, 1, x_14); +return x_135; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = lean_ctor_get(x_5, 0); +lean_inc(x_8); +x_9 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_5); +x_10 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_5); +lean_dec(x_5); +x_11 = lean_box(x_10); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_9); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_8); +lean_ctor_set(x_13, 1, x_12); +x_14 = 1; +x_15 = lean_usize_add(x_2, x_14); +x_16 = lean_array_uset(x_7, x_2, x_13); +x_2 = x_15; +x_3 = x_16; +goto _start; +} +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(",", 1); +return x_1; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(1); +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("false", 5); +return x_1; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("(", 1); +return x_1; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(")", 1); +return x_1; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_proveFalse___closed__5; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +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_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; uint8_t x_23; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_5, 1); +lean_inc(x_8); +lean_dec(x_5); +x_9 = l_Nat_repr(x_7); +x_10 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_10); +x_12 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_ctor_get(x_8, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = l_Nat_repr(x_16); +x_19 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_12); +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_14); +x_23 = lean_unbox(x_17); +lean_dec(x_17); +if (x_23 == 0) +{ +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_24 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_22); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; +x_27 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9; +x_28 = l_Lean_MessageData_bracket(x_26, x_25, x_27); +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_15); +lean_ctor_set(x_29, 1, x_28); +x_30 = l_Lean_MessageData_bracket(x_26, x_29, x_27); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_30); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} goto _start; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -lean_dec(x_23); -lean_dec(x_13); -lean_dec(x_5); -lean_dec(x_3); -x_50 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_50, 0, x_21); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_18); -lean_ctor_set(x_51, 1, x_19); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_16); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_50); -lean_ctor_set(x_53, 1, x_52); -return x_53; -} +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; +x_32 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_22); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; +x_35 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9; +x_36 = l_Lean_MessageData_bracket(x_34, x_33, x_35); +x_37 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_37, 0, x_15); +lean_ctor_set(x_37, 1, x_36); +x_38 = l_Lean_MessageData_bracket(x_34, x_37, x_35); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_38); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; } +goto _start; } } else { -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_8; -} +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; uint8_t x_58; +x_40 = lean_ctor_get(x_1, 0); +x_41 = lean_ctor_get(x_1, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_1); +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +x_44 = l_Nat_repr(x_42); +x_45 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_45, 0, x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +x_47 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3; +x_48 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4; +x_50 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_ctor_get(x_43, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_43, 1); +lean_inc(x_52); +lean_dec(x_43); +x_53 = l_Nat_repr(x_51); +x_54 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_54, 0, x_53); +x_55 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_55, 0, x_54); +x_56 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_47); +x_57 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_49); +x_58 = lean_unbox(x_52); +lean_dec(x_52); +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; lean_object* x_66; +x_59 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7; +x_60 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_59); +x_61 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; +x_62 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9; +x_63 = l_Lean_MessageData_bracket(x_61, x_60, x_62); +x_64 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_64, 0, x_50); +lean_ctor_set(x_64, 1, x_63); +x_65 = l_Lean_MessageData_bracket(x_61, x_64, x_62); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_2); +x_1 = x_41; +x_2 = x_66; +goto _start; } else { -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_8; +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; +x_68 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11; +x_69 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_69, 0, x_57); +lean_ctor_set(x_69, 1, x_68); +x_70 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8; +x_71 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9; +x_72 = l_Lean_MessageData_bracket(x_70, x_69, x_71); +x_73 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_73, 0, x_50); +lean_ctor_set(x_73, 1, x_72); +x_74 = l_Lean_MessageData_bracket(x_70, x_73, x_71); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_2); +x_1 = x_41; +x_2 = x_75; +goto _start; } } } -static uint8_t _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__1() { +} +} +static uint8_t _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__1() { _start: { uint8_t x_1; uint8_t x_2; @@ -14096,7 +14767,7 @@ x_2 = l_instDecidableNot___rarg(x_1); return x_2; } } -static uint8_t _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__2() { +static uint8_t _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__2() { _start: { uint8_t x_1; uint8_t x_2; @@ -14105,7 +14776,7 @@ x_2 = l_instDecidableNot___rarg(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -14120,7 +14791,7 @@ x_9 = lean_usize_add(x_2, x_8); if (x_7 == 0) { uint8_t x_10; -x_10 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__1; +x_10 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__1; if (x_10 == 0) { lean_dec(x_6); @@ -14139,7 +14810,7 @@ goto _start; else { uint8_t x_14; -x_14 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__2; +x_14 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__2; if (x_14 == 0) { lean_dec(x_6); @@ -14162,204 +14833,577 @@ return x_4; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(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: { -uint8_t x_5; -x_5 = lean_nat_dec_lt(x_1, x_2); -if (x_5 == 0) +uint8_t x_10; +x_10 = lean_nat_dec_lt(x_1, x_2); +if (x_10 == 0) { -lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; -x_7 = l___private_Init_Util_0__outOfBounds___rarg(x_6); -return x_7; +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; +x_12 = l___private_Init_Util_0__outOfBounds___rarg(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_9); +return x_13; } else { -lean_object* x_8; -x_8 = lean_array_fget(x_3, x_1); -return x_8; +lean_object* x_14; lean_object* x_15; +x_14 = lean_array_fget(x_3, x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_9); +return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1() { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; 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; -x_7 = lean_box(0); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_4); -lean_ctor_set(x_8, 1, x_5); -x_9 = lean_box(x_3); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_8); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_7); -lean_ctor_set(x_11, 1, x_10); -x_12 = lean_unsigned_to_nat(1u); -lean_inc(x_2); -x_13 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(x_1, x_2, x_7, x_2, x_12, x_2, x_12, x_11); -x_14 = lean_ctor_get(x_13, 1); -lean_inc(x_14); -x_15 = lean_ctor_get(x_14, 1); -lean_inc(x_15); -lean_dec(x_14); -x_16 = lean_ctor_get(x_13, 0); -lean_inc(x_16); -lean_dec(x_13); -if (lean_obj_tag(x_16) == 0) +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(".", 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2() { +_start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_box(0); -x_19 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(x_17, x_2, x_1, x_18); +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___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) { +_start: +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_dec(x_5); +lean_inc(x_1); +x_11 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_6, x_7, x_8, x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_dec(x_1); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = lean_box(0); +x_16 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(x_2, x_3, x_4, x_15, x_6, x_7, x_8, x_9, x_14); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -lean_dec(x_17); +return x_16; +} +else +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_11, 1); +lean_inc(x_17); +lean_dec(x_11); +x_18 = lean_nat_dec_lt(x_2, x_3); +if (x_18 == 0) +{ +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; +x_19 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; +x_20 = l___private_Init_Util_0__outOfBounds___rarg(x_19); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +lean_dec(x_20); +x_22 = l_Nat_repr(x_21); +x_23 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +x_27 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2; +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_1, x_28, x_6, x_7, x_8, x_9, x_17); +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_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(x_2, x_3, x_4, x_30, x_6, x_7, x_8, x_9, x_31); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_30); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_32; +} +else +{ +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; +x_33 = lean_array_fget(x_4, x_2); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec(x_33); +x_35 = l_Nat_repr(x_34); +x_36 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_36, 0, x_35); +x_37 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_37, 0, x_36); +x_38 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +x_40 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_1, x_41, x_6, x_7, x_8, x_9, x_17); +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); +x_45 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(x_2, x_3, x_4, x_43, x_6, x_7, x_8, x_9, x_44); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_43); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_45; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_object* x_11, lean_object* x_12) { +_start: +{ +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_dec(x_7); +x_13 = lean_box(0); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_6); +x_15 = lean_box(x_4); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_13); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_unsigned_to_nat(1u); +lean_inc(x_3); +lean_inc(x_1); +x_19 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(x_1, x_2, x_3, x_13, x_3, x_18, x_3, x_18, x_17, x_8, x_9, x_10, x_11, x_12); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +x_23 = lean_ctor_get(x_20, 0); +lean_inc(x_23); +lean_dec(x_20); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_24 = lean_ctor_get(x_19, 1); +lean_inc(x_24); +lean_dec(x_19); +x_25 = lean_ctor_get(x_22, 0); +lean_inc(x_25); +lean_dec(x_22); +x_26 = lean_box(0); +x_27 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(x_1, x_25, x_3, x_2, x_26, x_8, x_9, x_10, x_11, x_24); +return x_27; +} +else +{ +uint8_t x_28; +lean_dec(x_22); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_19); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_19, 0); +lean_dec(x_29); +x_30 = lean_ctor_get(x_23, 0); +lean_inc(x_30); +lean_dec(x_23); +lean_ctor_set(x_19, 0, x_30); return x_19; } else { -lean_object* x_20; -lean_dec(x_15); -lean_dec(x_2); -lean_dec(x_1); -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); -return x_20; +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_19, 1); +lean_inc(x_31); +lean_dec(x_19); +x_32 = lean_ctor_get(x_23, 0); +lean_inc(x_32); +lean_dec(x_23); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_31); +return x_33; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(lean_object* x_1) { +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__4(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) { _start: { -lean_object* x_2; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_20 = lean_array_get_size(x_1); -x_21 = lean_unsigned_to_nat(0u); -x_22 = lean_nat_dec_lt(x_21, x_20); -if (x_22 == 0) -{ -lean_object* x_23; -lean_dec(x_20); -lean_dec(x_1); -x_23 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; -x_2 = x_23; -goto block_19; -} -else -{ -uint8_t x_24; -x_24 = lean_nat_dec_le(x_20, x_20); -if (x_24 == 0) -{ -lean_object* x_25; -lean_dec(x_20); -lean_dec(x_1); -x_25 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; -x_2 = x_25; -goto block_19; -} -else -{ -size_t x_26; size_t x_27; lean_object* x_28; lean_object* x_29; -x_26 = 0; -x_27 = lean_usize_of_nat(x_20); -lean_dec(x_20); -x_28 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; -x_29 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(x_1, x_26, x_27, x_28); -lean_dec(x_1); -x_2 = x_29; -goto block_19; +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; } } -block_19: +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__5(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) { +_start: { -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = lean_array_get_size(x_2); -x_4 = lean_unsigned_to_nat(0u); -x_5 = lean_nat_dec_lt(x_4, x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; uint8_t x_10; -x_6 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; -x_7 = l___private_Init_Util_0__outOfBounds___rarg(x_6); -x_8 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_7); -x_9 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_7); -x_10 = lean_nat_dec_eq(x_8, x_4); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -x_11 = lean_box(0); -x_12 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(x_2, x_3, x_9, x_4, x_8, x_11); -return x_12; -} -else -{ -lean_dec(x_8); +lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_dec(x_3); -lean_dec(x_2); -return x_7; -} +x_9 = lean_array_get_size(x_1); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_lt(x_10, x_9); +if (x_11 == 0) +{ +lean_object* x_40; lean_object* x_41; +x_40 = l_Lean_Elab_Tactic_Omega_Problem_instInhabitedFourierMotzkinData; +x_41 = l___private_Init_Util_0__outOfBounds___rarg(x_40); +x_12 = x_41; +goto block_39; } else { -lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; -x_13 = lean_array_fget(x_2, x_4); -x_14 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_13); -x_15 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_13); -x_16 = lean_nat_dec_eq(x_14, x_4); -if (x_16 == 0) +lean_object* x_42; +x_42 = lean_array_fget(x_1, x_10); +x_12 = x_42; +goto block_39; +} +block_39: { -lean_object* x_17; lean_object* x_18; +lean_object* x_13; uint8_t x_14; uint8_t x_15; +x_13 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_size(x_12); +x_14 = l_Lean_Elab_Tactic_Omega_Problem_FourierMotzkinData_exact(x_12); +x_15 = lean_nat_dec_eq(x_13, x_10); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_12); +x_16 = lean_box(0); +x_17 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3(x_2, x_1, x_9, x_14, x_10, x_13, x_16, x_4, x_5, x_6, x_7, x_8); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_dec(x_13); -x_17 = lean_box(0); -x_18 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(x_2, x_3, x_15, x_4, x_14, x_17); +lean_dec(x_9); +lean_dec(x_1); +lean_inc(x_2); +x_18 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_2, x_4, x_5, x_6, x_7, x_8); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +lean_dec(x_19); +if (x_20 == 0) +{ +uint8_t x_21; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_21 = !lean_is_exclusive(x_18); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_18, 0); +lean_dec(x_22); +lean_ctor_set(x_18, 0, x_12); return x_18; } else { -lean_dec(x_14); -lean_dec(x_3); -lean_dec(x_2); -return x_13; +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_dec(x_18); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_12); +lean_ctor_set(x_24, 1, x_23); +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_object* x_34; uint8_t x_35; +x_25 = lean_ctor_get(x_18, 1); +lean_inc(x_25); +lean_dec(x_18); +x_26 = lean_ctor_get(x_12, 0); +lean_inc(x_26); +x_27 = l_Nat_repr(x_26); +x_28 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_28, 0, x_27); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_28); +x_30 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2; +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +x_32 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_2, x_33, x_4, x_5, x_6, x_7, x_25); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_34, 0); +lean_dec(x_36); +lean_ctor_set(x_34, 0, x_12); +return x_34; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_12); +lean_ctor_set(x_38, 1, x_37); +return x_38; } } } } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1___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) { +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1() { _start: { -uint8_t x_9; uint8_t x_10; lean_object* x_11; -x_9 = lean_unbox(x_3); +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Selecting variable to eliminate from (idx, size, exact) triples:\n", 65); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_7 = lean_array_get_size(x_1); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_lt(x_8, x_7); +x_10 = l_Lean_Elab_Tactic_Omega_initFn____x40_Lean_Elab_Tactic_Omega_Core___hyg_5____closed__2; +x_11 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_10, x_2, x_3, x_4, x_5, x_6); +if (x_9 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +lean_dec(x_7); +lean_dec(x_1); +x_34 = lean_ctor_get(x_11, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_11, 1); +lean_inc(x_35); +lean_dec(x_11); +x_36 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; +x_37 = lean_unbox(x_34); +lean_dec(x_34); +x_12 = x_36; +x_13 = x_37; +x_14 = x_35; +goto block_33; +} +else +{ +uint8_t x_38; +x_38 = lean_nat_dec_le(x_7, x_7); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +lean_dec(x_7); +lean_dec(x_1); +x_39 = lean_ctor_get(x_11, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_11, 1); +lean_inc(x_40); +lean_dec(x_11); +x_41 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; +x_42 = lean_unbox(x_39); +lean_dec(x_39); +x_12 = x_41; +x_13 = x_42; +x_14 = x_40; +goto block_33; +} +else +{ +lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_43 = lean_ctor_get(x_11, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_11, 1); +lean_inc(x_44); +lean_dec(x_11); +x_45 = 0; +x_46 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_47 = l___auto____x40_Lean_Elab_Tactic_Omega_Core___hyg_1659____closed__4; +x_48 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4(x_1, x_45, x_46, x_47); +lean_dec(x_1); +x_49 = lean_unbox(x_43); +lean_dec(x_43); +x_12 = x_48; +x_13 = x_49; +x_14 = x_44; +goto block_33; +} +} +block_33: +{ +if (x_13 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_box(0); +x_16 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__5(x_12, x_10, x_15, x_2, x_3, x_4, x_5, x_14); +return x_16; +} +else +{ +lean_object* x_17; size_t x_18; size_t 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; +x_17 = lean_array_get_size(x_12); +x_18 = lean_usize_of_nat(x_17); +lean_dec(x_17); +x_19 = 0; +lean_inc(x_12); +x_20 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(x_18, x_19, x_12); +x_21 = lean_array_to_list(lean_box(0), x_20); +x_22 = lean_box(0); +x_23 = l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3(x_21, x_22); +x_24 = l_Lean_MessageData_ofList(x_23); +lean_dec(x_23); +x_25 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +x_27 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(x_10, x_28, x_2, x_3, x_4, x_5, x_14); +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_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__5(x_12, x_10, x_30, x_2, x_3, x_4, x_5, x_31); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); lean_dec(x_3); -x_10 = lean_unbox(x_5); +x_15 = lean_unbox(x_5); lean_dec(x_5); -x_11 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(x_1, x_2, x_9, x_4, x_10, x_6, x_7, x_8); +x_16 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__1(x_1, x_2, x_14, x_4, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +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_6); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___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, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); return x_11; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___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_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_9; -x_9 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_15; +x_15 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); +lean_dec(x_3); lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); lean_dec(x_1); -return x_9; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(x_4, x_5, x_3); +return x_6; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; size_t x_6; lean_object* x_7; @@ -14367,198 +15411,323 @@ x_5 = lean_unbox_usize(x_2); lean_dec(x_2); x_6 = lean_unbox_usize(x_3); lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2(x_1, x_5, x_6, x_4); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4(x_1, x_5, x_6, x_4); lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1___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_5; -x_5 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(x_1, x_2, x_3, x_4); +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__1(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_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -return x_5; +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_7; lean_object* x_8; -x_7 = lean_unbox(x_3); -lean_dec(x_3); -x_8 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2(x_1, x_2, x_7, x_4, x_5, x_6); +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_4); +lean_dec(x_4); +x_14 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__3(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__4___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(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) { _start: { if (lean_obj_tag(x_1) == 0) { -return x_2; +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_2); +lean_ctor_set(x_8, 1, x_7); +return x_8; } else { -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); lean_dec(x_1); -x_5 = l_Lean_Elab_Tactic_Omega_Problem_insertConstraint(x_2, x_3); -x_1 = x_4; -x_2 = x_5; +x_11 = l_Lean_Elab_Tactic_Omega_Problem_insertConstraint(x_2, x_9); +x_1 = x_10; +x_2 = x_11; goto _start; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__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: { if (lean_obj_tag(x_3) == 0) { +lean_object* x_10; lean_dec(x_1); -return x_4; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_4); +lean_ctor_set(x_10, 1, x_9); +return x_10; } else { -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_object* x_11; lean_object* x_12; -x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 1); -lean_inc(x_6); +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; +x_11 = lean_ctor_get(x_3, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); lean_dec(x_3); -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_5, 1); -lean_inc(x_8); -lean_dec(x_5); -x_9 = lean_int_neg(x_2); +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = lean_int_neg(x_2); lean_inc(x_1); -x_10 = l_Lean_Elab_Tactic_Omega_Fact_combo(x_8, x_1, x_9, x_7); -x_11 = l_Lean_Elab_Tactic_Omega_Fact_tidy(x_10); -x_12 = l_Lean_Elab_Tactic_Omega_Problem_addConstraint(x_4, x_11); -x_3 = x_6; -x_4 = x_12; +x_16 = l_Lean_Elab_Tactic_Omega_Fact_combo(x_14, x_1, x_15, x_13); +x_17 = l_Lean_Elab_Tactic_Omega_Fact_tidy(x_16); +x_18 = l_Lean_Elab_Tactic_Omega_Problem_addConstraint(x_4, x_17); +x_3 = x_12; +x_4 = x_18; goto _start; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__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) { _start: { if (lean_obj_tag(x_2) == 0) { +lean_object* x_9; lean_dec(x_1); -return x_3; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_3); +lean_ctor_set(x_9, 1, x_8); +return x_9; } else { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_4 = lean_ctor_get(x_2, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_2, 1); -lean_inc(x_5); +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; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); lean_dec(x_2); -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_4, 1); -lean_inc(x_7); -lean_dec(x_4); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); lean_inc(x_1); -x_8 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(x_6, x_7, x_1, x_3); -lean_dec(x_7); -x_2 = x_5; -x_3 = x_8; +x_14 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(x_12, x_13, x_1, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_13); +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_2 = x_11; +x_3 = x_15; +x_8 = x_16; goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_inc(x_1); -x_2 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData(x_1); -x_3 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(x_2); -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = lean_ctor_get(x_3, 2); +x_7 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData(x_1); lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 3); -lean_inc(x_6); -lean_dec(x_3); -x_7 = !lean_is_exclusive(x_1); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; 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; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_8 = lean_ctor_get(x_1, 6); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_8 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect(x_7, x_2, x_3, x_4, x_5, x_6); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); lean_dec(x_8); -x_9 = lean_ctor_get(x_1, 5); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_9, 2); +lean_inc(x_12); +x_13 = lean_ctor_get(x_9, 3); +lean_inc(x_13); lean_dec(x_9); -x_10 = lean_ctor_get(x_1, 3); -lean_dec(x_10); -x_11 = lean_ctor_get(x_1, 2); -lean_dec(x_11); -x_12 = lean_ctor_get(x_1, 1); -lean_dec(x_12); -x_13 = lean_box(0); -x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__2; -x_16 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__3; -x_17 = 1; -x_18 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__5; -lean_ctor_set(x_1, 6, x_18); -lean_ctor_set(x_1, 5, x_13); -lean_ctor_set(x_1, 3, x_16); -lean_ctor_set(x_1, 2, x_15); -lean_ctor_set(x_1, 1, x_14); -lean_ctor_set_uint8(x_1, sizeof(void*)*7, x_17); -x_19 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(x_4, x_1); -x_20 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(x_6, x_5, x_19); -return x_20; +x_14 = !lean_is_exclusive(x_1); +if (x_14 == 0) +{ +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; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_15 = lean_ctor_get(x_1, 6); +lean_dec(x_15); +x_16 = lean_ctor_get(x_1, 5); +lean_dec(x_16); +x_17 = lean_ctor_get(x_1, 3); +lean_dec(x_17); +x_18 = lean_ctor_get(x_1, 2); +lean_dec(x_18); +x_19 = lean_ctor_get(x_1, 1); +lean_dec(x_19); +x_20 = lean_box(0); +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__2; +x_23 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__3; +x_24 = 1; +x_25 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__5; +lean_ctor_set(x_1, 6, x_25); +lean_ctor_set(x_1, 5, x_20); +lean_ctor_set(x_1, 3, x_23); +lean_ctor_set(x_1, 2, x_22); +lean_ctor_set(x_1, 1, x_21); +lean_ctor_set_uint8(x_1, sizeof(void*)*7, x_24); +x_26 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(x_11, x_1, x_2, x_3, x_4, x_5, x_10); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(x_13, x_12, x_27, x_2, x_3, x_4, x_5, x_28); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +return x_29; } else { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_21 = lean_ctor_get(x_1, 0); -x_22 = lean_ctor_get(x_1, 4); -lean_inc(x_22); -lean_inc(x_21); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_29); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t 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; +x_34 = lean_ctor_get(x_1, 0); +x_35 = lean_ctor_get(x_1, 4); +lean_inc(x_35); +lean_inc(x_34); lean_dec(x_1); -x_23 = lean_box(0); -x_24 = lean_unsigned_to_nat(0u); -x_25 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__2; -x_26 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__3; -x_27 = 1; -x_28 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__5; -x_29 = lean_alloc_ctor(0, 7, 1); -lean_ctor_set(x_29, 0, x_21); -lean_ctor_set(x_29, 1, x_24); -lean_ctor_set(x_29, 2, x_25); -lean_ctor_set(x_29, 3, x_26); -lean_ctor_set(x_29, 4, x_22); -lean_ctor_set(x_29, 5, x_23); -lean_ctor_set(x_29, 6, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*7, x_27); -x_30 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(x_4, x_29); -x_31 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(x_6, x_5, x_30); -return x_31; +x_36 = lean_box(0); +x_37 = lean_unsigned_to_nat(0u); +x_38 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__2; +x_39 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__3; +x_40 = 1; +x_41 = l_Lean_Elab_Tactic_Omega_Problem_solveEasyEquality___closed__5; +x_42 = lean_alloc_ctor(0, 7, 1); +lean_ctor_set(x_42, 0, x_34); +lean_ctor_set(x_42, 1, x_37); +lean_ctor_set(x_42, 2, x_38); +lean_ctor_set(x_42, 3, x_39); +lean_ctor_set(x_42, 4, x_35); +lean_ctor_set(x_42, 5, x_36); +lean_ctor_set(x_42, 6, x_41); +lean_ctor_set_uint8(x_42, sizeof(void*)*7, x_40); +x_43 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(x_11, x_42, x_2, x_3, x_4, x_5, x_10); +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_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(x_13, x_12, x_44, x_2, x_3, x_4, x_5, x_45); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_46)) { + lean_ctor_release(x_46, 0); + lean_ctor_release(x_46, 1); + x_49 = x_46; +} else { + lean_dec_ref(x_46); + x_49 = lean_box(0); +} +if (lean_is_scalar(x_49)) { + x_50 = lean_alloc_ctor(0, 2, 0); +} else { + x_50 = x_49; +} +lean_ctor_set(x_50, 0, x_47); +lean_ctor_set(x_50, 1, x_48); +return x_50; } } } -LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1___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) { _start: { -lean_object* x_5; -x_5 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__2(x_1, x_2, x_3, x_4); +lean_object* x_8; +x_8 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__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_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__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_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_2); -return x_5; +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3___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) { +_start: +{ +lean_object* x_9; +x_9 = l_List_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_9; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_runOmega___lambda__1(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) { @@ -14657,8 +15826,9 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_Justification_toString___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); +x_1 = l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); return x_2; } } @@ -14666,8 +15836,8 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__4( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___closed__1; -x_2 = lean_alloc_ctor(3, 1, 0); +x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } @@ -14675,19 +15845,21 @@ return x_2; static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__4; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2; +x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__4; +x_3 = lean_alloc_ctor(7, 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_Elab_Tactic_Omega_Problem_runOmega___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2; -x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__5; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__5; +x_2 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; x_3 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -14697,18 +15869,6 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__6; -x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; -x_3 = lean_alloc_ctor(7, 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_Elab_Tactic_Omega_Problem_runOmega___closed__8() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___closed__2; x_2 = lean_alloc_ctor(3, 1, 0); @@ -14716,34 +15876,34 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__7; 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_Elab_Tactic_Omega_Problem_runOmega___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2; -x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__8; x_3 = lean_alloc_ctor(7, 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_Elab_Tactic_Omega_Problem_runOmega___closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10; -x_2 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; +x_1 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9; +x_2 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; x_3 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -14780,7 +15940,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean x_18 = lean_ctor_get(x_11, 1); lean_inc(x_18); lean_dec(x_11); -x_19 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__7; +x_19 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__6; x_20 = l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(x_10, x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_18); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); @@ -14815,7 +15975,7 @@ x_34 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2; x_35 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; +x_36 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; x_37 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_37, 0, x_35); lean_ctor_set(x_37, 1, x_36); @@ -14831,7 +15991,7 @@ return x_41; else { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__11; +x_42 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10; x_43 = l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(x_10, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_24); x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); @@ -14848,11 +16008,20 @@ return x_46; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination___lambda__1(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: { -lean_object* x_11; lean_object* x_12; +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_dec(x_2); -x_11 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(x_1); -x_12 = l_Lean_Elab_Tactic_Omega_Problem_runOmega(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_11 = l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkin(x_1, x_6, x_7, x_8, x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_Elab_Tactic_Omega_Problem_runOmega(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_14; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1() { @@ -14936,7 +16105,7 @@ x_29 = l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__2; x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__3; +x_31 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3; x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -15427,8 +16596,44 @@ l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__4 = _i lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_instToStringFourierMotzkinData___closed__4); l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___lambda__2___closed__1 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___lambda__2___closed__1(); lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinData___spec__2___lambda__2___closed__1); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__1(); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__2___closed__2(); +l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__1); +l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__2); +l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3(); +lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__1___closed__3); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__1); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__2); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__3); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__4); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__5); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__6); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__7); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__8); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__9); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__10); +l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11 = _init_l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__3___closed__11); +l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__1(); +l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___spec__4___closed__2(); +l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__1); +l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2 = _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___lambda__2___closed__2); +l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1 = _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__1); +l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2 = _init_l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_fourierMotzkinSelect___closed__2); l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__1 = _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__1); l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2 = _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__2(); @@ -15449,8 +16654,6 @@ l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9 = _init_l_Lean_Elab_Tactic lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__9); l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10 = _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__10); -l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__11 = _init_l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_runOmega___closed__11); l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1 = _init_l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__1); l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__2 = _init_l_Lean_Elab_Tactic_Omega_Problem_elimination___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c index f7256ae9c5..d4ce3ad440 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c @@ -22,30 +22,33 @@ static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__3 lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__2; -lean_object* l_Lean_Elab_Tactic_Omega_intCast_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___boxed(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_Omega_MetaProblem_addIntEquality___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12; lean_object* l_Lean_mkNatLit(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(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_Elab_Tactic_Omega_omegaImpl___lambda__3(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_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof(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_Omega_MetaProblem_addFact___lambda__1___closed__66; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; lean_object* l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Syntax_matchesIdent(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; @@ -56,25 +59,29 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7_ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl(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_Omega_omegaImpl___lambda__4___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7(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*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4(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_Omega_MetaProblem_pushNot___closed__43; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2(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_Omega_MetaProblem_pushNot___closed__28; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__11; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__3; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__7___closed__2; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal(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_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4; lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__6___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_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__49; @@ -88,40 +95,45 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__3(lean_o static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__10; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__5___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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +lean_object* l_Lean_Expr_lit___override(lean_object*); lean_object* l_Lean_Elab_Term_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Lean_Elab_Tactic_Omega_withoutModifyingState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__2; static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_OmegaM_run___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Omega_natCast_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__2; lean_object* lean_mk_array(lean_object*, lean_object*); -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1; uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Tactic_Omega_MetaProblem_addFact___spec__1___boxed(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_Omega_asLinearComboImpl_handleNatCast___closed__9; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__1(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_Omega_MetaProblem_addFact___lambda__1___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega(lean_object*); -lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__15; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_evalOmega(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_Omega_MetaProblem_addFact___lambda__1___closed__5; @@ -147,37 +159,40 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6( static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53; lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___lambda__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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55; -lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__45; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__2; -static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omega(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1(lean_object*); -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__4; lean_object* l_Lean_HashSetImp_insert___at_Lean_CollectLevelParams_visitExpr___spec__3(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__4; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_instInhabitedMetaProblem; @@ -186,21 +201,22 @@ lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__1___boxed(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_Omega_asLinearComboImpl_handleNatCast___closed__37; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___lambda__1(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_Omega_MetaProblem_addFact___lambda__1___closed__33; lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1; extern lean_object* l_Lean_Omega_LinearCombo_instInhabitedLinearCombo; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__20; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__2; +uint8_t lean_int_dec_le(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__5; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; @@ -209,23 +225,20 @@ static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_ lean_object* l_Lean_Level_ofNat(lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__13; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__50; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__7___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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53; lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg___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_HashMap_insert___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality(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_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2; uint8_t l_Lean_Expr_hasMVar(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__2___lambda__1(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_Elab_Tactic_Omega_omegaImpl___lambda__2(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_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__2; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__11___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_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -234,31 +247,32 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__7__ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__1; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl(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_Omega_asLinearComboImpl_handleNatCast___closed__29; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__4; -static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42; static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__6; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__14; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__19; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__3(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__3; lean_object* l_Lean_Elab_Tactic_Omega_Problem_elimination(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_Omega_elabOmegaConfig___closed__8; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6; lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__1___boxed(lean_object*); -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq(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_Elab_Tactic_Omega_elabOmegaConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__28; @@ -266,39 +280,40 @@ static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__8 LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(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_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8; uint8_t lean_expr_eqv(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54; static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed(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_Elab_Tactic_Omega_MetaProblem_pushNot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2; -lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__6; -static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5; lean_object* l_StateRefT_x27_lift___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3; lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast(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_PersistentArray_forInAux___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(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_Omega_MetaProblem_addFact___lambda__1___closed__24; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___lambda__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__2___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67; static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__3; lean_object* l_Lean_Omega_LinearCombo_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -308,46 +323,46 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_Omega static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__5; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__13; static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__13; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__1; LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__1(lean_object*); lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71; +lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f(lean_object*); lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__9(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_Elab_Tactic_Omega_omegaImpl___lambda__1(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_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__18; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__7; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13; uint8_t l_List_elem___at_Lean_CollectLevelParams_visitExpr___spec__2(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__10; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7; lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___lambda__2(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*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__9; lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(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_Omega_asLinearComboImpl_handleNatCast___closed__46; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___lambda__1(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_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67; LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__3(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_Omega_mkEvalRflProof___closed__21; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqTrans(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_Omega_cases_u2082___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__4___boxed(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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__57; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__58; uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___lambda__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*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26; lean_object* l_Lean_Meta_mkDecideProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___lambda__2(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*); @@ -359,20 +374,20 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___clo LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___spec__1(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_Omega_splitDisjunction___closed__6; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___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_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__6___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instInhabited___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(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_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(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_Omega_MetaProblem_addFact___lambda__1___closed__31; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9; extern lean_object* l_Lean_levelZero; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__5; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__7; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1; extern lean_object* l_Lean_instInhabitedExpr; @@ -386,10 +401,10 @@ uint64_t l_Lean_Expr_hash(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__5; lean_object* l_List_foldl___at_String_join___spec__1(lean_object*, lean_object*); lean_object* lean_thunk_get_own(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14; lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52; @@ -397,32 +412,35 @@ static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_trivial; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_MVarId_elabFalseOrByContra___spec__1___rarg(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__3___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41; static lean_object* l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__2; lean_object* l_Lean_HashSet_toList___at_Lean_Elab_Tactic_Omega_lookup___spec__3(lean_object*); -lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkOptionalNode(lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_Problem_addEquality(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__1(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_Omega_mkInt___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__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_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1(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*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; @@ -432,12 +450,12 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elab static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__9; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__8; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__51; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; extern lean_object* l_Lean_Meta_instMonadMetaM; @@ -455,42 +473,46 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___closed lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__2; uint8_t l_List_decidableBAll___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaDefault(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_Omega_asLinearComboImpl_handleNatCast___closed__17; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_Omega_cases_u2082___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7(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_Omega_asLinearComboImpl_handleFinVal___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; size_t lean_hashmap_mk_idx(lean_object*, uint64_t); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73; lean_object* lean_mk_thunk(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__54; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__2; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__5; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; lean_object* l_Lean_MessageData_ofExpr(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53; uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__4___boxed(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_Elab_Tactic_Omega_splitDisjunction___lambda__7___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__6; lean_object* l_Lean_Elab_Tactic_Omega_lookup(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_Omega_MetaProblem_pushNot___closed__55; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__22; -static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__6(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8; LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__2(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_processedFacts___default; @@ -502,19 +524,19 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___clo static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_cases_u2082___closed__5; lean_object* l_Lean_Omega_LinearCombo_neg(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10; +static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__4; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70; lean_object* lean_nat_abs(lean_object*); uint8_t l_Lean_Elab_Tactic_Omega_Problem_isEmpty(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__15; @@ -523,28 +545,31 @@ static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__2; lean_object* l_Lean_Omega_LinearCombo_coordinate(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__42; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__11; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__3(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*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___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*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__5___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__1; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39; lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___spec__3___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52; lean_object* l_Lean_Elab_Tactic_Omega_Problem_addInequality(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; +lean_object* lean_nat_mod(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(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_Omega_MetaProblem_addFact___lambda__1___closed__65; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkRawNatLit(lean_object*); lean_object* l_Lean_PersistentHashMap_insert___at_Lean_MVarId_assign___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkListLit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__1; @@ -553,21 +578,27 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___c lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__14; +lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__5___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_Elab_Tactic_Omega_MetaProblem_pushNot___closed__18; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3; +static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___lambda__4(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_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f(lean_object*); lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg(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_Omega_splitDisjunction___closed__4; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Int_toNat(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; uint8_t l_Lean_Syntax_isNone(lean_object*); @@ -586,21 +617,23 @@ lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__7; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__17; LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1(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_Omega_elabOmegaConfig___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; lean_object* l_Lean_Meta_Cases_cases(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__55; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_facts___default; -static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Array_ofSubarray___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__46; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__4; @@ -608,7 +641,6 @@ lean_object* l_Lean_Expr_int_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__34; lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality(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_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; @@ -619,7 +651,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_Om LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5(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_Elab_Tactic_Omega_asLinearComboImpl_rewrite___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* l_String_intercalate(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58; +static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); @@ -630,13 +662,16 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Ta LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___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_Lean_Elab_Tactic_Omega_evalOmega___lambda__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36; size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__5; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(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_Elab_Tactic_Omega_mkInt_mkNat___closed__5; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(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*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRange___closed__7; @@ -651,6 +686,8 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___clo static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; +static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__1(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_Omega_MetaProblem_addFact___lambda__1___closed__47; lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___boxed(lean_object*); @@ -660,25 +697,27 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__10; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__42; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__6; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22; lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__17; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__52; -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6; uint8_t lean_int_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__19; LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__8(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30; lean_object* l_Lean_Expr_getAppFnArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_elabOmegaConfig___spec__10___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_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__2; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction(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_Omega_asLinearComboImpl___lambda__8___closed__18; lean_object* l_Lean_HashMap_toList___at_Lean_Elab_Tactic_Omega_Problem_instToStringProblem___spec__1(lean_object*); @@ -692,14 +731,16 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_Elab_Tactic_O static lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_int_neg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48; lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -714,44 +755,45 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___clo lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__4; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80; uint8_t l_Lean_Expr_isFVar(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59; uint8_t l_Lean_HashSetImp_contains___at_Lean_CollectLevelParams_visitExpr___spec__1(lean_object*, lean_object*); lean_object* l_List_enumFrom___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__25; -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__30; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearCombo(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_Omega_asLinearComboImpl___lambda__8___closed__49; -lean_object* l_String_toSubstring_x27(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51; +lean_object* l_Lean_Expr_nat_x3f(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__6___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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Tactic_replaceMainGoal(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_Omega_asLinearComboImpl_handleNatCast___closed__11; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___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*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; lean_object* l_Lean_Omega_LinearCombo_sub(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74; LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___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_MVarId_withContext___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___rarg(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_Omega_asLinearComboImpl___lambda__5___closed__1; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69; +static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63; lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_MVarId_falseOrByContra(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3; -static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20; lean_object* l_Lean_Meta_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__6(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*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_mkInt___closed__4; lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__2(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*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__3; LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_Elab_Tactic_Omega_asLinearCombo___spec__5(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49; +static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13; static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1; static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1() { _start: @@ -3504,6 +3546,243 @@ lean_dec(x_1); return x_9; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("OfNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Level_ofNat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4; +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_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Int", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instOfNat", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt_mkNat(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; lean_object* x_7; +x_2 = l_Lean_mkRawNatLit(x_1); +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12; +lean_inc(x_2); +x_4 = l_Lean_Expr_app___override(x_3, x_2); +x_5 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6; +x_6 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_7 = l_Lean_mkApp3(x_5, x_6, x_2, x_4); +return x_7; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("neg", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt___closed__2; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instNegInt", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__6; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__7; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_3 = lean_int_dec_le(x_2, x_1); +if (x_3 == 0) +{ +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; +x_4 = lean_int_neg(x_1); +x_5 = l_Int_toNat(x_4); +lean_dec(x_4); +x_6 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat(x_5); +x_7 = l_Lean_Elab_Tactic_Omega_mkInt___closed__5; +x_8 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_9 = l_Lean_Elab_Tactic_Omega_mkInt___closed__8; +x_10 = l_Lean_mkApp3(x_7, x_8, x_6, x_9); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = l_Int_toNat(x_1); +x_12 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat(x_11); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkInt___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt(x_1); +lean_dec(x_1); +return x_2; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1() { _start: { @@ -3692,39 +3971,11 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8() _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Int", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11() { -_start: -{ -lean_object* x_1; x_1 = lean_mk_string_from_bytes("List", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9() { _start: { lean_object* x_1; @@ -3732,17 +3983,17 @@ x_1 = lean_mk_string_from_bytes("nil", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3754,13 +4005,41 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__12; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_3 = l_Lean_Expr_app___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("cons", 4); +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14; -x_3 = l_Lean_Expr_const___override(x_1, x_2); +x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } @@ -3769,25 +4048,27 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__15; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; -x_3 = l_Lean_Expr_app___override(x_1, x_2); +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; +x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("cons", 4); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_3 = l_Lean_Expr_app___override(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__11; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -3796,60 +4077,13 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__14; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_nat_to_int(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20() { _start: { lean_object* x_1; @@ -3857,22 +4091,22 @@ x_1 = lean_mk_string_from_bytes("negSucc", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; +x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -3896,17 +4130,17 @@ lean_inc(x_13); lean_dec(x_11); x_14 = lean_ctor_get(x_2, 0); x_15 = lean_ctor_get(x_2, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); -x_19 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_19 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_20 = lean_int_dec_lt(x_14, x_19); if (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_21 = lean_nat_abs(x_14); x_22 = l_Lean_mkNatLit(x_21); -x_23 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_23 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_24 = l_Lean_Expr_app___override(x_23, x_22); x_25 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_26 = l_Lean_Expr_app___override(x_25, x_24); @@ -3924,7 +4158,7 @@ x_32 = lean_unsigned_to_nat(1u); x_33 = lean_nat_sub(x_31, x_32); lean_dec(x_31); x_34 = l_Lean_mkNatLit(x_33); -x_35 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_35 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_36 = l_Lean_Expr_app___override(x_35, x_34); x_37 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_38 = l_Lean_Expr_app___override(x_37, x_36); @@ -4049,7 +4283,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__9; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -4494,444 +4728,6 @@ return x_50; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Expr.app", 8); -return x_1; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Expr", 4); -return x_1; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("app", 3); -return x_1; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3; -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3; -x_3 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6; -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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8; -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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8; -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9; -x_3 = lean_alloc_ctor(1, 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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7; -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10; -x_3 = lean_alloc_ctor(1, 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_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("null", 4); -return x_1; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -uint8_t x_9; -x_9 = lean_usize_dec_eq(x_4, x_5); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; uint8_t 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; size_t x_24; size_t x_25; -x_10 = lean_array_uget(x_3, x_4); -x_11 = lean_ctor_get(x_7, 5); -lean_inc(x_11); -x_12 = 0; -x_13 = l_Lean_SourceInfo_fromRef(x_11, x_12); -x_14 = lean_ctor_get(x_7, 2); -lean_inc(x_14); -x_15 = lean_ctor_get(x_7, 1); -lean_inc(x_15); -x_16 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5; -x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); -x_18 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2; -x_19 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11; -lean_inc(x_13); -x_20 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_20, 0, x_13); -lean_ctor_set(x_20, 1, x_18); -lean_ctor_set(x_20, 2, x_17); -lean_ctor_set(x_20, 3, x_19); -x_21 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13; -lean_inc(x_13); -x_22 = l_Lean_Syntax_node2(x_13, x_21, x_6, x_10); -lean_inc(x_1); -x_23 = l_Lean_Syntax_node2(x_13, x_1, x_20, x_22); -x_24 = 1; -x_25 = lean_usize_add(x_4, x_24); -x_4 = x_25; -x_6 = x_23; -goto _start; -} -else -{ -lean_object* x_27; -lean_dec(x_7); -lean_dec(x_1); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_6); -lean_ctor_set(x_27, 1, x_8); -return x_27; -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Parser", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Term", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1; -x_3 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2; -x_4 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mkAppN", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term#[_,]", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("term", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9; -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_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__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_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3; -lean_inc(x_1); -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); -lean_dec(x_1); -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; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5; -x_11 = l_Lean_Syntax_matchesIdent(x_9, x_10); -lean_dec(x_9); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_2); -lean_dec(x_1); -x_12 = lean_box(1); -x_13 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set(x_13, 1, x_3); -return x_13; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_14 = lean_unsigned_to_nat(1u); -x_15 = l_Lean_Syntax_getArg(x_1, x_14); -lean_dec(x_1); -x_16 = lean_unsigned_to_nat(2u); -lean_inc(x_15); -x_17 = l_Lean_Syntax_matchesNull(x_15, x_16); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; -lean_dec(x_15); -lean_dec(x_2); -x_18 = lean_box(1); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_3); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_20 = l_Lean_Syntax_getArg(x_15, x_8); -x_21 = l_Lean_Syntax_getArg(x_15, x_14); -lean_dec(x_15); -x_22 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7; -lean_inc(x_21); -x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_2); -x_24 = lean_box(1); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_3); -return x_25; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_26 = l_Lean_Syntax_getArg(x_21, x_14); -lean_dec(x_21); -x_27 = l_Lean_Syntax_getArgs(x_26); -lean_dec(x_26); -x_28 = l_Lean_Syntax_TSepArray_getElems___rarg(x_27); -lean_dec(x_27); -x_29 = lean_array_get_size(x_28); -x_30 = lean_nat_dec_lt(x_8, x_29); -if (x_30 == 0) -{ -lean_object* x_31; -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_2); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_20); -lean_ctor_set(x_31, 1, x_3); -return x_31; -} -else -{ -uint8_t x_32; -x_32 = lean_nat_dec_le(x_29, x_29); -if (x_32 == 0) -{ -lean_object* x_33; -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_2); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_20); -lean_ctor_set(x_33, 1, x_3); -return x_33; -} -else -{ -size_t x_34; size_t x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_34 = 0; -x_35 = lean_usize_of_nat(x_29); -lean_dec(x_29); -x_36 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10; -x_37 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1(x_4, x_36, x_28, x_34, x_35, x_20, x_2, x_3); -lean_dec(x_28); -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -return x_37; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; -} -} -} -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___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) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_10 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1(x_1, x_2, x_3, x_9, x_10, x_6, x_7, x_8); -lean_dec(x_3); -lean_dec(x_2); -return x_11; -} -} static lean_object* _init_l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__1() { _start: { @@ -5069,7 +4865,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_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__3; x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__4; -x_3 = lean_unsigned_to_nat(263u); +x_3 = lean_unsigned_to_nat(246u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__5; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6308,7 +6104,7 @@ LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__1(lean_ _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_3 = lean_int_dec_eq(x_1, x_2); return x_3; } @@ -6355,7 +6151,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6403,13 +6199,13 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); x_26 = lean_apply_8(x_4, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_19); -x_111 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_111 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_112 = lean_int_dec_lt(x_24, x_111); if (x_112 == 0) { 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; uint8_t x_120; x_113 = lean_nat_abs(x_24); -x_114 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +x_114 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; lean_inc(x_1); x_115 = l_Lean_Expr_const___override(x_114, x_1); x_116 = l_Lean_mkNatLit(x_113); @@ -6445,7 +6241,7 @@ x_125 = lean_nat_abs(x_24); x_126 = lean_unsigned_to_nat(1u); x_127 = lean_nat_sub(x_125, x_126); lean_dec(x_125); -x_128 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; +x_128 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; lean_inc(x_1); x_129 = l_Lean_Expr_const___override(x_128, x_1); x_130 = l_Lean_mkNatLit(x_127); @@ -6483,7 +6279,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_26, 1); lean_inc(x_30); lean_dec(x_26); -x_31 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23; +x_31 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__18; x_32 = l_Lean_Expr_const___override(x_31, x_1); x_33 = l_Lean_mkNatLit(x_28); x_34 = l_Lean_Expr_app___override(x_32, x_33); @@ -6670,7 +6466,7 @@ lean_inc(x_71); x_72 = lean_ctor_get(x_26, 1); lean_inc(x_72); lean_dec(x_26); -x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26; +x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; x_74 = l_Lean_Expr_const___override(x_73, x_1); x_75 = l_Lean_mkNatLit(x_70); x_76 = l_Lean_Expr_app___override(x_74, x_75); @@ -7076,8 +6872,8 @@ block_74: 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; uint8_t x_48; lean_dec(x_27); x_28 = lean_box(0); -x_29 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_29 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; x_31 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_29, x_30, x_26); lean_dec(x_26); x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__6; @@ -7316,7 +7112,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7337,15 +7133,15 @@ _start: 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; uint8_t x_19; x_12 = lean_ctor_get(x_1, 0); x_13 = lean_ctor_get(x_1, 1); -x_14 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_14 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_15 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; x_16 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_14, x_15, x_13); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); x_17 = lean_apply_8(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_18 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_18 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_19 = lean_int_dec_lt(x_12, x_18); if (x_19 == 0) { @@ -7359,7 +7155,7 @@ lean_inc(x_21); lean_dec(x_17); x_22 = lean_nat_abs(x_12); x_23 = l_Lean_mkNatLit(x_22); -x_24 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_24 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_25 = l_Lean_Expr_app___override(x_24, x_23); x_26 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_27 = l_Lean_Expr_app___override(x_26, x_25); @@ -7498,7 +7294,7 @@ x_56 = lean_unsigned_to_nat(1u); x_57 = lean_nat_sub(x_55, x_56); lean_dec(x_55); x_58 = l_Lean_mkNatLit(x_57); -x_59 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_59 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_60 = l_Lean_Expr_app___override(x_59, x_58); x_61 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_62 = l_Lean_Expr_app___override(x_61, x_60); @@ -7668,7 +7464,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7680,8 +7476,8 @@ _start: 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_66; lean_object* x_67; lean_object* x_109; uint8_t x_110; x_14 = lean_ctor_get(x_1, 0); x_15 = lean_ctor_get(x_1, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); x_19 = lean_ctor_get(x_2, 0); x_20 = lean_ctor_get(x_2, 1); @@ -7694,14 +7490,14 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_22 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -x_109 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_109 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_110 = lean_int_dec_lt(x_14, x_109); if (x_110 == 0) { 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; uint8_t x_118; x_111 = lean_nat_abs(x_14); x_112 = l_Lean_mkNatLit(x_111); -x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_114 = l_Lean_Expr_app___override(x_113, x_112); x_115 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_116 = l_Lean_Expr_app___override(x_115, x_114); @@ -7735,7 +7531,7 @@ x_124 = lean_unsigned_to_nat(1u); x_125 = lean_nat_sub(x_123, x_124); lean_dec(x_123); x_126 = l_Lean_mkNatLit(x_125); -x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_128 = l_Lean_Expr_app___override(x_127, x_126); x_129 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_130 = l_Lean_Expr_app___override(x_129, x_128); @@ -7771,7 +7567,7 @@ x_26 = lean_ctor_get(x_22, 1); lean_inc(x_26); lean_dec(x_22); x_27 = l_Lean_mkNatLit(x_24); -x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_29 = l_Lean_Expr_app___override(x_28, x_27); x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_31 = l_Lean_Expr_app___override(x_30, x_29); @@ -7955,7 +7751,7 @@ x_69 = lean_ctor_get(x_22, 1); lean_inc(x_69); lean_dec(x_22); x_70 = l_Lean_mkNatLit(x_67); -x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_72 = l_Lean_Expr_app___override(x_71, x_70); x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_74 = l_Lean_Expr_app___override(x_73, x_72); @@ -8174,7 +7970,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -8186,8 +7982,8 @@ _start: 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_66; lean_object* x_67; lean_object* x_109; uint8_t x_110; x_14 = lean_ctor_get(x_1, 0); x_15 = lean_ctor_get(x_1, 1); -x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__16; -x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__20; +x_16 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__13; +x_17 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__17; x_18 = l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_Omega_instToExprLinearCombo___spec__1(x_16, x_17, x_15); x_19 = lean_ctor_get(x_2, 0); x_20 = lean_ctor_get(x_2, 1); @@ -8200,14 +7996,14 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); x_22 = lean_apply_8(x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -x_109 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_109 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_110 = lean_int_dec_lt(x_14, x_109); if (x_110 == 0) { 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; uint8_t x_118; x_111 = lean_nat_abs(x_14); x_112 = l_Lean_mkNatLit(x_111); -x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_113 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_114 = l_Lean_Expr_app___override(x_113, x_112); x_115 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_116 = l_Lean_Expr_app___override(x_115, x_114); @@ -8241,7 +8037,7 @@ x_124 = lean_unsigned_to_nat(1u); x_125 = lean_nat_sub(x_123, x_124); lean_dec(x_123); x_126 = l_Lean_mkNatLit(x_125); -x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_127 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_128 = l_Lean_Expr_app___override(x_127, x_126); x_129 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_130 = l_Lean_Expr_app___override(x_129, x_128); @@ -8277,7 +8073,7 @@ x_26 = lean_ctor_get(x_22, 1); lean_inc(x_26); lean_dec(x_22); x_27 = l_Lean_mkNatLit(x_24); -x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; +x_28 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__19; x_29 = l_Lean_Expr_app___override(x_28, x_27); x_30 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_31 = l_Lean_Expr_app___override(x_30, x_29); @@ -8461,7 +8257,7 @@ x_69 = lean_ctor_get(x_22, 1); lean_inc(x_69); lean_dec(x_22); x_70 = l_Lean_mkNatLit(x_67); -x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; +x_71 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; x_72 = l_Lean_Expr_app___override(x_71, x_70); x_73 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__7; x_74 = l_Lean_Expr_app___override(x_73, x_72); @@ -8656,7 +8452,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Neg", 3); +x_1 = lean_mk_string_from_bytes("HMul", 4); return x_1; } } @@ -8664,7 +8460,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMul", 4); +x_1 = lean_mk_string_from_bytes("HMod", 4); return x_1; } } @@ -8672,7 +8468,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMod", 4); +x_1 = lean_mk_string_from_bytes("HDiv", 4); return x_1; } } @@ -8680,7 +8476,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HDiv", 4); +x_1 = lean_mk_string_from_bytes("Min", 3); return x_1; } } @@ -8688,7 +8484,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Min", 3); +x_1 = lean_mk_string_from_bytes("Max", 3); return x_1; } } @@ -8696,7 +8492,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Max", 3); +x_1 = lean_mk_string_from_bytes("Nat", 3); return x_1; } } @@ -8704,7 +8500,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Nat", 3); +x_1 = lean_mk_string_from_bytes("Prod", 4); return x_1; } } @@ -8712,7 +8508,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Prod", 4); +x_1 = lean_mk_string_from_bytes("fst", 3); return x_1; } } @@ -8720,7 +8516,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("fst", 3); +x_1 = lean_mk_string_from_bytes("snd", 3); return x_1; } } @@ -8728,31 +8524,23 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8 _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("snd", 3); +x_1 = lean_mk_string_from_bytes("snd_mk", 6); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("snd_mk", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14() { _start: { lean_object* x_1; @@ -8760,19 +8548,19 @@ x_1 = lean_mk_string_from_bytes("fst_mk", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16() { _start: { lean_object* x_1; @@ -8780,53 +8568,7 @@ x_1 = lean_mk_string_from_bytes("cast", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("OfNat", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("natAbs", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_natAbs", 12); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17() { _start: { lean_object* x_1; @@ -8834,404 +8576,7 @@ x_1 = lean_mk_string_from_bytes("max", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_max", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("min", 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_min", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_snd_mk", 12); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_fst_mk", 12); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hSub", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_sub_sub", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hMod", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_emod", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("natCast_ofNat", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44() { -_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hDiv", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_ediv", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__49() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hMul", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_mul", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hAdd", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_add", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("succ", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_succ", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Level_ofNat(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63; -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_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64; -x_3 = l_Lean_Expr_const___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18() { _start: { lean_object* x_1; @@ -9239,27 +8584,35 @@ x_1 = lean_mk_string_from_bytes("max_def", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("min", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22() { _start: { lean_object* x_1; @@ -9267,27 +8620,45 @@ x_1 = lean_mk_string_from_bytes("min_def", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hDiv", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27() { _start: { lean_object* x_1; @@ -9295,27 +8666,27 @@ x_1 = lean_mk_string_from_bytes("ediv_zero", 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__28; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30() { _start: { lean_object* x_1; @@ -9323,27 +8694,45 @@ x_1 = lean_mk_string_from_bytes("ediv_neg", 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__31; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hMod", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35() { _start: { lean_object* x_1; @@ -9351,35 +8740,35 @@ x_1 = lean_mk_string_from_bytes("emod_def", 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__36; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("neg", 3); +x_1 = lean_mk_string_from_bytes("hMul", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39() { _start: { lean_object* x_1; @@ -9387,13 +8776,29 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_atomsCoeffs___boxed), return x_1; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hSub", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hAdd", 4); +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8(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: { lean_object* x_11; lean_dec(x_2); lean_inc(x_1); -x_11 = l_Lean_Expr_int_x3f(x_1); +x_11 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_1); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -9437,42 +8842,42 @@ x_23 = lean_string_dec_eq(x_19, x_22); if (x_23 == 0) { lean_object* x_24; uint8_t x_25; -x_24 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_24 = l_Lean_Elab_Tactic_Omega_mkInt___closed__2; x_25 = lean_string_dec_eq(x_19, x_24); if (x_25 == 0) { lean_object* x_26; uint8_t x_27; -x_26 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_26 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; x_27 = lean_string_dec_eq(x_19, x_26); if (x_27 == 0) { lean_object* x_28; uint8_t x_29; -x_28 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_28 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; x_29 = lean_string_dec_eq(x_19, x_28); if (x_29 == 0) { lean_object* x_30; uint8_t x_31; -x_30 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; +x_30 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; x_31 = lean_string_dec_eq(x_19, x_30); if (x_31 == 0) { lean_object* x_32; uint8_t x_33; -x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; +x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; x_33 = lean_string_dec_eq(x_19, x_32); if (x_33 == 0) { lean_object* x_34; uint8_t x_35; -x_34 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_34 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; x_35 = lean_string_dec_eq(x_19, x_34); if (x_35 == 0) { lean_object* x_36; uint8_t x_37; -x_36 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_36 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_37 = lean_string_dec_eq(x_19, x_36); if (x_37 == 0) { lean_object* x_38; uint8_t x_39; -x_38 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; +x_38 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; x_39 = lean_string_dec_eq(x_19, x_38); lean_dec(x_19); if (x_39 == 0) @@ -9486,12 +8891,12 @@ return x_40; else { lean_object* x_41; uint8_t x_42; -x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; +x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; x_42 = lean_string_dec_eq(x_18, x_41); if (x_42 == 0) { lean_object* x_43; uint8_t x_44; -x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; +x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; x_44 = lean_string_dec_eq(x_18, x_43); lean_dec(x_18); if (x_44 == 0) @@ -9661,7 +9066,7 @@ x_80 = lean_ctor_get(x_74, 1); lean_dec(x_80); x_81 = lean_box(0); lean_ctor_set(x_74, 1, x_81); -x_82 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_82 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; x_83 = l_Lean_Expr_const___override(x_82, x_65); x_84 = l_Lean_mkApp4(x_83, x_51, x_64, x_53, x_63); x_85 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_84, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -9678,7 +9083,7 @@ x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); lean_ctor_set(x_65, 1, x_88); -x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; x_90 = l_Lean_Expr_const___override(x_89, x_65); x_91 = l_Lean_mkApp4(x_90, x_51, x_64, x_53, x_63); x_92 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_91, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -9712,7 +9117,7 @@ lean_ctor_set(x_97, 1, x_96); x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_93); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__14; +x_99 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__13; x_100 = l_Lean_Expr_const___override(x_99, x_98); x_101 = l_Lean_mkApp4(x_100, x_51, x_64, x_53, x_63); x_102 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_101, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -9999,7 +9404,7 @@ x_146 = lean_ctor_get(x_140, 1); lean_dec(x_146); x_147 = lean_box(0); lean_ctor_set(x_140, 1, x_147); -x_148 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; +x_148 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; x_149 = l_Lean_Expr_const___override(x_148, x_131); x_150 = l_Lean_mkApp4(x_149, x_117, x_130, x_119, x_129); x_151 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_150, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -10016,7 +9421,7 @@ x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_152); lean_ctor_set(x_154, 1, x_153); lean_ctor_set(x_131, 1, x_154); -x_155 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; +x_155 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; x_156 = l_Lean_Expr_const___override(x_155, x_131); x_157 = l_Lean_mkApp4(x_156, x_117, x_130, x_119, x_129); x_158 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_157, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -10050,7 +9455,7 @@ lean_ctor_set(x_163, 1, x_162); x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_159); lean_ctor_set(x_164, 1, x_163); -x_165 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; +x_165 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__15; x_166 = l_Lean_Expr_const___override(x_165, x_164); x_167 = l_Lean_mkApp4(x_166, x_117, x_130, x_119, x_129); x_168 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_167, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); @@ -10181,7 +9586,7 @@ else { lean_object* x_178; uint8_t x_179; lean_dec(x_19); -x_178 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; +x_178 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; x_179 = lean_string_dec_eq(x_18, x_178); lean_dec(x_18); if (x_179 == 0) @@ -10229,7 +9634,7 @@ lean_dec(x_186); x_190 = lean_ctor_get(x_187, 1); lean_inc(x_190); lean_dec(x_187); -x_191 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_191 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_192 = lean_string_dec_eq(x_190, x_191); lean_dec(x_190); if (x_192 == 0) @@ -10244,1551 +9649,53 @@ else { if (lean_obj_tag(x_189) == 0) { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; x_194 = lean_unsigned_to_nat(1u); x_195 = lean_array_fget(x_17, x_194); x_196 = lean_unsigned_to_nat(2u); x_197 = lean_array_fget(x_17, x_196); lean_dec(x_17); -if (lean_obj_tag(x_197) == 1) -{ -lean_object* x_198; lean_object* x_199; -x_198 = lean_ctor_get(x_197, 0); -lean_inc(x_198); -lean_dec(x_197); -lean_inc(x_6); -x_199 = l_Lean_FVarId_getValue_x3f(x_198, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_199) == 0) -{ -lean_object* x_200; -x_200 = lean_ctor_get(x_199, 0); -lean_inc(x_200); -if (lean_obj_tag(x_200) == 0) -{ -lean_object* x_201; lean_object* x_202; -lean_dec(x_195); -x_201 = lean_ctor_get(x_199, 1); -lean_inc(x_201); -lean_dec(x_199); -x_202 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_201); -return x_202; -} -else -{ -lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_203 = lean_ctor_get(x_199, 1); -lean_inc(x_203); -lean_dec(x_199); -x_204 = lean_ctor_get(x_200, 0); -lean_inc(x_204); -lean_dec(x_200); -x_205 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65; -x_206 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__10; -x_207 = l_Lean_mkApp3(x_205, x_206, x_195, x_204); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_1); -x_208 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_207, x_6, x_7, x_8, x_9, x_203); -if (lean_obj_tag(x_208) == 0) -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_208, 1); -lean_inc(x_210); -lean_dec(x_208); -x_211 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_209, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_210); -return x_211; -} -else -{ -uint8_t x_212; -lean_dec(x_9); -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_1); -x_212 = !lean_is_exclusive(x_208); -if (x_212 == 0) -{ -return x_208; -} -else -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; -x_213 = lean_ctor_get(x_208, 0); -x_214 = lean_ctor_get(x_208, 1); -lean_inc(x_214); -lean_inc(x_213); -lean_dec(x_208); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_213); -lean_ctor_set(x_215, 1, x_214); -return x_215; -} -} -} -} -else -{ -uint8_t x_216; -lean_dec(x_195); -lean_dec(x_9); -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_1); -x_216 = !lean_is_exclusive(x_199); -if (x_216 == 0) -{ -return x_199; -} -else -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; -x_217 = lean_ctor_get(x_199, 0); -x_218 = lean_ctor_get(x_199, 1); -lean_inc(x_218); -lean_inc(x_217); -lean_dec(x_199); -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_217); -lean_ctor_set(x_219, 1, x_218); -return x_219; -} -} -} -else -{ -lean_object* x_220; lean_object* x_221; -lean_dec(x_195); -x_220 = l_Lean_Expr_getAppFnArgs(x_197); -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -if (lean_obj_tag(x_221) == 1) -{ -lean_object* x_222; -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -if (lean_obj_tag(x_222) == 1) -{ -lean_object* x_223; -x_223 = lean_ctor_get(x_222, 0); -lean_inc(x_223); -if (lean_obj_tag(x_223) == 0) -{ -lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; -x_224 = lean_ctor_get(x_220, 1); -lean_inc(x_224); -lean_dec(x_220); -x_225 = lean_ctor_get(x_221, 1); -lean_inc(x_225); -lean_dec(x_221); -x_226 = lean_ctor_get(x_222, 1); -lean_inc(x_226); -lean_dec(x_222); -x_227 = lean_string_dec_eq(x_226, x_36); -if (x_227 == 0) -{ -uint8_t x_228; -x_228 = lean_string_dec_eq(x_226, x_20); -if (x_228 == 0) -{ -uint8_t x_229; -x_229 = lean_string_dec_eq(x_226, x_26); -if (x_229 == 0) -{ -uint8_t x_230; -x_230 = lean_string_dec_eq(x_226, x_30); -if (x_230 == 0) -{ -lean_object* x_231; uint8_t x_232; -x_231 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__18; -x_232 = lean_string_dec_eq(x_226, x_231); -if (x_232 == 0) -{ -uint8_t x_233; -x_233 = lean_string_dec_eq(x_226, x_28); -if (x_233 == 0) -{ -uint8_t x_234; -x_234 = lean_string_dec_eq(x_226, x_22); -if (x_234 == 0) -{ -lean_object* x_235; uint8_t x_236; -x_235 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_236 = lean_string_dec_eq(x_226, x_235); -if (x_236 == 0) -{ -uint8_t x_237; -x_237 = lean_string_dec_eq(x_226, x_32); -if (x_237 == 0) -{ -uint8_t x_238; -x_238 = lean_string_dec_eq(x_226, x_34); -if (x_238 == 0) -{ -uint8_t x_239; -x_239 = lean_string_dec_eq(x_226, x_191); -lean_dec(x_226); -if (x_239 == 0) -{ -lean_object* x_240; -lean_dec(x_225); -lean_dec(x_224); -x_240 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_240; -} -else -{ -lean_object* x_241; uint8_t x_242; -x_241 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__19; -x_242 = lean_string_dec_eq(x_225, x_241); -lean_dec(x_225); -if (x_242 == 0) -{ -lean_object* x_243; -lean_dec(x_224); -x_243 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_243; -} -else -{ -lean_object* x_244; uint8_t x_245; -x_244 = lean_array_get_size(x_224); -x_245 = lean_nat_dec_eq(x_244, x_194); -lean_dec(x_244); -if (x_245 == 0) -{ -lean_object* x_246; -lean_dec(x_224); -x_246 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_246; -} -else -{ -uint8_t x_247; -x_247 = lean_ctor_get_uint8(x_5, 2); -if (x_247 == 0) -{ -lean_object* x_248; -lean_dec(x_224); -x_248 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_248; -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_249 = lean_array_fget(x_224, x_185); -lean_dec(x_224); -x_250 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__22; -x_251 = l_Lean_Expr_app___override(x_250, x_249); -x_252 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_251, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_252; -} -} -} -} -} -else -{ -lean_object* x_253; uint8_t x_254; -lean_dec(x_226); -x_253 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23; -x_254 = lean_string_dec_eq(x_225, x_253); -lean_dec(x_225); -if (x_254 == 0) -{ -lean_object* x_255; -lean_dec(x_224); -x_255 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_255; -} -else -{ -lean_object* x_256; lean_object* x_257; uint8_t x_258; -x_256 = lean_array_get_size(x_224); -x_257 = lean_unsigned_to_nat(4u); -x_258 = lean_nat_dec_eq(x_256, x_257); -lean_dec(x_256); -if (x_258 == 0) -{ -lean_object* x_259; -lean_dec(x_224); -x_259 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_259; -} -else -{ -lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_260 = lean_array_fget(x_224, x_196); -x_261 = lean_array_fget(x_224, x_182); -lean_dec(x_224); -x_262 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; -x_263 = l_Lean_mkAppB(x_262, x_260, x_261); -x_264 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_263, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_264; -} -} -} -} -else -{ -lean_object* x_265; uint8_t x_266; -lean_dec(x_226); -x_265 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; -x_266 = lean_string_dec_eq(x_225, x_265); -lean_dec(x_225); -if (x_266 == 0) -{ -lean_object* x_267; -lean_dec(x_224); -x_267 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_267; -} -else -{ -lean_object* x_268; lean_object* x_269; uint8_t x_270; -x_268 = lean_array_get_size(x_224); -x_269 = lean_unsigned_to_nat(4u); -x_270 = lean_nat_dec_eq(x_268, x_269); -lean_dec(x_268); -if (x_270 == 0) -{ -lean_object* x_271; -lean_dec(x_224); -x_271 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_271; -} -else -{ -lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_272 = lean_array_fget(x_224, x_196); -x_273 = lean_array_fget(x_224, x_182); -lean_dec(x_224); -x_274 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__30; -x_275 = l_Lean_mkAppB(x_274, x_272, x_273); -x_276 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_275, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_276; -} -} -} -} -else -{ -lean_object* x_277; uint8_t x_278; -lean_dec(x_226); -x_277 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; -x_278 = lean_string_dec_eq(x_225, x_277); -if (x_278 == 0) -{ -lean_object* x_279; uint8_t x_280; -x_279 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__12; -x_280 = lean_string_dec_eq(x_225, x_279); -lean_dec(x_225); -if (x_280 == 0) -{ -lean_object* x_281; -lean_dec(x_224); -x_281 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_281; -} -else -{ -lean_object* x_282; uint8_t x_283; -x_282 = lean_array_get_size(x_224); -x_283 = lean_nat_dec_eq(x_282, x_182); -lean_dec(x_282); -if (x_283 == 0) -{ -lean_object* x_284; -lean_dec(x_224); -x_284 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_284; -} -else -{ -lean_object* x_285; lean_object* x_286; -x_285 = lean_array_fget(x_224, x_185); -x_286 = lean_array_fget(x_224, x_196); -lean_dec(x_224); -if (lean_obj_tag(x_286) == 5) -{ -lean_object* x_287; -x_287 = lean_ctor_get(x_286, 0); -lean_inc(x_287); -if (lean_obj_tag(x_287) == 5) -{ -lean_object* x_288; -x_288 = lean_ctor_get(x_287, 0); -lean_inc(x_288); -if (lean_obj_tag(x_288) == 5) -{ -lean_object* x_289; -x_289 = lean_ctor_get(x_288, 0); -lean_inc(x_289); -lean_dec(x_288); -if (lean_obj_tag(x_289) == 5) -{ -lean_object* x_290; -x_290 = lean_ctor_get(x_289, 0); -lean_inc(x_290); -lean_dec(x_289); -if (lean_obj_tag(x_290) == 4) -{ -lean_object* x_291; -x_291 = lean_ctor_get(x_290, 0); -lean_inc(x_291); -if (lean_obj_tag(x_291) == 1) -{ -lean_object* x_292; -x_292 = lean_ctor_get(x_291, 0); -lean_inc(x_292); -if (lean_obj_tag(x_292) == 1) -{ -lean_object* x_293; -x_293 = lean_ctor_get(x_292, 0); -lean_inc(x_293); -if (lean_obj_tag(x_293) == 0) -{ -lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; -x_294 = lean_ctor_get(x_286, 1); -lean_inc(x_294); -lean_dec(x_286); -x_295 = lean_ctor_get(x_287, 1); -lean_inc(x_295); -lean_dec(x_287); -x_296 = lean_ctor_get(x_290, 1); -lean_inc(x_296); -lean_dec(x_290); -x_297 = lean_ctor_get(x_291, 1); -lean_inc(x_297); -lean_dec(x_291); -x_298 = lean_ctor_get(x_292, 1); -lean_inc(x_298); -lean_dec(x_292); -x_299 = lean_string_dec_eq(x_298, x_235); -lean_dec(x_298); -if (x_299 == 0) -{ -lean_object* x_300; -lean_dec(x_297); -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_300 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_300; -} -else -{ -lean_object* x_301; uint8_t x_302; -x_301 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; -x_302 = lean_string_dec_eq(x_297, x_301); -lean_dec(x_297); -if (x_302 == 0) -{ -lean_object* x_303; -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_303 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_303; -} -else -{ -if (lean_obj_tag(x_296) == 0) -{ -lean_object* x_304; -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_304 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_304; -} -else -{ -lean_object* x_305; -x_305 = lean_ctor_get(x_296, 1); -lean_inc(x_305); -if (lean_obj_tag(x_305) == 0) -{ -lean_object* x_306; -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_306 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_306; -} -else -{ -lean_object* x_307; -x_307 = lean_ctor_get(x_305, 0); -lean_inc(x_307); -if (lean_obj_tag(x_307) == 0) -{ -uint8_t x_308; -x_308 = !lean_is_exclusive(x_305); -if (x_308 == 0) -{ -lean_object* x_309; lean_object* x_310; -x_309 = lean_ctor_get(x_305, 1); -x_310 = lean_ctor_get(x_305, 0); -lean_dec(x_310); -if (lean_obj_tag(x_309) == 0) -{ -lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; -x_311 = lean_ctor_get(x_296, 0); -lean_inc(x_311); -lean_dec(x_296); -x_312 = lean_box(0); -lean_ctor_set(x_305, 1, x_312); -lean_ctor_set(x_305, 0, x_311); -x_313 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; -x_314 = l_Lean_Expr_const___override(x_313, x_305); -x_315 = l_Lean_mkApp3(x_314, x_285, x_295, x_294); -x_316 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_315, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_316; -} -else -{ -lean_object* x_317; -lean_free_object(x_305); -lean_dec(x_309); -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_317 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_317; -} -} -else -{ -lean_object* x_318; -x_318 = lean_ctor_get(x_305, 1); -lean_inc(x_318); -lean_dec(x_305); -if (lean_obj_tag(x_318) == 0) -{ -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; -x_319 = lean_ctor_get(x_296, 0); -lean_inc(x_319); -lean_dec(x_296); -x_320 = lean_box(0); -x_321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -x_322 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; -x_323 = l_Lean_Expr_const___override(x_322, x_321); -x_324 = l_Lean_mkApp3(x_323, x_285, x_295, x_294); -x_325 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_324, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_325; -} -else -{ -lean_object* x_326; -lean_dec(x_318); -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_326 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_326; -} -} -} -else -{ -lean_object* x_327; -lean_dec(x_307); -lean_dec(x_305); -lean_dec(x_296); -lean_dec(x_295); -lean_dec(x_294); -lean_dec(x_285); -x_327 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_327; -} -} -} -} -} -} -else -{ -lean_object* x_328; -lean_dec(x_293); -lean_dec(x_292); -lean_dec(x_291); -lean_dec(x_290); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_328 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_328; -} -} -else -{ -lean_object* x_329; -lean_dec(x_292); -lean_dec(x_291); -lean_dec(x_290); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_329 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_329; -} -} -else -{ -lean_object* x_330; -lean_dec(x_291); -lean_dec(x_290); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_330 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_330; -} -} -else -{ -lean_object* x_331; -lean_dec(x_290); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_331 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_331; -} -} -else -{ -lean_object* x_332; -lean_dec(x_289); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_332 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_332; -} -} -else -{ -lean_object* x_333; -lean_dec(x_288); -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_333 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_333; -} -} -else -{ -lean_object* x_334; -lean_dec(x_287); -lean_dec(x_286); -lean_dec(x_285); -x_334 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_334; -} -} -else -{ -lean_object* x_335; -lean_dec(x_286); -lean_dec(x_285); -x_335 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_335; -} -} -} -} -else -{ -lean_object* x_336; uint8_t x_337; -lean_dec(x_225); -x_336 = lean_array_get_size(x_224); -x_337 = lean_nat_dec_eq(x_336, x_182); -lean_dec(x_336); -if (x_337 == 0) -{ -lean_object* x_338; -lean_dec(x_224); -x_338 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_338; -} -else -{ -lean_object* x_339; lean_object* x_340; -x_339 = lean_array_fget(x_224, x_194); -x_340 = lean_array_fget(x_224, x_196); -lean_dec(x_224); -if (lean_obj_tag(x_340) == 5) -{ -lean_object* x_341; -x_341 = lean_ctor_get(x_340, 0); -lean_inc(x_341); -if (lean_obj_tag(x_341) == 5) -{ -lean_object* x_342; -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -if (lean_obj_tag(x_342) == 5) -{ -lean_object* x_343; -x_343 = lean_ctor_get(x_342, 0); -lean_inc(x_343); -lean_dec(x_342); -if (lean_obj_tag(x_343) == 5) -{ -lean_object* x_344; -x_344 = lean_ctor_get(x_343, 0); -lean_inc(x_344); -lean_dec(x_343); -if (lean_obj_tag(x_344) == 4) -{ -lean_object* x_345; -x_345 = lean_ctor_get(x_344, 0); -lean_inc(x_345); -if (lean_obj_tag(x_345) == 1) -{ -lean_object* x_346; -x_346 = lean_ctor_get(x_345, 0); -lean_inc(x_346); -if (lean_obj_tag(x_346) == 1) -{ -lean_object* x_347; -x_347 = lean_ctor_get(x_346, 0); -lean_inc(x_347); -if (lean_obj_tag(x_347) == 0) -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; uint8_t x_353; -x_348 = lean_ctor_get(x_340, 1); -lean_inc(x_348); -lean_dec(x_340); -x_349 = lean_ctor_get(x_341, 1); -lean_inc(x_349); -lean_dec(x_341); -x_350 = lean_ctor_get(x_344, 1); -lean_inc(x_350); -lean_dec(x_344); -x_351 = lean_ctor_get(x_345, 1); -lean_inc(x_351); -lean_dec(x_345); -x_352 = lean_ctor_get(x_346, 1); -lean_inc(x_352); -lean_dec(x_346); -x_353 = lean_string_dec_eq(x_352, x_235); -lean_dec(x_352); -if (x_353 == 0) -{ -lean_object* x_354; -lean_dec(x_351); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_354 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_354; -} -else -{ -lean_object* x_355; uint8_t x_356; -x_355 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; -x_356 = lean_string_dec_eq(x_351, x_355); -lean_dec(x_351); -if (x_356 == 0) -{ -lean_object* x_357; -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_357 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_357; -} -else -{ -if (lean_obj_tag(x_350) == 0) -{ -lean_object* x_358; -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_358 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_358; -} -else -{ -lean_object* x_359; -x_359 = lean_ctor_get(x_350, 0); -lean_inc(x_359); -if (lean_obj_tag(x_359) == 0) -{ -lean_object* x_360; -x_360 = lean_ctor_get(x_350, 1); -lean_inc(x_360); -lean_dec(x_350); -if (lean_obj_tag(x_360) == 0) -{ -lean_object* x_361; -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_361 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_361; -} -else -{ -lean_object* x_362; -x_362 = lean_ctor_get(x_360, 1); -lean_inc(x_362); -if (lean_obj_tag(x_362) == 0) -{ -uint8_t x_363; -x_363 = !lean_is_exclusive(x_360); -if (x_363 == 0) -{ -lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; -x_364 = lean_ctor_get(x_360, 1); -lean_dec(x_364); -x_365 = lean_box(0); -lean_ctor_set(x_360, 1, x_365); -x_366 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; -x_367 = l_Lean_Expr_const___override(x_366, x_360); -x_368 = l_Lean_mkApp3(x_367, x_339, x_349, x_348); -x_369 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_368, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_369; -} -else -{ -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; -x_370 = lean_ctor_get(x_360, 0); -lean_inc(x_370); -lean_dec(x_360); -x_371 = lean_box(0); -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_370); -lean_ctor_set(x_372, 1, x_371); -x_373 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; -x_374 = l_Lean_Expr_const___override(x_373, x_372); -x_375 = l_Lean_mkApp3(x_374, x_339, x_349, x_348); -x_376 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_375, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_376; -} -} -else -{ -lean_object* x_377; -lean_dec(x_362); -lean_dec(x_360); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_377 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_377; -} -} -} -else -{ -lean_object* x_378; -lean_dec(x_359); -lean_dec(x_350); -lean_dec(x_349); -lean_dec(x_348); -lean_dec(x_339); -x_378 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_378; -} -} -} -} -} -else -{ -lean_object* x_379; -lean_dec(x_347); -lean_dec(x_346); -lean_dec(x_345); -lean_dec(x_344); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_379 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_379; -} -} -else -{ -lean_object* x_380; -lean_dec(x_346); -lean_dec(x_345); -lean_dec(x_344); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_380 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_380; -} -} -else -{ -lean_object* x_381; -lean_dec(x_345); -lean_dec(x_344); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_381 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_381; -} -} -else -{ -lean_object* x_382; -lean_dec(x_344); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_382 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_382; -} -} -else -{ -lean_object* x_383; -lean_dec(x_343); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_383 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_383; -} -} -else -{ -lean_object* x_384; -lean_dec(x_342); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_384 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_384; -} -} -else -{ -lean_object* x_385; -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -x_385 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_385; -} -} -else -{ -lean_object* x_386; -lean_dec(x_340); -lean_dec(x_339); -x_386 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_386; -} -} -} -} -} -else -{ -lean_object* x_387; uint8_t x_388; -lean_dec(x_226); -x_387 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; -x_388 = lean_string_dec_eq(x_225, x_387); -lean_dec(x_225); -if (x_388 == 0) -{ -lean_object* x_389; -lean_dec(x_224); -x_389 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_389; -} -else -{ -lean_object* x_390; lean_object* x_391; uint8_t x_392; -x_390 = lean_array_get_size(x_224); -x_391 = lean_unsigned_to_nat(6u); -x_392 = lean_nat_dec_eq(x_390, x_391); -lean_dec(x_390); -if (x_392 == 0) -{ -lean_object* x_393; -lean_dec(x_224); -x_393 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_393; -} -else -{ -lean_object* x_394; lean_object* x_395; -x_394 = lean_unsigned_to_nat(4u); -x_395 = lean_array_fget(x_224, x_394); -if (lean_obj_tag(x_395) == 5) -{ -lean_object* x_396; -x_396 = lean_ctor_get(x_395, 0); -lean_inc(x_396); -if (lean_obj_tag(x_396) == 5) -{ -lean_object* x_397; -x_397 = lean_ctor_get(x_396, 0); -lean_inc(x_397); -if (lean_obj_tag(x_397) == 5) -{ -lean_object* x_398; -x_398 = lean_ctor_get(x_397, 0); -lean_inc(x_398); -lean_dec(x_397); -if (lean_obj_tag(x_398) == 5) -{ -lean_object* x_399; -x_399 = lean_ctor_get(x_398, 0); -lean_inc(x_399); -lean_dec(x_398); -if (lean_obj_tag(x_399) == 5) -{ -lean_object* x_400; -x_400 = lean_ctor_get(x_399, 0); -lean_inc(x_400); -lean_dec(x_399); -if (lean_obj_tag(x_400) == 5) -{ -lean_object* x_401; -x_401 = lean_ctor_get(x_400, 0); -lean_inc(x_401); -lean_dec(x_400); -if (lean_obj_tag(x_401) == 4) -{ -lean_object* x_402; -x_402 = lean_ctor_get(x_401, 0); -lean_inc(x_402); -lean_dec(x_401); -if (lean_obj_tag(x_402) == 1) -{ -lean_object* x_403; -x_403 = lean_ctor_get(x_402, 0); -lean_inc(x_403); -if (lean_obj_tag(x_403) == 1) -{ -lean_object* x_404; -x_404 = lean_ctor_get(x_403, 0); -lean_inc(x_404); -if (lean_obj_tag(x_404) == 0) -{ -lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; uint8_t x_409; -x_405 = lean_ctor_get(x_395, 1); -lean_inc(x_405); -lean_dec(x_395); -x_406 = lean_ctor_get(x_396, 1); -lean_inc(x_406); -lean_dec(x_396); -x_407 = lean_ctor_get(x_402, 1); -lean_inc(x_407); -lean_dec(x_402); -x_408 = lean_ctor_get(x_403, 1); -lean_inc(x_408); -lean_dec(x_403); -x_409 = lean_string_dec_eq(x_408, x_22); -lean_dec(x_408); -if (x_409 == 0) -{ -lean_object* x_410; -lean_dec(x_407); -lean_dec(x_406); -lean_dec(x_405); -lean_dec(x_224); -x_410 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_410; -} -else -{ -uint8_t x_411; -x_411 = lean_string_dec_eq(x_407, x_387); -lean_dec(x_407); -if (x_411 == 0) -{ -lean_object* x_412; -lean_dec(x_406); -lean_dec(x_405); -lean_dec(x_224); -x_412 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_412; -} -else -{ -lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; -x_413 = lean_unsigned_to_nat(5u); -x_414 = lean_array_fget(x_224, x_413); -lean_dec(x_224); -x_415 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; -x_416 = l_Lean_mkApp3(x_415, x_406, x_405, x_414); -x_417 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_416, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_417; -} -} -} -else -{ -lean_object* x_418; -lean_dec(x_404); -lean_dec(x_403); -lean_dec(x_402); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_418 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_418; -} -} -else -{ -lean_object* x_419; -lean_dec(x_403); -lean_dec(x_402); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_419 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_419; -} -} -else -{ -lean_object* x_420; -lean_dec(x_402); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_420 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_420; -} -} -else -{ -lean_object* x_421; -lean_dec(x_401); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_421 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_421; -} -} -else -{ -lean_object* x_422; -lean_dec(x_400); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_422 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_422; -} -} -else -{ -lean_object* x_423; -lean_dec(x_399); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_423 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_423; -} -} -else -{ -lean_object* x_424; -lean_dec(x_398); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_424 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_424; -} -} -else -{ -lean_object* x_425; -lean_dec(x_397); -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_425 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_425; -} -} -else -{ -lean_object* x_426; -lean_dec(x_396); -lean_dec(x_395); -lean_dec(x_224); -x_426 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_426; -} -} -else -{ -lean_object* x_427; -lean_dec(x_395); -lean_dec(x_224); -x_427 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_427; -} -} -} -} -} -else -{ -lean_object* x_428; uint8_t x_429; -lean_dec(x_226); -x_428 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_429 = lean_string_dec_eq(x_225, x_428); -lean_dec(x_225); -if (x_429 == 0) -{ -lean_object* x_430; -lean_dec(x_224); -x_430 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_430; -} -else -{ -lean_object* x_431; lean_object* x_432; uint8_t x_433; -x_431 = lean_array_get_size(x_224); -x_432 = lean_unsigned_to_nat(6u); -x_433 = lean_nat_dec_eq(x_431, x_432); -lean_dec(x_431); -if (x_433 == 0) -{ -lean_object* x_434; -lean_dec(x_224); -x_434 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_434; -} -else -{ -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; -x_435 = lean_unsigned_to_nat(4u); -x_436 = lean_array_fget(x_224, x_435); -x_437 = lean_unsigned_to_nat(5u); -x_438 = lean_array_fget(x_224, x_437); -lean_dec(x_224); -x_439 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42; -x_440 = l_Lean_mkAppB(x_439, x_436, x_438); -x_441 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_440, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_441; -} -} -} -} -else -{ -lean_object* x_442; uint8_t x_443; -lean_dec(x_226); -x_442 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22; -x_443 = lean_string_dec_eq(x_225, x_442); -lean_dec(x_225); -if (x_443 == 0) -{ -lean_object* x_444; -lean_dec(x_224); -x_444 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_444; -} -else -{ -lean_object* x_445; uint8_t x_446; -x_445 = lean_array_get_size(x_224); -x_446 = lean_nat_dec_eq(x_445, x_182); -lean_dec(x_445); -if (x_446 == 0) -{ -lean_object* x_447; -lean_dec(x_224); -x_447 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_447; -} -else -{ -lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; -x_448 = lean_array_fget(x_224, x_194); -lean_dec(x_224); -x_449 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45; -x_450 = l_Lean_Expr_app___override(x_449, x_448); -x_451 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_450, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_451; -} -} -} -} -else -{ -lean_object* x_452; uint8_t x_453; -lean_dec(x_226); -x_452 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; -x_453 = lean_string_dec_eq(x_225, x_452); -lean_dec(x_225); -if (x_453 == 0) -{ -lean_object* x_454; -lean_dec(x_224); -x_454 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_454; -} -else -{ -lean_object* x_455; lean_object* x_456; uint8_t x_457; -x_455 = lean_array_get_size(x_224); -x_456 = lean_unsigned_to_nat(6u); -x_457 = lean_nat_dec_eq(x_455, x_456); -lean_dec(x_455); -if (x_457 == 0) -{ -lean_object* x_458; -lean_dec(x_224); -x_458 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_458; -} -else -{ -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; -x_459 = lean_unsigned_to_nat(4u); -x_460 = lean_array_fget(x_224, x_459); -x_461 = lean_unsigned_to_nat(5u); -x_462 = lean_array_fget(x_224, x_461); -lean_dec(x_224); -x_463 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__49; -x_464 = l_Lean_mkAppB(x_463, x_460, x_462); -x_465 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_464, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_465; -} -} -} -} -else -{ -lean_object* x_466; uint8_t x_467; -lean_dec(x_226); -x_466 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50; -x_467 = lean_string_dec_eq(x_225, x_466); -lean_dec(x_225); -if (x_467 == 0) -{ -lean_object* x_468; -lean_dec(x_224); -x_468 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_468; -} -else -{ -lean_object* x_469; lean_object* x_470; uint8_t x_471; -x_469 = lean_array_get_size(x_224); -x_470 = lean_unsigned_to_nat(6u); -x_471 = lean_nat_dec_eq(x_469, x_470); -lean_dec(x_469); -if (x_471 == 0) -{ -lean_object* x_472; -lean_dec(x_224); -x_472 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_472; -} -else -{ -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; -x_473 = lean_unsigned_to_nat(4u); -x_474 = lean_array_fget(x_224, x_473); -x_475 = lean_unsigned_to_nat(5u); -x_476 = lean_array_fget(x_224, x_475); -lean_dec(x_224); -x_477 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53; -x_478 = l_Lean_mkAppB(x_477, x_474, x_476); -x_479 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_478, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_479; -} -} -} -} -else -{ -lean_object* x_480; uint8_t x_481; -lean_dec(x_226); -x_480 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54; -x_481 = lean_string_dec_eq(x_225, x_480); -lean_dec(x_225); -if (x_481 == 0) -{ -lean_object* x_482; -lean_dec(x_224); -x_482 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_482; -} -else -{ -lean_object* x_483; lean_object* x_484; uint8_t x_485; -x_483 = lean_array_get_size(x_224); -x_484 = lean_unsigned_to_nat(6u); -x_485 = lean_nat_dec_eq(x_483, x_484); -lean_dec(x_483); -if (x_485 == 0) -{ -lean_object* x_486; -lean_dec(x_224); -x_486 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_486; -} -else -{ -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; -x_487 = lean_unsigned_to_nat(4u); -x_488 = lean_array_fget(x_224, x_487); -x_489 = lean_unsigned_to_nat(5u); -x_490 = lean_array_fget(x_224, x_489); -lean_dec(x_224); -x_491 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57; -x_492 = l_Lean_mkAppB(x_491, x_488, x_490); -x_493 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_492, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_493; -} -} -} -} -else -{ -lean_object* x_494; uint8_t x_495; -lean_dec(x_226); -x_494 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58; -x_495 = lean_string_dec_eq(x_225, x_494); -lean_dec(x_225); -if (x_495 == 0) -{ -lean_object* x_496; -lean_dec(x_224); -x_496 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_496; -} -else -{ -lean_object* x_497; uint8_t x_498; -x_497 = lean_array_get_size(x_224); -x_498 = lean_nat_dec_eq(x_497, x_194); -lean_dec(x_497); -if (x_498 == 0) -{ -lean_object* x_499; -lean_dec(x_224); -x_499 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_499; -} -else -{ -lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; -x_500 = lean_array_fget(x_224, x_185); -lean_dec(x_224); -x_501 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61; -x_502 = l_Lean_Expr_app___override(x_501, x_500); -x_503 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_502, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_503; -} -} -} -} -else -{ -lean_object* x_504; -lean_dec(x_223); -lean_dec(x_222); -lean_dec(x_221); -lean_dec(x_220); -x_504 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_504; -} -} -else -{ -lean_object* x_505; -lean_dec(x_222); -lean_dec(x_221); -lean_dec(x_220); -x_505 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_505; -} -} -else -{ -lean_object* x_506; -lean_dec(x_221); -lean_dec(x_220); -x_506 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_506; -} -} +x_198 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast(x_1, x_195, x_197, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_198; } else { -lean_object* x_507; +lean_object* x_199; lean_dec(x_189); lean_dec(x_17); -x_507 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_507; +x_199 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_199; } } } else { -lean_object* x_508; +lean_object* x_200; lean_dec(x_188); lean_dec(x_187); lean_dec(x_186); lean_dec(x_17); -x_508 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_508; +x_200 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_200; } } else { -lean_object* x_509; +lean_object* x_201; lean_dec(x_187); lean_dec(x_186); lean_dec(x_17); -x_509 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_509; +x_201 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_201; } } else { -lean_object* x_510; +lean_object* x_202; lean_dec(x_186); lean_dec(x_17); -x_510 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_510; +x_202 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_202; } } } @@ -11796,36 +9703,1297 @@ return x_510; } else { -lean_object* x_511; uint8_t x_512; +lean_object* x_203; uint8_t x_204; lean_dec(x_19); -x_511 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__23; -x_512 = lean_string_dec_eq(x_18, x_511); +x_203 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; +x_204 = lean_string_dec_eq(x_18, x_203); lean_dec(x_18); -if (x_512 == 0) +if (x_204 == 0) { -lean_object* x_513; +lean_object* x_205; lean_dec(x_17); -x_513 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_513; +x_205 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_205; } else { -lean_object* x_514; lean_object* x_515; uint8_t x_516; -x_514 = lean_array_get_size(x_17); -x_515 = lean_unsigned_to_nat(4u); -x_516 = lean_nat_dec_eq(x_514, x_515); -lean_dec(x_514); -if (x_516 == 0) +lean_object* x_206; lean_object* x_207; uint8_t x_208; +x_206 = lean_array_get_size(x_17); +x_207 = lean_unsigned_to_nat(4u); +x_208 = lean_nat_dec_eq(x_206, x_207); +lean_dec(x_206); +if (x_208 == 0) { -lean_object* x_517; +lean_object* x_209; lean_dec(x_17); -x_517 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_517; +x_209 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_209; } else { -uint8_t x_518; -x_518 = lean_ctor_get_uint8(x_5, 3); +uint8_t x_210; +x_210 = lean_ctor_get_uint8(x_5, 3); +if (x_210 == 0) +{ +lean_object* x_211; +lean_dec(x_17); +x_211 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_211; +} +else +{ +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; +x_212 = lean_unsigned_to_nat(2u); +x_213 = lean_array_fget(x_17, x_212); +x_214 = lean_unsigned_to_nat(3u); +x_215 = lean_array_fget(x_17, x_214); +lean_dec(x_17); +x_216 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__20; +x_217 = l_Lean_mkAppB(x_216, x_213, x_215); +x_218 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_217, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_218; +} +} +} +} +} +else +{ +lean_object* x_219; uint8_t x_220; +lean_dec(x_19); +x_219 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; +x_220 = lean_string_dec_eq(x_18, x_219); +lean_dec(x_18); +if (x_220 == 0) +{ +lean_object* x_221; +lean_dec(x_17); +x_221 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_221; +} +else +{ +lean_object* x_222; lean_object* x_223; uint8_t x_224; +x_222 = lean_array_get_size(x_17); +x_223 = lean_unsigned_to_nat(4u); +x_224 = lean_nat_dec_eq(x_222, x_223); +lean_dec(x_222); +if (x_224 == 0) +{ +lean_object* x_225; +lean_dec(x_17); +x_225 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_225; +} +else +{ +uint8_t x_226; +x_226 = lean_ctor_get_uint8(x_5, 3); +if (x_226 == 0) +{ +lean_object* x_227; +lean_dec(x_17); +x_227 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_227; +} +else +{ +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; +x_228 = lean_unsigned_to_nat(2u); +x_229 = lean_array_fget(x_17, x_228); +x_230 = lean_unsigned_to_nat(3u); +x_231 = lean_array_fget(x_17, x_230); +lean_dec(x_17); +x_232 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__24; +x_233 = l_Lean_mkAppB(x_232, x_229, x_231); +x_234 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_233, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_234; +} +} +} +} +} +else +{ +lean_object* x_235; uint8_t x_236; +lean_dec(x_19); +x_235 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; +x_236 = lean_string_dec_eq(x_18, x_235); +lean_dec(x_18); +if (x_236 == 0) +{ +lean_object* x_237; +lean_dec(x_17); +x_237 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_237; +} +else +{ +lean_object* x_238; lean_object* x_239; uint8_t x_240; +x_238 = lean_array_get_size(x_17); +x_239 = lean_unsigned_to_nat(6u); +x_240 = lean_nat_dec_eq(x_238, x_239); +lean_dec(x_238); +if (x_240 == 0) +{ +lean_object* x_241; +lean_dec(x_17); +x_241 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_241; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_242 = lean_unsigned_to_nat(4u); +x_243 = lean_array_fget(x_17, x_242); +x_244 = lean_unsigned_to_nat(5u); +x_245 = lean_array_fget(x_17, x_244); +lean_dec(x_17); +x_246 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_245); +if (lean_obj_tag(x_246) == 0) +{ +lean_object* x_247; +lean_dec(x_243); +x_247 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_247; +} +else +{ +lean_object* x_248; lean_object* x_249; uint8_t x_250; +x_248 = lean_ctor_get(x_246, 0); +lean_inc(x_248); +lean_dec(x_246); +x_249 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_250 = lean_int_dec_lt(x_248, x_249); +if (x_250 == 0) +{ +lean_object* x_251; lean_object* x_252; uint8_t x_253; +x_251 = lean_nat_abs(x_248); +x_252 = lean_unsigned_to_nat(0u); +x_253 = lean_nat_dec_eq(x_251, x_252); +lean_dec(x_251); +if (x_253 == 0) +{ +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_dec(x_1); +x_254 = l_Lean_Elab_Tactic_Omega_mkInt(x_248); +lean_dec(x_248); +x_255 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +x_256 = lean_array_push(x_255, x_243); +x_257 = lean_array_push(x_256, x_254); +x_258 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_259 = l_Lean_Meta_mkAppM(x_258, x_257, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_259) == 0) +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +lean_dec(x_259); +x_262 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_260, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); +return x_262; +} +else +{ +uint8_t x_263; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_263 = !lean_is_exclusive(x_259); +if (x_263 == 0) +{ +return x_259; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_259, 0); +x_265 = lean_ctor_get(x_259, 1); +lean_inc(x_265); +lean_inc(x_264); +lean_dec(x_259); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; +lean_dec(x_248); +x_267 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__29; +x_268 = l_Lean_Expr_app___override(x_267, x_243); +x_269 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_268, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_269; +} +} +else +{ +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_dec(x_1); +x_270 = l_Lean_Elab_Tactic_Omega_mkInt(x_248); +x_271 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +lean_inc(x_243); +x_272 = lean_array_push(x_271, x_243); +x_273 = lean_array_push(x_272, x_270); +x_274 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__26; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_275 = l_Lean_Meta_mkAppM(x_274, x_273, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_275) == 0) +{ +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_275, 0); +lean_inc(x_276); +x_277 = lean_ctor_get(x_275, 1); +lean_inc(x_277); +lean_dec(x_275); +x_278 = lean_int_neg(x_248); +lean_dec(x_248); +x_279 = l_Lean_Elab_Tactic_Omega_mkInt(x_278); +lean_dec(x_278); +x_280 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__32; +x_281 = l_Lean_mkAppB(x_280, x_243, x_279); +x_282 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_276, x_281, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_277); +return x_282; +} +else +{ +uint8_t x_283; +lean_dec(x_248); +lean_dec(x_243); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_283 = !lean_is_exclusive(x_275); +if (x_283 == 0) +{ +return x_275; +} +else +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_284 = lean_ctor_get(x_275, 0); +x_285 = lean_ctor_get(x_275, 1); +lean_inc(x_285); +lean_inc(x_284); +lean_dec(x_275); +x_286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_286, 0, x_284); +lean_ctor_set(x_286, 1, x_285); +return x_286; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_287; uint8_t x_288; +lean_dec(x_19); +x_287 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; +x_288 = lean_string_dec_eq(x_18, x_287); +lean_dec(x_18); +if (x_288 == 0) +{ +lean_object* x_289; +lean_dec(x_17); +x_289 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_289; +} +else +{ +lean_object* x_290; lean_object* x_291; uint8_t x_292; +x_290 = lean_array_get_size(x_17); +x_291 = lean_unsigned_to_nat(6u); +x_292 = lean_nat_dec_eq(x_290, x_291); +lean_dec(x_290); +if (x_292 == 0) +{ +lean_object* x_293; +lean_dec(x_17); +x_293 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_293; +} +else +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; +x_294 = lean_unsigned_to_nat(4u); +x_295 = lean_array_fget(x_17, x_294); +x_296 = lean_unsigned_to_nat(5u); +x_297 = lean_array_fget(x_17, x_296); +lean_dec(x_17); +x_298 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_297); +if (lean_obj_tag(x_298) == 0) +{ +lean_object* x_299; +lean_dec(x_295); +x_299 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_299; +} +else +{ +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_dec(x_1); +x_300 = lean_ctor_get(x_298, 0); +lean_inc(x_300); +lean_dec(x_298); +x_301 = lean_nat_to_int(x_300); +x_302 = l_Lean_Elab_Tactic_Omega_mkInt(x_301); +lean_dec(x_301); +x_303 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__3___closed__5; +lean_inc(x_295); +x_304 = lean_array_push(x_303, x_295); +lean_inc(x_302); +x_305 = lean_array_push(x_304, x_302); +x_306 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__34; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_307 = l_Lean_Meta_mkAppM(x_306, x_305, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_307) == 0) +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +x_308 = lean_ctor_get(x_307, 0); +lean_inc(x_308); +x_309 = lean_ctor_get(x_307, 1); +lean_inc(x_309); +lean_dec(x_307); +x_310 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__37; +x_311 = l_Lean_mkAppB(x_310, x_295, x_302); +x_312 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_308, x_311, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_309); +return x_312; +} +else +{ +uint8_t x_313; +lean_dec(x_302); +lean_dec(x_295); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_313 = !lean_is_exclusive(x_307); +if (x_313 == 0) +{ +return x_307; +} +else +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; +x_314 = lean_ctor_get(x_307, 0); +x_315 = lean_ctor_get(x_307, 1); +lean_inc(x_315); +lean_inc(x_314); +lean_dec(x_307); +x_316 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_316, 0, x_314); +lean_ctor_set(x_316, 1, x_315); +return x_316; +} +} +} +} +} +} +} +else +{ +lean_object* x_317; uint8_t x_318; +lean_dec(x_19); +x_317 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_318 = lean_string_dec_eq(x_18, x_317); +lean_dec(x_18); +if (x_318 == 0) +{ +lean_object* x_319; +lean_dec(x_17); +x_319 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_319; +} +else +{ +lean_object* x_320; lean_object* x_321; uint8_t x_322; +x_320 = lean_array_get_size(x_17); +x_321 = lean_unsigned_to_nat(6u); +x_322 = lean_nat_dec_eq(x_320, x_321); +lean_dec(x_320); +if (x_322 == 0) +{ +lean_object* x_323; +lean_dec(x_17); +x_323 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_323; +} +else +{ +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; +x_324 = lean_unsigned_to_nat(4u); +x_325 = lean_array_fget(x_17, x_324); +x_326 = lean_unsigned_to_nat(5u); +x_327 = lean_array_fget(x_17, x_326); +lean_dec(x_17); +x_328 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearCombo), 9, 1); +lean_closure_set(x_328, 0, x_325); +x_329 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4), 10, 1); +lean_closure_set(x_329, 0, x_327); +x_330 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_330, 0, x_328); +lean_closure_set(x_330, 1, x_329); +lean_inc(x_9); +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_331 = l_Lean_Elab_Tactic_Omega_commitWhen___rarg(x_330, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_331) == 0) +{ +lean_object* x_332; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +if (lean_obj_tag(x_332) == 0) +{ +lean_object* x_333; lean_object* x_334; +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +lean_dec(x_331); +x_334 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_333); +return x_334; +} +else +{ +uint8_t x_335; +lean_dec(x_9); +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_1); +x_335 = !lean_is_exclusive(x_331); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; +x_336 = lean_ctor_get(x_331, 0); +lean_dec(x_336); +x_337 = lean_ctor_get(x_332, 0); +lean_inc(x_337); +lean_dec(x_332); +lean_ctor_set(x_331, 0, x_337); +return x_331; +} +else +{ +lean_object* x_338; lean_object* x_339; lean_object* x_340; +x_338 = lean_ctor_get(x_331, 1); +lean_inc(x_338); +lean_dec(x_331); +x_339 = lean_ctor_get(x_332, 0); +lean_inc(x_339); +lean_dec(x_332); +x_340 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_340, 0, x_339); +lean_ctor_set(x_340, 1, x_338); +return x_340; +} +} +} +else +{ +uint8_t x_341; +lean_dec(x_9); +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_1); +x_341 = !lean_is_exclusive(x_331); +if (x_341 == 0) +{ +return x_331; +} +else +{ +lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_342 = lean_ctor_get(x_331, 0); +x_343 = lean_ctor_get(x_331, 1); +lean_inc(x_343); +lean_inc(x_342); +lean_dec(x_331); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_342); +lean_ctor_set(x_344, 1, x_343); +return x_344; +} +} +} +} +} +} +else +{ +lean_object* x_345; uint8_t x_346; +lean_dec(x_19); +x_345 = l_Lean_Elab_Tactic_Omega_mkInt___closed__3; +x_346 = lean_string_dec_eq(x_18, x_345); +lean_dec(x_18); +if (x_346 == 0) +{ +lean_object* x_347; +lean_dec(x_17); +x_347 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_347; +} +else +{ +lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_348 = lean_array_get_size(x_17); +x_349 = lean_unsigned_to_nat(3u); +x_350 = lean_nat_dec_eq(x_348, x_349); +lean_dec(x_348); +if (x_350 == 0) +{ +lean_object* x_351; +lean_dec(x_17); +x_351 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_351; +} +else +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_dec(x_1); +x_352 = lean_unsigned_to_nat(2u); +x_353 = lean_array_fget(x_17, x_352); +lean_dec(x_17); +x_354 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_353, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_354) == 0) +{ +lean_object* x_355; lean_object* x_356; uint8_t x_357; +x_355 = lean_ctor_get(x_354, 0); +lean_inc(x_355); +x_356 = lean_ctor_get(x_355, 1); +lean_inc(x_356); +x_357 = !lean_is_exclusive(x_354); +if (x_357 == 0) +{ +lean_object* x_358; uint8_t x_359; +x_358 = lean_ctor_get(x_354, 0); +lean_dec(x_358); +x_359 = !lean_is_exclusive(x_355); +if (x_359 == 0) +{ +lean_object* x_360; lean_object* x_361; uint8_t x_362; +x_360 = lean_ctor_get(x_355, 0); +x_361 = lean_ctor_get(x_355, 1); +lean_dec(x_361); +x_362 = !lean_is_exclusive(x_356); +if (x_362 == 0) +{ +lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_363 = lean_ctor_get(x_356, 0); +lean_inc(x_360); +x_364 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_364, 0, x_360); +lean_closure_set(x_364, 1, x_363); +x_365 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_366 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_366, 0, x_365); +lean_closure_set(x_366, 1, x_364); +x_367 = l_Lean_Omega_LinearCombo_neg(x_360); +lean_ctor_set(x_356, 0, x_366); +lean_ctor_set(x_355, 0, x_367); +return x_354; +} +else +{ +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; +x_368 = lean_ctor_get(x_356, 0); +x_369 = lean_ctor_get(x_356, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_356); +lean_inc(x_360); +x_370 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_370, 0, x_360); +lean_closure_set(x_370, 1, x_368); +x_371 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_372 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_372, 0, x_371); +lean_closure_set(x_372, 1, x_370); +x_373 = l_Lean_Omega_LinearCombo_neg(x_360); +x_374 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_374, 0, x_372); +lean_ctor_set(x_374, 1, x_369); +lean_ctor_set(x_355, 1, x_374); +lean_ctor_set(x_355, 0, x_373); +return x_354; +} +} +else +{ +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; +x_375 = lean_ctor_get(x_355, 0); +lean_inc(x_375); +lean_dec(x_355); +x_376 = lean_ctor_get(x_356, 0); +lean_inc(x_376); +x_377 = lean_ctor_get(x_356, 1); +lean_inc(x_377); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + lean_ctor_release(x_356, 1); + x_378 = x_356; +} else { + lean_dec_ref(x_356); + x_378 = lean_box(0); +} +lean_inc(x_375); +x_379 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_379, 0, x_375); +lean_closure_set(x_379, 1, x_376); +x_380 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_381 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_381, 0, x_380); +lean_closure_set(x_381, 1, x_379); +x_382 = l_Lean_Omega_LinearCombo_neg(x_375); +if (lean_is_scalar(x_378)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_378; +} +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_377); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_382); +lean_ctor_set(x_384, 1, x_383); +lean_ctor_set(x_354, 0, x_384); +return x_354; +} +} +else +{ +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; +x_385 = lean_ctor_get(x_354, 1); +lean_inc(x_385); +lean_dec(x_354); +x_386 = lean_ctor_get(x_355, 0); +lean_inc(x_386); +if (lean_is_exclusive(x_355)) { + lean_ctor_release(x_355, 0); + lean_ctor_release(x_355, 1); + x_387 = x_355; +} else { + lean_dec_ref(x_355); + x_387 = lean_box(0); +} +x_388 = lean_ctor_get(x_356, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_356, 1); +lean_inc(x_389); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + lean_ctor_release(x_356, 1); + x_390 = x_356; +} else { + lean_dec_ref(x_356); + x_390 = lean_box(0); +} +lean_inc(x_386); +x_391 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); +lean_closure_set(x_391, 0, x_386); +lean_closure_set(x_391, 1, x_388); +x_392 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_393 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_393, 0, x_392); +lean_closure_set(x_393, 1, x_391); +x_394 = l_Lean_Omega_LinearCombo_neg(x_386); +if (lean_is_scalar(x_390)) { + x_395 = lean_alloc_ctor(0, 2, 0); +} else { + x_395 = x_390; +} +lean_ctor_set(x_395, 0, x_393); +lean_ctor_set(x_395, 1, x_389); +if (lean_is_scalar(x_387)) { + x_396 = lean_alloc_ctor(0, 2, 0); +} else { + x_396 = x_387; +} +lean_ctor_set(x_396, 0, x_394); +lean_ctor_set(x_396, 1, x_395); +x_397 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_397, 0, x_396); +lean_ctor_set(x_397, 1, x_385); +return x_397; +} +} +else +{ +uint8_t x_398; +x_398 = !lean_is_exclusive(x_354); +if (x_398 == 0) +{ +return x_354; +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; +x_399 = lean_ctor_get(x_354, 0); +x_400 = lean_ctor_get(x_354, 1); +lean_inc(x_400); +lean_inc(x_399); +lean_dec(x_354); +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_399); +lean_ctor_set(x_401, 1, x_400); +return x_401; +} +} +} +} +} +} +else +{ +lean_object* x_402; uint8_t x_403; +lean_dec(x_19); +x_402 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +x_403 = lean_string_dec_eq(x_18, x_402); +lean_dec(x_18); +if (x_403 == 0) +{ +lean_object* x_404; +lean_dec(x_17); +x_404 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_404; +} +else +{ +lean_object* x_405; lean_object* x_406; uint8_t x_407; +x_405 = lean_array_get_size(x_17); +x_406 = lean_unsigned_to_nat(6u); +x_407 = lean_nat_dec_eq(x_405, x_406); +lean_dec(x_405); +if (x_407 == 0) +{ +lean_object* x_408; +lean_dec(x_17); +x_408 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_408; +} +else +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; +lean_dec(x_1); +x_409 = lean_unsigned_to_nat(4u); +x_410 = lean_array_fget(x_17, x_409); +x_411 = lean_unsigned_to_nat(5u); +x_412 = lean_array_fget(x_17, x_411); +lean_dec(x_17); +lean_inc(x_9); +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_413 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_410, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_413) == 0) +{ +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; +x_414 = lean_ctor_get(x_413, 0); +lean_inc(x_414); +x_415 = lean_ctor_get(x_414, 1); +lean_inc(x_415); +x_416 = lean_ctor_get(x_413, 1); +lean_inc(x_416); +lean_dec(x_413); +x_417 = lean_ctor_get(x_414, 0); +lean_inc(x_417); +lean_dec(x_414); +x_418 = lean_ctor_get(x_415, 0); +lean_inc(x_418); +x_419 = lean_ctor_get(x_415, 1); +lean_inc(x_419); +lean_dec(x_415); +x_420 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_412, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_416); +if (lean_obj_tag(x_420) == 0) +{ +lean_object* x_421; lean_object* x_422; uint8_t x_423; +x_421 = lean_ctor_get(x_420, 0); +lean_inc(x_421); +x_422 = lean_ctor_get(x_421, 1); +lean_inc(x_422); +x_423 = !lean_is_exclusive(x_420); +if (x_423 == 0) +{ +lean_object* x_424; uint8_t x_425; +x_424 = lean_ctor_get(x_420, 0); +lean_dec(x_424); +x_425 = !lean_is_exclusive(x_421); +if (x_425 == 0) +{ +lean_object* x_426; lean_object* x_427; uint8_t x_428; +x_426 = lean_ctor_get(x_421, 0); +x_427 = lean_ctor_get(x_421, 1); +lean_dec(x_427); +x_428 = !lean_is_exclusive(x_422); +if (x_428 == 0) +{ +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; uint8_t x_438; +x_429 = lean_ctor_get(x_422, 0); +x_430 = lean_ctor_get(x_422, 1); +lean_inc(x_426); +lean_inc(x_417); +x_431 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_431, 0, x_417); +lean_closure_set(x_431, 1, x_426); +lean_closure_set(x_431, 2, x_418); +lean_closure_set(x_431, 3, x_429); +x_432 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_433 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_433, 0, x_432); +lean_closure_set(x_433, 1, x_431); +x_434 = l_Lean_Omega_LinearCombo_sub(x_417, x_426); +x_435 = lean_ctor_get(x_430, 1); +lean_inc(x_435); +lean_dec(x_430); +x_436 = lean_array_get_size(x_435); +x_437 = lean_unsigned_to_nat(0u); +x_438 = lean_nat_dec_lt(x_437, x_436); +if (x_438 == 0) +{ +lean_dec(x_436); +lean_dec(x_435); +lean_ctor_set(x_422, 1, x_419); +lean_ctor_set(x_422, 0, x_433); +lean_ctor_set(x_421, 0, x_434); +return x_420; +} +else +{ +uint8_t x_439; +x_439 = lean_nat_dec_le(x_436, x_436); +if (x_439 == 0) +{ +lean_dec(x_436); +lean_dec(x_435); +lean_ctor_set(x_422, 1, x_419); +lean_ctor_set(x_422, 0, x_433); +lean_ctor_set(x_421, 0, x_434); +return x_420; +} +else +{ +size_t x_440; size_t x_441; lean_object* x_442; +x_440 = 0; +x_441 = lean_usize_of_nat(x_436); +lean_dec(x_436); +x_442 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_435, x_440, x_441, x_419); +lean_dec(x_435); +lean_ctor_set(x_422, 1, x_442); +lean_ctor_set(x_422, 0, x_433); +lean_ctor_set(x_421, 0, x_434); +return x_420; +} +} +} +else +{ +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; uint8_t x_452; +x_443 = lean_ctor_get(x_422, 0); +x_444 = lean_ctor_get(x_422, 1); +lean_inc(x_444); +lean_inc(x_443); +lean_dec(x_422); +lean_inc(x_426); +lean_inc(x_417); +x_445 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_445, 0, x_417); +lean_closure_set(x_445, 1, x_426); +lean_closure_set(x_445, 2, x_418); +lean_closure_set(x_445, 3, x_443); +x_446 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_447 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_447, 0, x_446); +lean_closure_set(x_447, 1, x_445); +x_448 = l_Lean_Omega_LinearCombo_sub(x_417, x_426); +x_449 = lean_ctor_get(x_444, 1); +lean_inc(x_449); +lean_dec(x_444); +x_450 = lean_array_get_size(x_449); +x_451 = lean_unsigned_to_nat(0u); +x_452 = lean_nat_dec_lt(x_451, x_450); +if (x_452 == 0) +{ +lean_object* x_453; +lean_dec(x_450); +lean_dec(x_449); +x_453 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_453, 0, x_447); +lean_ctor_set(x_453, 1, x_419); +lean_ctor_set(x_421, 1, x_453); +lean_ctor_set(x_421, 0, x_448); +return x_420; +} +else +{ +uint8_t x_454; +x_454 = lean_nat_dec_le(x_450, x_450); +if (x_454 == 0) +{ +lean_object* x_455; +lean_dec(x_450); +lean_dec(x_449); +x_455 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_455, 0, x_447); +lean_ctor_set(x_455, 1, x_419); +lean_ctor_set(x_421, 1, x_455); +lean_ctor_set(x_421, 0, x_448); +return x_420; +} +else +{ +size_t x_456; size_t x_457; lean_object* x_458; lean_object* x_459; +x_456 = 0; +x_457 = lean_usize_of_nat(x_450); +lean_dec(x_450); +x_458 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_449, x_456, x_457, x_419); +lean_dec(x_449); +x_459 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_459, 0, x_447); +lean_ctor_set(x_459, 1, x_458); +lean_ctor_set(x_421, 1, x_459); +lean_ctor_set(x_421, 0, x_448); +return x_420; +} +} +} +} +else +{ +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; uint8_t x_471; +x_460 = lean_ctor_get(x_421, 0); +lean_inc(x_460); +lean_dec(x_421); +x_461 = lean_ctor_get(x_422, 0); +lean_inc(x_461); +x_462 = lean_ctor_get(x_422, 1); +lean_inc(x_462); +if (lean_is_exclusive(x_422)) { + lean_ctor_release(x_422, 0); + lean_ctor_release(x_422, 1); + x_463 = x_422; +} else { + lean_dec_ref(x_422); + x_463 = lean_box(0); +} +lean_inc(x_460); +lean_inc(x_417); +x_464 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_464, 0, x_417); +lean_closure_set(x_464, 1, x_460); +lean_closure_set(x_464, 2, x_418); +lean_closure_set(x_464, 3, x_461); +x_465 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_466 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_466, 0, x_465); +lean_closure_set(x_466, 1, x_464); +x_467 = l_Lean_Omega_LinearCombo_sub(x_417, x_460); +x_468 = lean_ctor_get(x_462, 1); +lean_inc(x_468); +lean_dec(x_462); +x_469 = lean_array_get_size(x_468); +x_470 = lean_unsigned_to_nat(0u); +x_471 = lean_nat_dec_lt(x_470, x_469); +if (x_471 == 0) +{ +lean_object* x_472; lean_object* x_473; +lean_dec(x_469); +lean_dec(x_468); +if (lean_is_scalar(x_463)) { + x_472 = lean_alloc_ctor(0, 2, 0); +} else { + x_472 = x_463; +} +lean_ctor_set(x_472, 0, x_466); +lean_ctor_set(x_472, 1, x_419); +x_473 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_473, 0, x_467); +lean_ctor_set(x_473, 1, x_472); +lean_ctor_set(x_420, 0, x_473); +return x_420; +} +else +{ +uint8_t x_474; +x_474 = lean_nat_dec_le(x_469, x_469); +if (x_474 == 0) +{ +lean_object* x_475; lean_object* x_476; +lean_dec(x_469); +lean_dec(x_468); +if (lean_is_scalar(x_463)) { + x_475 = lean_alloc_ctor(0, 2, 0); +} else { + x_475 = x_463; +} +lean_ctor_set(x_475, 0, x_466); +lean_ctor_set(x_475, 1, x_419); +x_476 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_476, 0, x_467); +lean_ctor_set(x_476, 1, x_475); +lean_ctor_set(x_420, 0, x_476); +return x_420; +} +else +{ +size_t x_477; size_t x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; +x_477 = 0; +x_478 = lean_usize_of_nat(x_469); +lean_dec(x_469); +x_479 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_468, x_477, x_478, x_419); +lean_dec(x_468); +if (lean_is_scalar(x_463)) { + x_480 = lean_alloc_ctor(0, 2, 0); +} else { + x_480 = x_463; +} +lean_ctor_set(x_480, 0, x_466); +lean_ctor_set(x_480, 1, x_479); +x_481 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_481, 0, x_467); +lean_ctor_set(x_481, 1, x_480); +lean_ctor_set(x_420, 0, x_481); +return x_420; +} +} +} +} +else +{ +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; uint8_t x_495; +x_482 = lean_ctor_get(x_420, 1); +lean_inc(x_482); +lean_dec(x_420); +x_483 = lean_ctor_get(x_421, 0); +lean_inc(x_483); +if (lean_is_exclusive(x_421)) { + lean_ctor_release(x_421, 0); + lean_ctor_release(x_421, 1); + x_484 = x_421; +} else { + lean_dec_ref(x_421); + x_484 = lean_box(0); +} +x_485 = lean_ctor_get(x_422, 0); +lean_inc(x_485); +x_486 = lean_ctor_get(x_422, 1); +lean_inc(x_486); +if (lean_is_exclusive(x_422)) { + lean_ctor_release(x_422, 0); + lean_ctor_release(x_422, 1); + x_487 = x_422; +} else { + lean_dec_ref(x_422); + x_487 = lean_box(0); +} +lean_inc(x_483); +lean_inc(x_417); +x_488 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); +lean_closure_set(x_488, 0, x_417); +lean_closure_set(x_488, 1, x_483); +lean_closure_set(x_488, 2, x_418); +lean_closure_set(x_488, 3, x_485); +x_489 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_490 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_490, 0, x_489); +lean_closure_set(x_490, 1, x_488); +x_491 = l_Lean_Omega_LinearCombo_sub(x_417, x_483); +x_492 = lean_ctor_get(x_486, 1); +lean_inc(x_492); +lean_dec(x_486); +x_493 = lean_array_get_size(x_492); +x_494 = lean_unsigned_to_nat(0u); +x_495 = lean_nat_dec_lt(x_494, x_493); +if (x_495 == 0) +{ +lean_object* x_496; lean_object* x_497; lean_object* x_498; +lean_dec(x_493); +lean_dec(x_492); +if (lean_is_scalar(x_487)) { + x_496 = lean_alloc_ctor(0, 2, 0); +} else { + x_496 = x_487; +} +lean_ctor_set(x_496, 0, x_490); +lean_ctor_set(x_496, 1, x_419); +if (lean_is_scalar(x_484)) { + x_497 = lean_alloc_ctor(0, 2, 0); +} else { + x_497 = x_484; +} +lean_ctor_set(x_497, 0, x_491); +lean_ctor_set(x_497, 1, x_496); +x_498 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_498, 0, x_497); +lean_ctor_set(x_498, 1, x_482); +return x_498; +} +else +{ +uint8_t x_499; +x_499 = lean_nat_dec_le(x_493, x_493); +if (x_499 == 0) +{ +lean_object* x_500; lean_object* x_501; lean_object* x_502; +lean_dec(x_493); +lean_dec(x_492); +if (lean_is_scalar(x_487)) { + x_500 = lean_alloc_ctor(0, 2, 0); +} else { + x_500 = x_487; +} +lean_ctor_set(x_500, 0, x_490); +lean_ctor_set(x_500, 1, x_419); +if (lean_is_scalar(x_484)) { + x_501 = lean_alloc_ctor(0, 2, 0); +} else { + x_501 = x_484; +} +lean_ctor_set(x_501, 0, x_491); +lean_ctor_set(x_501, 1, x_500); +x_502 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_502, 0, x_501); +lean_ctor_set(x_502, 1, x_482); +return x_502; +} +else +{ +size_t x_503; size_t x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; +x_503 = 0; +x_504 = lean_usize_of_nat(x_493); +lean_dec(x_493); +x_505 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_492, x_503, x_504, x_419); +lean_dec(x_492); +if (lean_is_scalar(x_487)) { + x_506 = lean_alloc_ctor(0, 2, 0); +} else { + x_506 = x_487; +} +lean_ctor_set(x_506, 0, x_490); +lean_ctor_set(x_506, 1, x_505); +if (lean_is_scalar(x_484)) { + x_507 = lean_alloc_ctor(0, 2, 0); +} else { + x_507 = x_484; +} +lean_ctor_set(x_507, 0, x_491); +lean_ctor_set(x_507, 1, x_506); +x_508 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_508, 0, x_507); +lean_ctor_set(x_508, 1, x_482); +return x_508; +} +} +} +} +else +{ +uint8_t x_509; +lean_dec(x_419); +lean_dec(x_418); +lean_dec(x_417); +x_509 = !lean_is_exclusive(x_420); +if (x_509 == 0) +{ +return x_420; +} +else +{ +lean_object* x_510; lean_object* x_511; lean_object* x_512; +x_510 = lean_ctor_get(x_420, 0); +x_511 = lean_ctor_get(x_420, 1); +lean_inc(x_511); +lean_inc(x_510); +lean_dec(x_420); +x_512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_512, 0, x_510); +lean_ctor_set(x_512, 1, x_511); +return x_512; +} +} +} +else +{ +uint8_t x_513; +lean_dec(x_412); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_513 = !lean_is_exclusive(x_413); +if (x_513 == 0) +{ +return x_413; +} +else +{ +lean_object* x_514; lean_object* x_515; lean_object* x_516; +x_514 = lean_ctor_get(x_413, 0); +x_515 = lean_ctor_get(x_413, 1); +lean_inc(x_515); +lean_inc(x_514); +lean_dec(x_413); +x_516 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_516, 0, x_514); +lean_ctor_set(x_516, 1, x_515); +return x_516; +} +} +} +} +} +} +else +{ +lean_object* x_517; uint8_t x_518; +lean_dec(x_19); +x_517 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; +x_518 = lean_string_dec_eq(x_18, x_517); +lean_dec(x_18); if (x_518 == 0) { lean_object* x_519; @@ -11835,296 +11003,27 @@ return x_519; } else { -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; -x_520 = lean_unsigned_to_nat(2u); -x_521 = lean_array_fget(x_17, x_520); -x_522 = lean_unsigned_to_nat(3u); -x_523 = lean_array_fget(x_17, x_522); +lean_object* x_520; lean_object* x_521; uint8_t x_522; +x_520 = lean_array_get_size(x_17); +x_521 = lean_unsigned_to_nat(6u); +x_522 = lean_nat_dec_eq(x_520, x_521); +lean_dec(x_520); +if (x_522 == 0) +{ +lean_object* x_523; lean_dec(x_17); -x_524 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68; -x_525 = l_Lean_mkAppB(x_524, x_521, x_523); -x_526 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_525, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_526; -} -} -} -} +x_523 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_523; } else { -lean_object* x_527; uint8_t x_528; -lean_dec(x_19); -x_527 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__27; -x_528 = lean_string_dec_eq(x_18, x_527); -lean_dec(x_18); -if (x_528 == 0) -{ -lean_object* x_529; +lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +lean_dec(x_1); +x_524 = lean_unsigned_to_nat(4u); +x_525 = lean_array_fget(x_17, x_524); +x_526 = lean_unsigned_to_nat(5u); +x_527 = lean_array_fget(x_17, x_526); lean_dec(x_17); -x_529 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_529; -} -else -{ -lean_object* x_530; lean_object* x_531; uint8_t x_532; -x_530 = lean_array_get_size(x_17); -x_531 = lean_unsigned_to_nat(4u); -x_532 = lean_nat_dec_eq(x_530, x_531); -lean_dec(x_530); -if (x_532 == 0) -{ -lean_object* x_533; -lean_dec(x_17); -x_533 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_533; -} -else -{ -uint8_t x_534; -x_534 = lean_ctor_get_uint8(x_5, 3); -if (x_534 == 0) -{ -lean_object* x_535; -lean_dec(x_17); -x_535 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_535; -} -else -{ -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; -x_536 = lean_unsigned_to_nat(2u); -x_537 = lean_array_fget(x_17, x_536); -x_538 = lean_unsigned_to_nat(3u); -x_539 = lean_array_fget(x_17, x_538); -lean_dec(x_17); -x_540 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71; -x_541 = l_Lean_mkAppB(x_540, x_537, x_539); -x_542 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_541, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_542; -} -} -} -} -} -else -{ -lean_object* x_543; uint8_t x_544; -lean_dec(x_19); -x_543 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46; -x_544 = lean_string_dec_eq(x_18, x_543); -lean_dec(x_18); -if (x_544 == 0) -{ -lean_object* x_545; -lean_dec(x_17); -x_545 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_545; -} -else -{ -lean_object* x_546; lean_object* x_547; uint8_t x_548; -x_546 = lean_array_get_size(x_17); -x_547 = lean_unsigned_to_nat(6u); -x_548 = lean_nat_dec_eq(x_546, x_547); -lean_dec(x_546); -if (x_548 == 0) -{ -lean_object* x_549; -lean_dec(x_17); -x_549 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_549; -} -else -{ -lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; -x_550 = lean_unsigned_to_nat(4u); -x_551 = lean_array_fget(x_17, x_550); -x_552 = lean_unsigned_to_nat(5u); -x_553 = lean_array_fget(x_17, x_552); -lean_dec(x_17); -x_554 = l_Lean_Elab_Tactic_Omega_intCast_x3f(x_553); -if (lean_obj_tag(x_554) == 0) -{ -lean_object* x_555; -lean_dec(x_551); -x_555 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_555; -} -else -{ -lean_object* x_556; lean_object* x_557; uint8_t x_558; -x_556 = lean_ctor_get(x_554, 0); -lean_inc(x_556); -lean_dec(x_554); -x_557 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; -x_558 = lean_int_dec_lt(x_556, x_557); -if (x_558 == 0) -{ -lean_object* x_559; lean_object* x_560; uint8_t x_561; -x_559 = lean_nat_abs(x_556); -lean_dec(x_556); -x_560 = lean_unsigned_to_nat(0u); -x_561 = lean_nat_dec_eq(x_559, x_560); -lean_dec(x_559); -if (x_561 == 0) -{ -lean_object* x_562; -lean_dec(x_551); -x_562 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_562; -} -else -{ -lean_object* x_563; lean_object* x_564; lean_object* x_565; -x_563 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74; -x_564 = l_Lean_Expr_app___override(x_563, x_551); -x_565 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_564, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_565; -} -} -else -{ -lean_object* x_566; uint8_t x_567; -x_566 = lean_int_neg(x_556); -lean_dec(x_556); -x_567 = lean_int_dec_lt(x_566, x_557); -if (x_567 == 0) -{ -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; -x_568 = lean_nat_abs(x_566); -lean_dec(x_566); -x_569 = l_Lean_mkNatLit(x_568); -x_570 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24; -x_571 = l_Lean_Expr_app___override(x_570, x_569); -x_572 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77; -x_573 = l_Lean_mkAppB(x_572, x_551, x_571); -x_574 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_573, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_574; -} -else -{ -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; -x_575 = lean_nat_abs(x_566); -lean_dec(x_566); -x_576 = lean_unsigned_to_nat(1u); -x_577 = lean_nat_sub(x_575, x_576); -lean_dec(x_575); -x_578 = l_Lean_mkNatLit(x_577); -x_579 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27; -x_580 = l_Lean_Expr_app___override(x_579, x_578); -x_581 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77; -x_582 = l_Lean_mkAppB(x_581, x_551, x_580); -x_583 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_582, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_583; -} -} -} -} -} -} -} -else -{ -lean_object* x_584; uint8_t x_585; -lean_dec(x_19); -x_584 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; -x_585 = lean_string_dec_eq(x_18, x_584); -lean_dec(x_18); -if (x_585 == 0) -{ -lean_object* x_586; -lean_dec(x_17); -x_586 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_586; -} -else -{ -lean_object* x_587; lean_object* x_588; uint8_t x_589; -x_587 = lean_array_get_size(x_17); -x_588 = lean_unsigned_to_nat(6u); -x_589 = lean_nat_dec_eq(x_587, x_588); -lean_dec(x_587); -if (x_589 == 0) -{ -lean_object* x_590; -lean_dec(x_17); -x_590 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_590; -} -else -{ -lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; -x_591 = lean_unsigned_to_nat(4u); -x_592 = lean_array_fget(x_17, x_591); -x_593 = lean_unsigned_to_nat(5u); -x_594 = lean_array_fget(x_17, x_593); -lean_dec(x_17); -lean_inc(x_594); -x_595 = l_Lean_Elab_Tactic_Omega_natCast_x3f(x_594); -if (lean_obj_tag(x_595) == 0) -{ -lean_object* x_596; -lean_dec(x_594); -lean_dec(x_592); -x_596 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_596; -} -else -{ -lean_object* x_597; lean_object* x_598; lean_object* x_599; -lean_dec(x_595); -x_597 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80; -x_598 = l_Lean_mkAppB(x_597, x_592, x_594); -x_599 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_598, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_599; -} -} -} -} -} -else -{ -lean_object* x_600; uint8_t x_601; -lean_dec(x_19); -x_600 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50; -x_601 = lean_string_dec_eq(x_18, x_600); -lean_dec(x_18); -if (x_601 == 0) -{ -lean_object* x_602; -lean_dec(x_17); -x_602 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_602; -} -else -{ -lean_object* x_603; lean_object* x_604; uint8_t x_605; -x_603 = lean_array_get_size(x_17); -x_604 = lean_unsigned_to_nat(6u); -x_605 = lean_nat_dec_eq(x_603, x_604); -lean_dec(x_603); -if (x_605 == 0) -{ -lean_object* x_606; -lean_dec(x_17); -x_606 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_606; -} -else -{ -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; -x_607 = lean_unsigned_to_nat(4u); -x_608 = lean_array_fget(x_17, x_607); -x_609 = lean_unsigned_to_nat(5u); -x_610 = lean_array_fget(x_17, x_609); -lean_dec(x_17); -x_611 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearCombo), 9, 1); -lean_closure_set(x_611, 0, x_608); -x_612 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4), 10, 1); -lean_closure_set(x_612, 0, x_610); -x_613 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_613, 0, x_611); -lean_closure_set(x_613, 1, x_612); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -12132,84 +11031,426 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_614 = l_Lean_Elab_Tactic_Omega_commitWhen___rarg(x_613, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_614) == 0) +x_528 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_525, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_528) == 0) { -lean_object* x_615; -x_615 = lean_ctor_get(x_614, 0); -lean_inc(x_615); -if (lean_obj_tag(x_615) == 0) +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; +x_529 = lean_ctor_get(x_528, 0); +lean_inc(x_529); +x_530 = lean_ctor_get(x_529, 1); +lean_inc(x_530); +x_531 = lean_ctor_get(x_528, 1); +lean_inc(x_531); +lean_dec(x_528); +x_532 = lean_ctor_get(x_529, 0); +lean_inc(x_532); +lean_dec(x_529); +x_533 = lean_ctor_get(x_530, 0); +lean_inc(x_533); +x_534 = lean_ctor_get(x_530, 1); +lean_inc(x_534); +lean_dec(x_530); +x_535 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_527, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_531); +if (lean_obj_tag(x_535) == 0) { -lean_object* x_616; lean_object* x_617; -x_616 = lean_ctor_get(x_614, 1); -lean_inc(x_616); -lean_dec(x_614); -x_617 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_616); +lean_object* x_536; lean_object* x_537; uint8_t x_538; +x_536 = lean_ctor_get(x_535, 0); +lean_inc(x_536); +x_537 = lean_ctor_get(x_536, 1); +lean_inc(x_537); +x_538 = !lean_is_exclusive(x_535); +if (x_538 == 0) +{ +lean_object* x_539; uint8_t x_540; +x_539 = lean_ctor_get(x_535, 0); +lean_dec(x_539); +x_540 = !lean_is_exclusive(x_536); +if (x_540 == 0) +{ +lean_object* x_541; lean_object* x_542; uint8_t x_543; +x_541 = lean_ctor_get(x_536, 0); +x_542 = lean_ctor_get(x_536, 1); +lean_dec(x_542); +x_543 = !lean_is_exclusive(x_537); +if (x_543 == 0) +{ +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; uint8_t x_553; +x_544 = lean_ctor_get(x_537, 0); +x_545 = lean_ctor_get(x_537, 1); +lean_inc(x_541); +lean_inc(x_532); +x_546 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_546, 0, x_532); +lean_closure_set(x_546, 1, x_541); +lean_closure_set(x_546, 2, x_533); +lean_closure_set(x_546, 3, x_544); +x_547 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_548 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_548, 0, x_547); +lean_closure_set(x_548, 1, x_546); +x_549 = l_Lean_Omega_LinearCombo_add(x_532, x_541); +x_550 = lean_ctor_get(x_545, 1); +lean_inc(x_550); +lean_dec(x_545); +x_551 = lean_array_get_size(x_550); +x_552 = lean_unsigned_to_nat(0u); +x_553 = lean_nat_dec_lt(x_552, x_551); +if (x_553 == 0) +{ +lean_dec(x_551); +lean_dec(x_550); +lean_ctor_set(x_537, 1, x_534); +lean_ctor_set(x_537, 0, x_548); +lean_ctor_set(x_536, 0, x_549); +return x_535; +} +else +{ +uint8_t x_554; +x_554 = lean_nat_dec_le(x_551, x_551); +if (x_554 == 0) +{ +lean_dec(x_551); +lean_dec(x_550); +lean_ctor_set(x_537, 1, x_534); +lean_ctor_set(x_537, 0, x_548); +lean_ctor_set(x_536, 0, x_549); +return x_535; +} +else +{ +size_t x_555; size_t x_556; lean_object* x_557; +x_555 = 0; +x_556 = lean_usize_of_nat(x_551); +lean_dec(x_551); +x_557 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_550, x_555, x_556, x_534); +lean_dec(x_550); +lean_ctor_set(x_537, 1, x_557); +lean_ctor_set(x_537, 0, x_548); +lean_ctor_set(x_536, 0, x_549); +return x_535; +} +} +} +else +{ +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; uint8_t x_567; +x_558 = lean_ctor_get(x_537, 0); +x_559 = lean_ctor_get(x_537, 1); +lean_inc(x_559); +lean_inc(x_558); +lean_dec(x_537); +lean_inc(x_541); +lean_inc(x_532); +x_560 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_560, 0, x_532); +lean_closure_set(x_560, 1, x_541); +lean_closure_set(x_560, 2, x_533); +lean_closure_set(x_560, 3, x_558); +x_561 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_562 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_562, 0, x_561); +lean_closure_set(x_562, 1, x_560); +x_563 = l_Lean_Omega_LinearCombo_add(x_532, x_541); +x_564 = lean_ctor_get(x_559, 1); +lean_inc(x_564); +lean_dec(x_559); +x_565 = lean_array_get_size(x_564); +x_566 = lean_unsigned_to_nat(0u); +x_567 = lean_nat_dec_lt(x_566, x_565); +if (x_567 == 0) +{ +lean_object* x_568; +lean_dec(x_565); +lean_dec(x_564); +x_568 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_568, 0, x_562); +lean_ctor_set(x_568, 1, x_534); +lean_ctor_set(x_536, 1, x_568); +lean_ctor_set(x_536, 0, x_563); +return x_535; +} +else +{ +uint8_t x_569; +x_569 = lean_nat_dec_le(x_565, x_565); +if (x_569 == 0) +{ +lean_object* x_570; +lean_dec(x_565); +lean_dec(x_564); +x_570 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_570, 0, x_562); +lean_ctor_set(x_570, 1, x_534); +lean_ctor_set(x_536, 1, x_570); +lean_ctor_set(x_536, 0, x_563); +return x_535; +} +else +{ +size_t x_571; size_t x_572; lean_object* x_573; lean_object* x_574; +x_571 = 0; +x_572 = lean_usize_of_nat(x_565); +lean_dec(x_565); +x_573 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_564, x_571, x_572, x_534); +lean_dec(x_564); +x_574 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_574, 0, x_562); +lean_ctor_set(x_574, 1, x_573); +lean_ctor_set(x_536, 1, x_574); +lean_ctor_set(x_536, 0, x_563); +return x_535; +} +} +} +} +else +{ +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; uint8_t x_586; +x_575 = lean_ctor_get(x_536, 0); +lean_inc(x_575); +lean_dec(x_536); +x_576 = lean_ctor_get(x_537, 0); +lean_inc(x_576); +x_577 = lean_ctor_get(x_537, 1); +lean_inc(x_577); +if (lean_is_exclusive(x_537)) { + lean_ctor_release(x_537, 0); + lean_ctor_release(x_537, 1); + x_578 = x_537; +} else { + lean_dec_ref(x_537); + x_578 = lean_box(0); +} +lean_inc(x_575); +lean_inc(x_532); +x_579 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_579, 0, x_532); +lean_closure_set(x_579, 1, x_575); +lean_closure_set(x_579, 2, x_533); +lean_closure_set(x_579, 3, x_576); +x_580 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_581 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_581, 0, x_580); +lean_closure_set(x_581, 1, x_579); +x_582 = l_Lean_Omega_LinearCombo_add(x_532, x_575); +x_583 = lean_ctor_get(x_577, 1); +lean_inc(x_583); +lean_dec(x_577); +x_584 = lean_array_get_size(x_583); +x_585 = lean_unsigned_to_nat(0u); +x_586 = lean_nat_dec_lt(x_585, x_584); +if (x_586 == 0) +{ +lean_object* x_587; lean_object* x_588; +lean_dec(x_584); +lean_dec(x_583); +if (lean_is_scalar(x_578)) { + x_587 = lean_alloc_ctor(0, 2, 0); +} else { + x_587 = x_578; +} +lean_ctor_set(x_587, 0, x_581); +lean_ctor_set(x_587, 1, x_534); +x_588 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_588, 0, x_582); +lean_ctor_set(x_588, 1, x_587); +lean_ctor_set(x_535, 0, x_588); +return x_535; +} +else +{ +uint8_t x_589; +x_589 = lean_nat_dec_le(x_584, x_584); +if (x_589 == 0) +{ +lean_object* x_590; lean_object* x_591; +lean_dec(x_584); +lean_dec(x_583); +if (lean_is_scalar(x_578)) { + x_590 = lean_alloc_ctor(0, 2, 0); +} else { + x_590 = x_578; +} +lean_ctor_set(x_590, 0, x_581); +lean_ctor_set(x_590, 1, x_534); +x_591 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_591, 0, x_582); +lean_ctor_set(x_591, 1, x_590); +lean_ctor_set(x_535, 0, x_591); +return x_535; +} +else +{ +size_t x_592; size_t x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; +x_592 = 0; +x_593 = lean_usize_of_nat(x_584); +lean_dec(x_584); +x_594 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_583, x_592, x_593, x_534); +lean_dec(x_583); +if (lean_is_scalar(x_578)) { + x_595 = lean_alloc_ctor(0, 2, 0); +} else { + x_595 = x_578; +} +lean_ctor_set(x_595, 0, x_581); +lean_ctor_set(x_595, 1, x_594); +x_596 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_596, 0, x_582); +lean_ctor_set(x_596, 1, x_595); +lean_ctor_set(x_535, 0, x_596); +return x_535; +} +} +} +} +else +{ +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; uint8_t x_610; +x_597 = lean_ctor_get(x_535, 1); +lean_inc(x_597); +lean_dec(x_535); +x_598 = lean_ctor_get(x_536, 0); +lean_inc(x_598); +if (lean_is_exclusive(x_536)) { + lean_ctor_release(x_536, 0); + lean_ctor_release(x_536, 1); + x_599 = x_536; +} else { + lean_dec_ref(x_536); + x_599 = lean_box(0); +} +x_600 = lean_ctor_get(x_537, 0); +lean_inc(x_600); +x_601 = lean_ctor_get(x_537, 1); +lean_inc(x_601); +if (lean_is_exclusive(x_537)) { + lean_ctor_release(x_537, 0); + lean_ctor_release(x_537, 1); + x_602 = x_537; +} else { + lean_dec_ref(x_537); + x_602 = lean_box(0); +} +lean_inc(x_598); +lean_inc(x_532); +x_603 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); +lean_closure_set(x_603, 0, x_532); +lean_closure_set(x_603, 1, x_598); +lean_closure_set(x_603, 2, x_533); +lean_closure_set(x_603, 3, x_600); +x_604 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__39; +x_605 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); +lean_closure_set(x_605, 0, x_604); +lean_closure_set(x_605, 1, x_603); +x_606 = l_Lean_Omega_LinearCombo_add(x_532, x_598); +x_607 = lean_ctor_get(x_601, 1); +lean_inc(x_607); +lean_dec(x_601); +x_608 = lean_array_get_size(x_607); +x_609 = lean_unsigned_to_nat(0u); +x_610 = lean_nat_dec_lt(x_609, x_608); +if (x_610 == 0) +{ +lean_object* x_611; lean_object* x_612; lean_object* x_613; +lean_dec(x_608); +lean_dec(x_607); +if (lean_is_scalar(x_602)) { + x_611 = lean_alloc_ctor(0, 2, 0); +} else { + x_611 = x_602; +} +lean_ctor_set(x_611, 0, x_605); +lean_ctor_set(x_611, 1, x_534); +if (lean_is_scalar(x_599)) { + x_612 = lean_alloc_ctor(0, 2, 0); +} else { + x_612 = x_599; +} +lean_ctor_set(x_612, 0, x_606); +lean_ctor_set(x_612, 1, x_611); +x_613 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_613, 0, x_612); +lean_ctor_set(x_613, 1, x_597); +return x_613; +} +else +{ +uint8_t x_614; +x_614 = lean_nat_dec_le(x_608, x_608); +if (x_614 == 0) +{ +lean_object* x_615; lean_object* x_616; lean_object* x_617; +lean_dec(x_608); +lean_dec(x_607); +if (lean_is_scalar(x_602)) { + x_615 = lean_alloc_ctor(0, 2, 0); +} else { + x_615 = x_602; +} +lean_ctor_set(x_615, 0, x_605); +lean_ctor_set(x_615, 1, x_534); +if (lean_is_scalar(x_599)) { + x_616 = lean_alloc_ctor(0, 2, 0); +} else { + x_616 = x_599; +} +lean_ctor_set(x_616, 0, x_606); +lean_ctor_set(x_616, 1, x_615); +x_617 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_617, 0, x_616); +lean_ctor_set(x_617, 1, x_597); return x_617; } else { -uint8_t x_618; -lean_dec(x_9); -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_1); -x_618 = !lean_is_exclusive(x_614); -if (x_618 == 0) -{ -lean_object* x_619; lean_object* x_620; -x_619 = lean_ctor_get(x_614, 0); -lean_dec(x_619); -x_620 = lean_ctor_get(x_615, 0); -lean_inc(x_620); -lean_dec(x_615); -lean_ctor_set(x_614, 0, x_620); -return x_614; +size_t x_618; size_t x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; +x_618 = 0; +x_619 = lean_usize_of_nat(x_608); +lean_dec(x_608); +x_620 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_607, x_618, x_619, x_534); +lean_dec(x_607); +if (lean_is_scalar(x_602)) { + x_621 = lean_alloc_ctor(0, 2, 0); +} else { + x_621 = x_602; } -else -{ -lean_object* x_621; lean_object* x_622; lean_object* x_623; -x_621 = lean_ctor_get(x_614, 1); -lean_inc(x_621); -lean_dec(x_614); -x_622 = lean_ctor_get(x_615, 0); -lean_inc(x_622); -lean_dec(x_615); +lean_ctor_set(x_621, 0, x_605); +lean_ctor_set(x_621, 1, x_620); +if (lean_is_scalar(x_599)) { + x_622 = lean_alloc_ctor(0, 2, 0); +} else { + x_622 = x_599; +} +lean_ctor_set(x_622, 0, x_606); +lean_ctor_set(x_622, 1, x_621); x_623 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_623, 0, x_622); -lean_ctor_set(x_623, 1, x_621); +lean_ctor_set(x_623, 1, x_597); return x_623; } } } +} else { uint8_t x_624; -lean_dec(x_9); -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_1); -x_624 = !lean_is_exclusive(x_614); +lean_dec(x_534); +lean_dec(x_533); +lean_dec(x_532); +x_624 = !lean_is_exclusive(x_535); if (x_624 == 0) { -return x_614; +return x_535; } else { lean_object* x_625; lean_object* x_626; lean_object* x_627; -x_625 = lean_ctor_get(x_614, 0); -x_626 = lean_ctor_get(x_614, 1); +x_625 = lean_ctor_get(x_535, 0); +x_626 = lean_ctor_get(x_535, 1); lean_inc(x_626); lean_inc(x_625); -lean_dec(x_614); +lean_dec(x_535); x_627 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_627, 0, x_625); lean_ctor_set(x_627, 1, x_626); @@ -12217,707 +11458,10 @@ return x_627; } } } -} -} -} else { -lean_object* x_628; uint8_t x_629; -lean_dec(x_19); -x_628 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81; -x_629 = lean_string_dec_eq(x_18, x_628); -lean_dec(x_18); -if (x_629 == 0) -{ -lean_object* x_630; -lean_dec(x_17); -x_630 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_630; -} -else -{ -lean_object* x_631; lean_object* x_632; uint8_t x_633; -x_631 = lean_array_get_size(x_17); -x_632 = lean_unsigned_to_nat(3u); -x_633 = lean_nat_dec_eq(x_631, x_632); -lean_dec(x_631); -if (x_633 == 0) -{ -lean_object* x_634; -lean_dec(x_17); -x_634 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_634; -} -else -{ -lean_object* x_635; lean_object* x_636; lean_object* x_637; -lean_dec(x_1); -x_635 = lean_unsigned_to_nat(2u); -x_636 = lean_array_fget(x_17, x_635); -lean_dec(x_17); -x_637 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_636, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_637) == 0) -{ -lean_object* x_638; lean_object* x_639; uint8_t x_640; -x_638 = lean_ctor_get(x_637, 0); -lean_inc(x_638); -x_639 = lean_ctor_get(x_638, 1); -lean_inc(x_639); -x_640 = !lean_is_exclusive(x_637); -if (x_640 == 0) -{ -lean_object* x_641; uint8_t x_642; -x_641 = lean_ctor_get(x_637, 0); -lean_dec(x_641); -x_642 = !lean_is_exclusive(x_638); -if (x_642 == 0) -{ -lean_object* x_643; lean_object* x_644; uint8_t x_645; -x_643 = lean_ctor_get(x_638, 0); -x_644 = lean_ctor_get(x_638, 1); -lean_dec(x_644); -x_645 = !lean_is_exclusive(x_639); -if (x_645 == 0) -{ -lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; -x_646 = lean_ctor_get(x_639, 0); -lean_inc(x_643); -x_647 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_647, 0, x_643); -lean_closure_set(x_647, 1, x_646); -x_648 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_649 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_649, 0, x_648); -lean_closure_set(x_649, 1, x_647); -x_650 = l_Lean_Omega_LinearCombo_neg(x_643); -lean_ctor_set(x_639, 0, x_649); -lean_ctor_set(x_638, 0, x_650); -return x_637; -} -else -{ -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; -x_651 = lean_ctor_get(x_639, 0); -x_652 = lean_ctor_get(x_639, 1); -lean_inc(x_652); -lean_inc(x_651); -lean_dec(x_639); -lean_inc(x_643); -x_653 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_653, 0, x_643); -lean_closure_set(x_653, 1, x_651); -x_654 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_655 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_655, 0, x_654); -lean_closure_set(x_655, 1, x_653); -x_656 = l_Lean_Omega_LinearCombo_neg(x_643); -x_657 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_657, 0, x_655); -lean_ctor_set(x_657, 1, x_652); -lean_ctor_set(x_638, 1, x_657); -lean_ctor_set(x_638, 0, x_656); -return x_637; -} -} -else -{ -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; -x_658 = lean_ctor_get(x_638, 0); -lean_inc(x_658); -lean_dec(x_638); -x_659 = lean_ctor_get(x_639, 0); -lean_inc(x_659); -x_660 = lean_ctor_get(x_639, 1); -lean_inc(x_660); -if (lean_is_exclusive(x_639)) { - lean_ctor_release(x_639, 0); - lean_ctor_release(x_639, 1); - x_661 = x_639; -} else { - lean_dec_ref(x_639); - x_661 = lean_box(0); -} -lean_inc(x_658); -x_662 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_662, 0, x_658); -lean_closure_set(x_662, 1, x_659); -x_663 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_664 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_664, 0, x_663); -lean_closure_set(x_664, 1, x_662); -x_665 = l_Lean_Omega_LinearCombo_neg(x_658); -if (lean_is_scalar(x_661)) { - x_666 = lean_alloc_ctor(0, 2, 0); -} else { - x_666 = x_661; -} -lean_ctor_set(x_666, 0, x_664); -lean_ctor_set(x_666, 1, x_660); -x_667 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_667, 0, x_665); -lean_ctor_set(x_667, 1, x_666); -lean_ctor_set(x_637, 0, x_667); -return x_637; -} -} -else -{ -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; -x_668 = lean_ctor_get(x_637, 1); -lean_inc(x_668); -lean_dec(x_637); -x_669 = lean_ctor_get(x_638, 0); -lean_inc(x_669); -if (lean_is_exclusive(x_638)) { - lean_ctor_release(x_638, 0); - lean_ctor_release(x_638, 1); - x_670 = x_638; -} else { - lean_dec_ref(x_638); - x_670 = lean_box(0); -} -x_671 = lean_ctor_get(x_639, 0); -lean_inc(x_671); -x_672 = lean_ctor_get(x_639, 1); -lean_inc(x_672); -if (lean_is_exclusive(x_639)) { - lean_ctor_release(x_639, 0); - lean_ctor_release(x_639, 1); - x_673 = x_639; -} else { - lean_dec_ref(x_639); - x_673 = lean_box(0); -} -lean_inc(x_669); -x_674 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___boxed), 11, 2); -lean_closure_set(x_674, 0, x_669); -lean_closure_set(x_674, 1, x_671); -x_675 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_676 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_676, 0, x_675); -lean_closure_set(x_676, 1, x_674); -x_677 = l_Lean_Omega_LinearCombo_neg(x_669); -if (lean_is_scalar(x_673)) { - x_678 = lean_alloc_ctor(0, 2, 0); -} else { - x_678 = x_673; -} -lean_ctor_set(x_678, 0, x_676); -lean_ctor_set(x_678, 1, x_672); -if (lean_is_scalar(x_670)) { - x_679 = lean_alloc_ctor(0, 2, 0); -} else { - x_679 = x_670; -} -lean_ctor_set(x_679, 0, x_677); -lean_ctor_set(x_679, 1, x_678); -x_680 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_680, 0, x_679); -lean_ctor_set(x_680, 1, x_668); -return x_680; -} -} -else -{ -uint8_t x_681; -x_681 = !lean_is_exclusive(x_637); -if (x_681 == 0) -{ -return x_637; -} -else -{ -lean_object* x_682; lean_object* x_683; lean_object* x_684; -x_682 = lean_ctor_get(x_637, 0); -x_683 = lean_ctor_get(x_637, 1); -lean_inc(x_683); -lean_inc(x_682); -lean_dec(x_637); -x_684 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_684, 0, x_682); -lean_ctor_set(x_684, 1, x_683); -return x_684; -} -} -} -} -} -} -else -{ -lean_object* x_685; uint8_t x_686; -lean_dec(x_19); -x_685 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__35; -x_686 = lean_string_dec_eq(x_18, x_685); -lean_dec(x_18); -if (x_686 == 0) -{ -lean_object* x_687; -lean_dec(x_17); -x_687 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_687; -} -else -{ -lean_object* x_688; lean_object* x_689; uint8_t x_690; -x_688 = lean_array_get_size(x_17); -x_689 = lean_unsigned_to_nat(6u); -x_690 = lean_nat_dec_eq(x_688, x_689); -lean_dec(x_688); -if (x_690 == 0) -{ -lean_object* x_691; -lean_dec(x_17); -x_691 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_691; -} -else -{ -lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; -lean_dec(x_1); -x_692 = lean_unsigned_to_nat(4u); -x_693 = lean_array_fget(x_17, x_692); -x_694 = lean_unsigned_to_nat(5u); -x_695 = lean_array_fget(x_17, x_694); -lean_dec(x_17); -lean_inc(x_9); -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_696 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_693, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_696) == 0) -{ -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; -x_697 = lean_ctor_get(x_696, 0); -lean_inc(x_697); -x_698 = lean_ctor_get(x_697, 1); -lean_inc(x_698); -x_699 = lean_ctor_get(x_696, 1); -lean_inc(x_699); -lean_dec(x_696); -x_700 = lean_ctor_get(x_697, 0); -lean_inc(x_700); -lean_dec(x_697); -x_701 = lean_ctor_get(x_698, 0); -lean_inc(x_701); -x_702 = lean_ctor_get(x_698, 1); -lean_inc(x_702); -lean_dec(x_698); -x_703 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_695, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_699); -if (lean_obj_tag(x_703) == 0) -{ -lean_object* x_704; lean_object* x_705; uint8_t x_706; -x_704 = lean_ctor_get(x_703, 0); -lean_inc(x_704); -x_705 = lean_ctor_get(x_704, 1); -lean_inc(x_705); -x_706 = !lean_is_exclusive(x_703); -if (x_706 == 0) -{ -lean_object* x_707; uint8_t x_708; -x_707 = lean_ctor_get(x_703, 0); -lean_dec(x_707); -x_708 = !lean_is_exclusive(x_704); -if (x_708 == 0) -{ -lean_object* x_709; lean_object* x_710; uint8_t x_711; -x_709 = lean_ctor_get(x_704, 0); -x_710 = lean_ctor_get(x_704, 1); -lean_dec(x_710); -x_711 = !lean_is_exclusive(x_705); -if (x_711 == 0) -{ -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; uint8_t x_721; -x_712 = lean_ctor_get(x_705, 0); -x_713 = lean_ctor_get(x_705, 1); -lean_inc(x_709); -lean_inc(x_700); -x_714 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_714, 0, x_700); -lean_closure_set(x_714, 1, x_709); -lean_closure_set(x_714, 2, x_701); -lean_closure_set(x_714, 3, x_712); -x_715 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_716 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_716, 0, x_715); -lean_closure_set(x_716, 1, x_714); -x_717 = l_Lean_Omega_LinearCombo_sub(x_700, x_709); -x_718 = lean_ctor_get(x_713, 1); -lean_inc(x_718); -lean_dec(x_713); -x_719 = lean_array_get_size(x_718); -x_720 = lean_unsigned_to_nat(0u); -x_721 = lean_nat_dec_lt(x_720, x_719); -if (x_721 == 0) -{ -lean_dec(x_719); -lean_dec(x_718); -lean_ctor_set(x_705, 1, x_702); -lean_ctor_set(x_705, 0, x_716); -lean_ctor_set(x_704, 0, x_717); -return x_703; -} -else -{ -uint8_t x_722; -x_722 = lean_nat_dec_le(x_719, x_719); -if (x_722 == 0) -{ -lean_dec(x_719); -lean_dec(x_718); -lean_ctor_set(x_705, 1, x_702); -lean_ctor_set(x_705, 0, x_716); -lean_ctor_set(x_704, 0, x_717); -return x_703; -} -else -{ -size_t x_723; size_t x_724; lean_object* x_725; -x_723 = 0; -x_724 = lean_usize_of_nat(x_719); -lean_dec(x_719); -x_725 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_718, x_723, x_724, x_702); -lean_dec(x_718); -lean_ctor_set(x_705, 1, x_725); -lean_ctor_set(x_705, 0, x_716); -lean_ctor_set(x_704, 0, x_717); -return x_703; -} -} -} -else -{ -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; uint8_t x_735; -x_726 = lean_ctor_get(x_705, 0); -x_727 = lean_ctor_get(x_705, 1); -lean_inc(x_727); -lean_inc(x_726); -lean_dec(x_705); -lean_inc(x_709); -lean_inc(x_700); -x_728 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_728, 0, x_700); -lean_closure_set(x_728, 1, x_709); -lean_closure_set(x_728, 2, x_701); -lean_closure_set(x_728, 3, x_726); -x_729 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_730 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_730, 0, x_729); -lean_closure_set(x_730, 1, x_728); -x_731 = l_Lean_Omega_LinearCombo_sub(x_700, x_709); -x_732 = lean_ctor_get(x_727, 1); -lean_inc(x_732); -lean_dec(x_727); -x_733 = lean_array_get_size(x_732); -x_734 = lean_unsigned_to_nat(0u); -x_735 = lean_nat_dec_lt(x_734, x_733); -if (x_735 == 0) -{ -lean_object* x_736; -lean_dec(x_733); -lean_dec(x_732); -x_736 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_736, 0, x_730); -lean_ctor_set(x_736, 1, x_702); -lean_ctor_set(x_704, 1, x_736); -lean_ctor_set(x_704, 0, x_731); -return x_703; -} -else -{ -uint8_t x_737; -x_737 = lean_nat_dec_le(x_733, x_733); -if (x_737 == 0) -{ -lean_object* x_738; -lean_dec(x_733); -lean_dec(x_732); -x_738 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_738, 0, x_730); -lean_ctor_set(x_738, 1, x_702); -lean_ctor_set(x_704, 1, x_738); -lean_ctor_set(x_704, 0, x_731); -return x_703; -} -else -{ -size_t x_739; size_t x_740; lean_object* x_741; lean_object* x_742; -x_739 = 0; -x_740 = lean_usize_of_nat(x_733); -lean_dec(x_733); -x_741 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_732, x_739, x_740, x_702); -lean_dec(x_732); -x_742 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_742, 0, x_730); -lean_ctor_set(x_742, 1, x_741); -lean_ctor_set(x_704, 1, x_742); -lean_ctor_set(x_704, 0, x_731); -return x_703; -} -} -} -} -else -{ -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; uint8_t x_754; -x_743 = lean_ctor_get(x_704, 0); -lean_inc(x_743); -lean_dec(x_704); -x_744 = lean_ctor_get(x_705, 0); -lean_inc(x_744); -x_745 = lean_ctor_get(x_705, 1); -lean_inc(x_745); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - lean_ctor_release(x_705, 1); - x_746 = x_705; -} else { - lean_dec_ref(x_705); - x_746 = lean_box(0); -} -lean_inc(x_743); -lean_inc(x_700); -x_747 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_747, 0, x_700); -lean_closure_set(x_747, 1, x_743); -lean_closure_set(x_747, 2, x_701); -lean_closure_set(x_747, 3, x_744); -x_748 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_749 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_749, 0, x_748); -lean_closure_set(x_749, 1, x_747); -x_750 = l_Lean_Omega_LinearCombo_sub(x_700, x_743); -x_751 = lean_ctor_get(x_745, 1); -lean_inc(x_751); -lean_dec(x_745); -x_752 = lean_array_get_size(x_751); -x_753 = lean_unsigned_to_nat(0u); -x_754 = lean_nat_dec_lt(x_753, x_752); -if (x_754 == 0) -{ -lean_object* x_755; lean_object* x_756; -lean_dec(x_752); -lean_dec(x_751); -if (lean_is_scalar(x_746)) { - x_755 = lean_alloc_ctor(0, 2, 0); -} else { - x_755 = x_746; -} -lean_ctor_set(x_755, 0, x_749); -lean_ctor_set(x_755, 1, x_702); -x_756 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_756, 0, x_750); -lean_ctor_set(x_756, 1, x_755); -lean_ctor_set(x_703, 0, x_756); -return x_703; -} -else -{ -uint8_t x_757; -x_757 = lean_nat_dec_le(x_752, x_752); -if (x_757 == 0) -{ -lean_object* x_758; lean_object* x_759; -lean_dec(x_752); -lean_dec(x_751); -if (lean_is_scalar(x_746)) { - x_758 = lean_alloc_ctor(0, 2, 0); -} else { - x_758 = x_746; -} -lean_ctor_set(x_758, 0, x_749); -lean_ctor_set(x_758, 1, x_702); -x_759 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_759, 0, x_750); -lean_ctor_set(x_759, 1, x_758); -lean_ctor_set(x_703, 0, x_759); -return x_703; -} -else -{ -size_t x_760; size_t x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; -x_760 = 0; -x_761 = lean_usize_of_nat(x_752); -lean_dec(x_752); -x_762 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_751, x_760, x_761, x_702); -lean_dec(x_751); -if (lean_is_scalar(x_746)) { - x_763 = lean_alloc_ctor(0, 2, 0); -} else { - x_763 = x_746; -} -lean_ctor_set(x_763, 0, x_749); -lean_ctor_set(x_763, 1, x_762); -x_764 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_764, 0, x_750); -lean_ctor_set(x_764, 1, x_763); -lean_ctor_set(x_703, 0, x_764); -return x_703; -} -} -} -} -else -{ -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; uint8_t x_778; -x_765 = lean_ctor_get(x_703, 1); -lean_inc(x_765); -lean_dec(x_703); -x_766 = lean_ctor_get(x_704, 0); -lean_inc(x_766); -if (lean_is_exclusive(x_704)) { - lean_ctor_release(x_704, 0); - lean_ctor_release(x_704, 1); - x_767 = x_704; -} else { - lean_dec_ref(x_704); - x_767 = lean_box(0); -} -x_768 = lean_ctor_get(x_705, 0); -lean_inc(x_768); -x_769 = lean_ctor_get(x_705, 1); -lean_inc(x_769); -if (lean_is_exclusive(x_705)) { - lean_ctor_release(x_705, 0); - lean_ctor_release(x_705, 1); - x_770 = x_705; -} else { - lean_dec_ref(x_705); - x_770 = lean_box(0); -} -lean_inc(x_766); -lean_inc(x_700); -x_771 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__6___boxed), 13, 4); -lean_closure_set(x_771, 0, x_700); -lean_closure_set(x_771, 1, x_766); -lean_closure_set(x_771, 2, x_701); -lean_closure_set(x_771, 3, x_768); -x_772 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_773 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_773, 0, x_772); -lean_closure_set(x_773, 1, x_771); -x_774 = l_Lean_Omega_LinearCombo_sub(x_700, x_766); -x_775 = lean_ctor_get(x_769, 1); -lean_inc(x_775); -lean_dec(x_769); -x_776 = lean_array_get_size(x_775); -x_777 = lean_unsigned_to_nat(0u); -x_778 = lean_nat_dec_lt(x_777, x_776); -if (x_778 == 0) -{ -lean_object* x_779; lean_object* x_780; lean_object* x_781; -lean_dec(x_776); -lean_dec(x_775); -if (lean_is_scalar(x_770)) { - x_779 = lean_alloc_ctor(0, 2, 0); -} else { - x_779 = x_770; -} -lean_ctor_set(x_779, 0, x_773); -lean_ctor_set(x_779, 1, x_702); -if (lean_is_scalar(x_767)) { - x_780 = lean_alloc_ctor(0, 2, 0); -} else { - x_780 = x_767; -} -lean_ctor_set(x_780, 0, x_774); -lean_ctor_set(x_780, 1, x_779); -x_781 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_781, 0, x_780); -lean_ctor_set(x_781, 1, x_765); -return x_781; -} -else -{ -uint8_t x_782; -x_782 = lean_nat_dec_le(x_776, x_776); -if (x_782 == 0) -{ -lean_object* x_783; lean_object* x_784; lean_object* x_785; -lean_dec(x_776); -lean_dec(x_775); -if (lean_is_scalar(x_770)) { - x_783 = lean_alloc_ctor(0, 2, 0); -} else { - x_783 = x_770; -} -lean_ctor_set(x_783, 0, x_773); -lean_ctor_set(x_783, 1, x_702); -if (lean_is_scalar(x_767)) { - x_784 = lean_alloc_ctor(0, 2, 0); -} else { - x_784 = x_767; -} -lean_ctor_set(x_784, 0, x_774); -lean_ctor_set(x_784, 1, x_783); -x_785 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_785, 0, x_784); -lean_ctor_set(x_785, 1, x_765); -return x_785; -} -else -{ -size_t x_786; size_t x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; -x_786 = 0; -x_787 = lean_usize_of_nat(x_776); -lean_dec(x_776); -x_788 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_775, x_786, x_787, x_702); -lean_dec(x_775); -if (lean_is_scalar(x_770)) { - x_789 = lean_alloc_ctor(0, 2, 0); -} else { - x_789 = x_770; -} -lean_ctor_set(x_789, 0, x_773); -lean_ctor_set(x_789, 1, x_788); -if (lean_is_scalar(x_767)) { - x_790 = lean_alloc_ctor(0, 2, 0); -} else { - x_790 = x_767; -} -lean_ctor_set(x_790, 0, x_774); -lean_ctor_set(x_790, 1, x_789); -x_791 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_791, 0, x_790); -lean_ctor_set(x_791, 1, x_765); -return x_791; -} -} -} -} -else -{ -uint8_t x_792; -lean_dec(x_702); -lean_dec(x_701); -lean_dec(x_700); -x_792 = !lean_is_exclusive(x_703); -if (x_792 == 0) -{ -return x_703; -} -else -{ -lean_object* x_793; lean_object* x_794; lean_object* x_795; -x_793 = lean_ctor_get(x_703, 0); -x_794 = lean_ctor_get(x_703, 1); -lean_inc(x_794); -lean_inc(x_793); -lean_dec(x_703); -x_795 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_795, 0, x_793); -lean_ctor_set(x_795, 1, x_794); -return x_795; -} -} -} -else -{ -uint8_t x_796; -lean_dec(x_695); +uint8_t x_628; +lean_dec(x_527); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -12925,23 +11469,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_796 = !lean_is_exclusive(x_696); -if (x_796 == 0) +x_628 = !lean_is_exclusive(x_528); +if (x_628 == 0) { -return x_696; +return x_528; } else { -lean_object* x_797; lean_object* x_798; lean_object* x_799; -x_797 = lean_ctor_get(x_696, 0); -x_798 = lean_ctor_get(x_696, 1); -lean_inc(x_798); -lean_inc(x_797); -lean_dec(x_696); -x_799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_799, 0, x_797); -lean_ctor_set(x_799, 1, x_798); -return x_799; +lean_object* x_629; lean_object* x_630; lean_object* x_631; +x_629 = lean_ctor_get(x_528, 0); +x_630 = lean_ctor_get(x_528, 1); +lean_inc(x_630); +lean_inc(x_629); +lean_dec(x_528); +x_631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_631, 0, x_629); +lean_ctor_set(x_631, 1, x_630); +return x_631; } } } @@ -12950,589 +11494,84 @@ return x_799; } else { -lean_object* x_800; uint8_t x_801; -lean_dec(x_19); -x_800 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54; -x_801 = lean_string_dec_eq(x_18, x_800); -lean_dec(x_18); -if (x_801 == 0) -{ -lean_object* x_802; -lean_dec(x_17); -x_802 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_802; -} -else -{ -lean_object* x_803; lean_object* x_804; uint8_t x_805; -x_803 = lean_array_get_size(x_17); -x_804 = lean_unsigned_to_nat(6u); -x_805 = lean_nat_dec_eq(x_803, x_804); -lean_dec(x_803); -if (x_805 == 0) -{ -lean_object* x_806; -lean_dec(x_17); -x_806 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_806; -} -else -{ -lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; -lean_dec(x_1); -x_807 = lean_unsigned_to_nat(4u); -x_808 = lean_array_fget(x_17, x_807); -x_809 = lean_unsigned_to_nat(5u); -x_810 = lean_array_fget(x_17, x_809); -lean_dec(x_17); -lean_inc(x_9); -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_811 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_808, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_811) == 0) -{ -lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; -x_812 = lean_ctor_get(x_811, 0); -lean_inc(x_812); -x_813 = lean_ctor_get(x_812, 1); -lean_inc(x_813); -x_814 = lean_ctor_get(x_811, 1); -lean_inc(x_814); -lean_dec(x_811); -x_815 = lean_ctor_get(x_812, 0); -lean_inc(x_815); -lean_dec(x_812); -x_816 = lean_ctor_get(x_813, 0); -lean_inc(x_816); -x_817 = lean_ctor_get(x_813, 1); -lean_inc(x_817); -lean_dec(x_813); -x_818 = l_Lean_Elab_Tactic_Omega_asLinearCombo(x_810, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_814); -if (lean_obj_tag(x_818) == 0) -{ -lean_object* x_819; lean_object* x_820; uint8_t x_821; -x_819 = lean_ctor_get(x_818, 0); -lean_inc(x_819); -x_820 = lean_ctor_get(x_819, 1); -lean_inc(x_820); -x_821 = !lean_is_exclusive(x_818); -if (x_821 == 0) -{ -lean_object* x_822; uint8_t x_823; -x_822 = lean_ctor_get(x_818, 0); -lean_dec(x_822); -x_823 = !lean_is_exclusive(x_819); -if (x_823 == 0) -{ -lean_object* x_824; lean_object* x_825; uint8_t x_826; -x_824 = lean_ctor_get(x_819, 0); -x_825 = lean_ctor_get(x_819, 1); -lean_dec(x_825); -x_826 = !lean_is_exclusive(x_820); -if (x_826 == 0) -{ -lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; uint8_t x_836; -x_827 = lean_ctor_get(x_820, 0); -x_828 = lean_ctor_get(x_820, 1); -lean_inc(x_824); -lean_inc(x_815); -x_829 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_829, 0, x_815); -lean_closure_set(x_829, 1, x_824); -lean_closure_set(x_829, 2, x_816); -lean_closure_set(x_829, 3, x_827); -x_830 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_831 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_831, 0, x_830); -lean_closure_set(x_831, 1, x_829); -x_832 = l_Lean_Omega_LinearCombo_add(x_815, x_824); -x_833 = lean_ctor_get(x_828, 1); -lean_inc(x_833); -lean_dec(x_828); -x_834 = lean_array_get_size(x_833); -x_835 = lean_unsigned_to_nat(0u); -x_836 = lean_nat_dec_lt(x_835, x_834); -if (x_836 == 0) -{ -lean_dec(x_834); -lean_dec(x_833); -lean_ctor_set(x_820, 1, x_817); -lean_ctor_set(x_820, 0, x_831); -lean_ctor_set(x_819, 0, x_832); -return x_818; -} -else -{ -uint8_t x_837; -x_837 = lean_nat_dec_le(x_834, x_834); -if (x_837 == 0) -{ -lean_dec(x_834); -lean_dec(x_833); -lean_ctor_set(x_820, 1, x_817); -lean_ctor_set(x_820, 0, x_831); -lean_ctor_set(x_819, 0, x_832); -return x_818; -} -else -{ -size_t x_838; size_t x_839; lean_object* x_840; -x_838 = 0; -x_839 = lean_usize_of_nat(x_834); -lean_dec(x_834); -x_840 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_833, x_838, x_839, x_817); -lean_dec(x_833); -lean_ctor_set(x_820, 1, x_840); -lean_ctor_set(x_820, 0, x_831); -lean_ctor_set(x_819, 0, x_832); -return x_818; -} -} -} -else -{ -lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; uint8_t x_850; -x_841 = lean_ctor_get(x_820, 0); -x_842 = lean_ctor_get(x_820, 1); -lean_inc(x_842); -lean_inc(x_841); -lean_dec(x_820); -lean_inc(x_824); -lean_inc(x_815); -x_843 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_843, 0, x_815); -lean_closure_set(x_843, 1, x_824); -lean_closure_set(x_843, 2, x_816); -lean_closure_set(x_843, 3, x_841); -x_844 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_845 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_845, 0, x_844); -lean_closure_set(x_845, 1, x_843); -x_846 = l_Lean_Omega_LinearCombo_add(x_815, x_824); -x_847 = lean_ctor_get(x_842, 1); -lean_inc(x_847); -lean_dec(x_842); -x_848 = lean_array_get_size(x_847); -x_849 = lean_unsigned_to_nat(0u); -x_850 = lean_nat_dec_lt(x_849, x_848); -if (x_850 == 0) -{ -lean_object* x_851; -lean_dec(x_848); -lean_dec(x_847); -x_851 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_851, 0, x_845); -lean_ctor_set(x_851, 1, x_817); -lean_ctor_set(x_819, 1, x_851); -lean_ctor_set(x_819, 0, x_846); -return x_818; -} -else -{ -uint8_t x_852; -x_852 = lean_nat_dec_le(x_848, x_848); -if (x_852 == 0) -{ -lean_object* x_853; -lean_dec(x_848); -lean_dec(x_847); -x_853 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_853, 0, x_845); -lean_ctor_set(x_853, 1, x_817); -lean_ctor_set(x_819, 1, x_853); -lean_ctor_set(x_819, 0, x_846); -return x_818; -} -else -{ -size_t x_854; size_t x_855; lean_object* x_856; lean_object* x_857; -x_854 = 0; -x_855 = lean_usize_of_nat(x_848); -lean_dec(x_848); -x_856 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_847, x_854, x_855, x_817); -lean_dec(x_847); -x_857 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_857, 0, x_845); -lean_ctor_set(x_857, 1, x_856); -lean_ctor_set(x_819, 1, x_857); -lean_ctor_set(x_819, 0, x_846); -return x_818; -} -} -} -} -else -{ -lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; uint8_t x_869; -x_858 = lean_ctor_get(x_819, 0); -lean_inc(x_858); -lean_dec(x_819); -x_859 = lean_ctor_get(x_820, 0); -lean_inc(x_859); -x_860 = lean_ctor_get(x_820, 1); -lean_inc(x_860); -if (lean_is_exclusive(x_820)) { - lean_ctor_release(x_820, 0); - lean_ctor_release(x_820, 1); - x_861 = x_820; -} else { - lean_dec_ref(x_820); - x_861 = lean_box(0); -} -lean_inc(x_858); -lean_inc(x_815); -x_862 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_862, 0, x_815); -lean_closure_set(x_862, 1, x_858); -lean_closure_set(x_862, 2, x_816); -lean_closure_set(x_862, 3, x_859); -x_863 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_864 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_864, 0, x_863); -lean_closure_set(x_864, 1, x_862); -x_865 = l_Lean_Omega_LinearCombo_add(x_815, x_858); -x_866 = lean_ctor_get(x_860, 1); -lean_inc(x_866); -lean_dec(x_860); -x_867 = lean_array_get_size(x_866); -x_868 = lean_unsigned_to_nat(0u); -x_869 = lean_nat_dec_lt(x_868, x_867); -if (x_869 == 0) -{ -lean_object* x_870; lean_object* x_871; -lean_dec(x_867); -lean_dec(x_866); -if (lean_is_scalar(x_861)) { - x_870 = lean_alloc_ctor(0, 2, 0); -} else { - x_870 = x_861; -} -lean_ctor_set(x_870, 0, x_864); -lean_ctor_set(x_870, 1, x_817); -x_871 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_871, 0, x_865); -lean_ctor_set(x_871, 1, x_870); -lean_ctor_set(x_818, 0, x_871); -return x_818; -} -else -{ -uint8_t x_872; -x_872 = lean_nat_dec_le(x_867, x_867); -if (x_872 == 0) -{ -lean_object* x_873; lean_object* x_874; -lean_dec(x_867); -lean_dec(x_866); -if (lean_is_scalar(x_861)) { - x_873 = lean_alloc_ctor(0, 2, 0); -} else { - x_873 = x_861; -} -lean_ctor_set(x_873, 0, x_864); -lean_ctor_set(x_873, 1, x_817); -x_874 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_874, 0, x_865); -lean_ctor_set(x_874, 1, x_873); -lean_ctor_set(x_818, 0, x_874); -return x_818; -} -else -{ -size_t x_875; size_t x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; -x_875 = 0; -x_876 = lean_usize_of_nat(x_867); -lean_dec(x_867); -x_877 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_866, x_875, x_876, x_817); -lean_dec(x_866); -if (lean_is_scalar(x_861)) { - x_878 = lean_alloc_ctor(0, 2, 0); -} else { - x_878 = x_861; -} -lean_ctor_set(x_878, 0, x_864); -lean_ctor_set(x_878, 1, x_877); -x_879 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_879, 0, x_865); -lean_ctor_set(x_879, 1, x_878); -lean_ctor_set(x_818, 0, x_879); -return x_818; -} -} -} -} -else -{ -lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; uint8_t x_893; -x_880 = lean_ctor_get(x_818, 1); -lean_inc(x_880); -lean_dec(x_818); -x_881 = lean_ctor_get(x_819, 0); -lean_inc(x_881); -if (lean_is_exclusive(x_819)) { - lean_ctor_release(x_819, 0); - lean_ctor_release(x_819, 1); - x_882 = x_819; -} else { - lean_dec_ref(x_819); - x_882 = lean_box(0); -} -x_883 = lean_ctor_get(x_820, 0); -lean_inc(x_883); -x_884 = lean_ctor_get(x_820, 1); -lean_inc(x_884); -if (lean_is_exclusive(x_820)) { - lean_ctor_release(x_820, 0); - lean_ctor_release(x_820, 1); - x_885 = x_820; -} else { - lean_dec_ref(x_820); - x_885 = lean_box(0); -} -lean_inc(x_881); -lean_inc(x_815); -x_886 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___boxed), 13, 4); -lean_closure_set(x_886, 0, x_815); -lean_closure_set(x_886, 1, x_881); -lean_closure_set(x_886, 2, x_816); -lean_closure_set(x_886, 3, x_883); -x_887 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82; -x_888 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); -lean_closure_set(x_888, 0, x_887); -lean_closure_set(x_888, 1, x_886); -x_889 = l_Lean_Omega_LinearCombo_add(x_815, x_881); -x_890 = lean_ctor_get(x_884, 1); -lean_inc(x_890); -lean_dec(x_884); -x_891 = lean_array_get_size(x_890); -x_892 = lean_unsigned_to_nat(0u); -x_893 = lean_nat_dec_lt(x_892, x_891); -if (x_893 == 0) -{ -lean_object* x_894; lean_object* x_895; lean_object* x_896; -lean_dec(x_891); -lean_dec(x_890); -if (lean_is_scalar(x_885)) { - x_894 = lean_alloc_ctor(0, 2, 0); -} else { - x_894 = x_885; -} -lean_ctor_set(x_894, 0, x_888); -lean_ctor_set(x_894, 1, x_817); -if (lean_is_scalar(x_882)) { - x_895 = lean_alloc_ctor(0, 2, 0); -} else { - x_895 = x_882; -} -lean_ctor_set(x_895, 0, x_889); -lean_ctor_set(x_895, 1, x_894); -x_896 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_896, 0, x_895); -lean_ctor_set(x_896, 1, x_880); -return x_896; -} -else -{ -uint8_t x_897; -x_897 = lean_nat_dec_le(x_891, x_891); -if (x_897 == 0) -{ -lean_object* x_898; lean_object* x_899; lean_object* x_900; -lean_dec(x_891); -lean_dec(x_890); -if (lean_is_scalar(x_885)) { - x_898 = lean_alloc_ctor(0, 2, 0); -} else { - x_898 = x_885; -} -lean_ctor_set(x_898, 0, x_888); -lean_ctor_set(x_898, 1, x_817); -if (lean_is_scalar(x_882)) { - x_899 = lean_alloc_ctor(0, 2, 0); -} else { - x_899 = x_882; -} -lean_ctor_set(x_899, 0, x_889); -lean_ctor_set(x_899, 1, x_898); -x_900 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_900, 0, x_899); -lean_ctor_set(x_900, 1, x_880); -return x_900; -} -else -{ -size_t x_901; size_t x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; -x_901 = 0; -x_902 = lean_usize_of_nat(x_891); -lean_dec(x_891); -x_903 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega_asLinearComboImpl___spec__3(x_890, x_901, x_902, x_817); -lean_dec(x_890); -if (lean_is_scalar(x_885)) { - x_904 = lean_alloc_ctor(0, 2, 0); -} else { - x_904 = x_885; -} -lean_ctor_set(x_904, 0, x_888); -lean_ctor_set(x_904, 1, x_903); -if (lean_is_scalar(x_882)) { - x_905 = lean_alloc_ctor(0, 2, 0); -} else { - x_905 = x_882; -} -lean_ctor_set(x_905, 0, x_889); -lean_ctor_set(x_905, 1, x_904); -x_906 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_906, 0, x_905); -lean_ctor_set(x_906, 1, x_880); -return x_906; -} -} -} -} -else -{ -uint8_t x_907; -lean_dec(x_817); -lean_dec(x_816); -lean_dec(x_815); -x_907 = !lean_is_exclusive(x_818); -if (x_907 == 0) -{ -return x_818; -} -else -{ -lean_object* x_908; lean_object* x_909; lean_object* x_910; -x_908 = lean_ctor_get(x_818, 0); -x_909 = lean_ctor_get(x_818, 1); -lean_inc(x_909); -lean_inc(x_908); -lean_dec(x_818); -x_910 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_910, 0, x_908); -lean_ctor_set(x_910, 1, x_909); -return x_910; -} -} -} -else -{ -uint8_t x_911; -lean_dec(x_810); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_911 = !lean_is_exclusive(x_811); -if (x_911 == 0) -{ -return x_811; -} -else -{ -lean_object* x_912; lean_object* x_913; lean_object* x_914; -x_912 = lean_ctor_get(x_811, 0); -x_913 = lean_ctor_get(x_811, 1); -lean_inc(x_913); -lean_inc(x_912); -lean_dec(x_811); -x_914 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_914, 0, x_912); -lean_ctor_set(x_914, 1, x_913); -return x_914; -} -} -} -} -} -} -else -{ -lean_object* x_915; +lean_object* x_632; lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -x_915 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_915; +x_632 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_632; } } else { -lean_object* x_916; +lean_object* x_633; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); -x_916 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_916; +x_633 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_633; } } else { -lean_object* x_917; +lean_object* x_634; lean_dec(x_14); lean_dec(x_13); -x_917 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_917; +x_634 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_634; } } else { -lean_object* x_918; lean_object* x_919; +lean_object* x_635; lean_object* x_636; lean_inc(x_1); -x_918 = l_Lean_Expr_fvarId_x21(x_1); +x_635 = l_Lean_Expr_fvarId_x21(x_1); lean_inc(x_6); -x_919 = l_Lean_FVarId_getValue_x3f(x_918, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_919) == 0) +x_636 = l_Lean_FVarId_getValue_x3f(x_635, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_636) == 0) { -lean_object* x_920; -x_920 = lean_ctor_get(x_919, 0); -lean_inc(x_920); -if (lean_obj_tag(x_920) == 0) +lean_object* x_637; +x_637 = lean_ctor_get(x_636, 0); +lean_inc(x_637); +if (lean_obj_tag(x_637) == 0) { -lean_object* x_921; lean_object* x_922; -x_921 = lean_ctor_get(x_919, 1); -lean_inc(x_921); -lean_dec(x_919); -x_922 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_921); -return x_922; +lean_object* x_638; lean_object* x_639; +x_638 = lean_ctor_get(x_636, 1); +lean_inc(x_638); +lean_dec(x_636); +x_639 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_638); +return x_639; } else { -lean_object* x_923; lean_object* x_924; lean_object* x_925; -x_923 = lean_ctor_get(x_919, 1); -lean_inc(x_923); -lean_dec(x_919); -x_924 = lean_ctor_get(x_920, 0); -lean_inc(x_924); -lean_dec(x_920); +lean_object* x_640; lean_object* x_641; lean_object* x_642; +x_640 = lean_ctor_get(x_636, 1); +lean_inc(x_640); +lean_dec(x_636); +x_641 = lean_ctor_get(x_637, 0); +lean_inc(x_641); +lean_dec(x_637); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_1); -x_925 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_924, x_6, x_7, x_8, x_9, x_923); -if (lean_obj_tag(x_925) == 0) +x_642 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_641, x_6, x_7, x_8, x_9, x_640); +if (lean_obj_tag(x_642) == 0) { -lean_object* x_926; lean_object* x_927; lean_object* x_928; -x_926 = lean_ctor_get(x_925, 0); -lean_inc(x_926); -x_927 = lean_ctor_get(x_925, 1); -lean_inc(x_927); -lean_dec(x_925); -x_928 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_926, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_927); -return x_928; +lean_object* x_643; lean_object* x_644; lean_object* x_645; +x_643 = lean_ctor_get(x_642, 0); +lean_inc(x_643); +x_644 = lean_ctor_get(x_642, 1); +lean_inc(x_644); +lean_dec(x_642); +x_645 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_643, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_644); +return x_645; } else { -uint8_t x_929; +uint8_t x_646; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -13541,30 +11580,30 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_929 = !lean_is_exclusive(x_925); -if (x_929 == 0) +x_646 = !lean_is_exclusive(x_642); +if (x_646 == 0) { -return x_925; +return x_642; } else { -lean_object* x_930; lean_object* x_931; lean_object* x_932; -x_930 = lean_ctor_get(x_925, 0); -x_931 = lean_ctor_get(x_925, 1); -lean_inc(x_931); -lean_inc(x_930); -lean_dec(x_925); -x_932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_932, 0, x_930); -lean_ctor_set(x_932, 1, x_931); -return x_932; +lean_object* x_647; lean_object* x_648; lean_object* x_649; +x_647 = lean_ctor_get(x_642, 0); +x_648 = lean_ctor_get(x_642, 1); +lean_inc(x_648); +lean_inc(x_647); +lean_dec(x_642); +x_649 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_649, 0, x_647); +lean_ctor_set(x_649, 1, x_648); +return x_649; } } } } else { -uint8_t x_933; +uint8_t x_650; lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -13573,30 +11612,30 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_933 = !lean_is_exclusive(x_919); -if (x_933 == 0) +x_650 = !lean_is_exclusive(x_636); +if (x_650 == 0) { -return x_919; +return x_636; } else { -lean_object* x_934; lean_object* x_935; lean_object* x_936; -x_934 = lean_ctor_get(x_919, 0); -x_935 = lean_ctor_get(x_919, 1); -lean_inc(x_935); -lean_inc(x_934); -lean_dec(x_919); -x_936 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_936, 0, x_934); -lean_ctor_set(x_936, 1, x_935); -return x_936; +lean_object* x_651; lean_object* x_652; lean_object* x_653; +x_651 = lean_ctor_get(x_636, 0); +x_652 = lean_ctor_get(x_636, 1); +lean_inc(x_652); +lean_inc(x_651); +lean_dec(x_636); +x_653 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_653, 0, x_651); +lean_ctor_set(x_653, 1, x_652); +return x_653; } } } } else { -lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; +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_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -13604,28 +11643,28 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_937 = lean_ctor_get(x_11, 0); -lean_inc(x_937); +x_654 = lean_ctor_get(x_11, 0); +lean_inc(x_654); lean_dec(x_11); -x_938 = lean_box(0); -x_939 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_939, 0, x_937); -lean_ctor_set(x_939, 1, x_938); -lean_inc(x_939); -x_940 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___boxed), 10, 2); -lean_closure_set(x_940, 0, x_1); -lean_closure_set(x_940, 1, x_939); -x_941 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; -x_942 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_942, 0, x_940); -lean_ctor_set(x_942, 1, x_941); -x_943 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_943, 0, x_939); -lean_ctor_set(x_943, 1, x_942); -x_944 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_944, 0, x_943); -lean_ctor_set(x_944, 1, x_10); -return x_944; +x_655 = lean_box(0); +x_656 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_656, 0, x_654); +lean_ctor_set(x_656, 1, x_655); +lean_inc(x_656); +x_657 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___boxed), 10, 2); +lean_closure_set(x_657, 0, x_1); +lean_closure_set(x_657, 1, x_656); +x_658 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__2; +x_659 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_659, 0, x_657); +lean_ctor_set(x_659, 1, x_658); +x_660 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_660, 0, x_656); +lean_ctor_set(x_660, 1, x_659); +x_661 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_661, 0, x_660); +lean_ctor_set(x_661, 1, x_10); +return x_661; } } } @@ -13693,6 +11732,3042 @@ return x_26; } } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HPow", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HShiftLeft", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HShiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Fin", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("val", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("natAbs", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_natAbs", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hShiftRight", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_shiftRight_eq_div_pow", 27); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hShiftLeft", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_shiftLeft_eq", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_max", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_min", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_snd_mk", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_fst_mk", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hPow", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_pow", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_sub_sub", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_emod", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("natCast_ofNat", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_ediv", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_mul", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_add", 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("succ", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_succ", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__16; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54; +x_2 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5; +x_3 = l_Lean_Expr_const___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast(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_object* x_11) { +_start: +{ +if (lean_obj_tag(x_3) == 1) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +lean_inc(x_7); +x_13 = l_Lean_FVarId_getValue_x3f(x_12, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_2); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_13, 1); +lean_inc(x_17); +lean_dec(x_13); +x_18 = lean_ctor_get(x_14, 0); +lean_inc(x_18); +lean_dec(x_14); +x_19 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; +x_20 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_21 = l_Lean_mkApp3(x_19, x_20, x_2, x_18); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_1); +x_22 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_21, x_7, x_8, x_9, x_10, x_17); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +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 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_24); +return x_25; +} +else +{ +uint8_t x_26; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_22); +if (x_26 == 0) +{ +return x_22; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_22, 0); +x_28 = lean_ctor_get(x_22, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_22); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_13); +if (x_30 == 0) +{ +return x_13; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_13, 0); +x_32 = lean_ctor_get(x_13, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_13); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; +x_34 = l_Lean_Expr_getAppFnArgs(x_3); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +if (lean_obj_tag(x_35) == 1) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +if (lean_obj_tag(x_36) == 1) +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_38 = lean_ctor_get(x_34, 1); +lean_inc(x_38); +lean_dec(x_34); +x_39 = lean_ctor_get(x_35, 1); +lean_inc(x_39); +lean_dec(x_35); +x_40 = lean_ctor_get(x_36, 1); +lean_inc(x_40); +lean_dec(x_36); +x_41 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_42 = lean_string_dec_eq(x_40, x_41); +if (x_42 == 0) +{ +lean_object* x_43; uint8_t x_44; +x_43 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +x_44 = lean_string_dec_eq(x_40, x_43); +if (x_44 == 0) +{ +lean_object* x_45; uint8_t x_46; +x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_46 = lean_string_dec_eq(x_40, x_45); +if (x_46 == 0) +{ +lean_object* x_47; uint8_t x_48; +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__5; +x_48 = lean_string_dec_eq(x_40, x_47); +if (x_48 == 0) +{ +lean_object* x_49; uint8_t x_50; +x_49 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; +x_50 = lean_string_dec_eq(x_40, x_49); +if (x_50 == 0) +{ +lean_object* x_51; uint8_t x_52; +x_51 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__4; +x_52 = lean_string_dec_eq(x_40, x_51); +if (x_52 == 0) +{ +lean_object* x_53; uint8_t x_54; +x_53 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; +x_54 = lean_string_dec_eq(x_40, x_53); +if (x_54 == 0) +{ +lean_object* x_55; uint8_t x_56; +x_55 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1; +x_56 = lean_string_dec_eq(x_40, x_55); +if (x_56 == 0) +{ +lean_object* x_57; uint8_t x_58; +x_57 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_58 = lean_string_dec_eq(x_40, x_57); +if (x_58 == 0) +{ +lean_object* x_59; uint8_t x_60; +x_59 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__6; +x_60 = lean_string_dec_eq(x_40, x_59); +if (x_60 == 0) +{ +lean_object* x_61; uint8_t x_62; +x_61 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__7; +x_62 = lean_string_dec_eq(x_40, x_61); +if (x_62 == 0) +{ +lean_object* x_63; uint8_t x_64; +x_63 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2; +x_64 = lean_string_dec_eq(x_40, x_63); +if (x_64 == 0) +{ +lean_object* x_65; uint8_t x_66; +x_65 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3; +x_66 = lean_string_dec_eq(x_40, x_65); +if (x_66 == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_68 = lean_string_dec_eq(x_40, x_67); +if (x_68 == 0) +{ +lean_object* x_69; uint8_t x_70; +x_69 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_70 = lean_string_dec_eq(x_40, x_69); +lean_dec(x_40); +if (x_70 == 0) +{ +lean_object* x_71; +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_2); +x_71 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_71; +} +else +{ +lean_object* x_72; uint8_t x_73; +x_72 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5; +x_73 = lean_string_dec_eq(x_39, x_72); +lean_dec(x_39); +if (x_73 == 0) +{ +lean_object* x_74; +lean_dec(x_38); +lean_dec(x_2); +x_74 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_74; +} +else +{ +lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_75 = lean_array_get_size(x_38); +x_76 = lean_unsigned_to_nat(2u); +x_77 = lean_nat_dec_eq(x_75, x_76); +lean_dec(x_75); +if (x_77 == 0) +{ +lean_object* x_78; +lean_dec(x_38); +lean_dec(x_2); +x_78 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_78; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_79 = lean_unsigned_to_nat(0u); +x_80 = lean_array_fget(x_38, x_79); +x_81 = lean_unsigned_to_nat(1u); +x_82 = lean_array_fget(x_38, x_81); +lean_dec(x_38); +x_83 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal(x_1, x_2, x_80, x_82, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_83; +} +} +} +} +else +{ +lean_object* x_84; uint8_t x_85; +lean_dec(x_40); +lean_dec(x_2); +x_84 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6; +x_85 = lean_string_dec_eq(x_39, x_84); +lean_dec(x_39); +if (x_85 == 0) +{ +lean_object* x_86; +lean_dec(x_38); +x_86 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_86; +} +else +{ +lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_87 = lean_array_get_size(x_38); +x_88 = lean_unsigned_to_nat(1u); +x_89 = lean_nat_dec_eq(x_87, x_88); +lean_dec(x_87); +if (x_89 == 0) +{ +lean_object* x_90; +lean_dec(x_38); +x_90 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_90; +} +else +{ +uint8_t x_91; +x_91 = lean_ctor_get_uint8(x_6, 2); +if (x_91 == 0) +{ +lean_object* x_92; +lean_dec(x_38); +x_92 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_92; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_93 = lean_unsigned_to_nat(0u); +x_94 = lean_array_fget(x_38, x_93); +lean_dec(x_38); +x_95 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__9; +x_96 = l_Lean_Expr_app___override(x_95, x_94); +x_97 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_96, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_97; +} +} +} +} +} +else +{ +lean_object* x_98; uint8_t x_99; +lean_dec(x_40); +lean_dec(x_2); +x_98 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10; +x_99 = lean_string_dec_eq(x_39, x_98); +lean_dec(x_39); +if (x_99 == 0) +{ +lean_object* x_100; +lean_dec(x_38); +x_100 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_100; +} +else +{ +lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_101 = lean_array_get_size(x_38); +x_102 = lean_unsigned_to_nat(6u); +x_103 = lean_nat_dec_eq(x_101, x_102); +lean_dec(x_101); +if (x_103 == 0) +{ +lean_object* x_104; +lean_dec(x_38); +x_104 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_104; +} +else +{ +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; +x_105 = lean_unsigned_to_nat(4u); +x_106 = lean_array_fget(x_38, x_105); +x_107 = lean_unsigned_to_nat(5u); +x_108 = lean_array_fget(x_38, x_107); +lean_dec(x_38); +x_109 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13; +x_110 = l_Lean_mkAppB(x_109, x_106, x_108); +x_111 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_110, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_111; +} +} +} +} +else +{ +lean_object* x_112; uint8_t x_113; +lean_dec(x_40); +lean_dec(x_2); +x_112 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14; +x_113 = lean_string_dec_eq(x_39, x_112); +lean_dec(x_39); +if (x_113 == 0) +{ +lean_object* x_114; +lean_dec(x_38); +x_114 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_114; +} +else +{ +lean_object* x_115; lean_object* x_116; uint8_t x_117; +x_115 = lean_array_get_size(x_38); +x_116 = lean_unsigned_to_nat(6u); +x_117 = lean_nat_dec_eq(x_115, x_116); +lean_dec(x_115); +if (x_117 == 0) +{ +lean_object* x_118; +lean_dec(x_38); +x_118 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_118; +} +else +{ +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; +x_119 = lean_unsigned_to_nat(4u); +x_120 = lean_array_fget(x_38, x_119); +x_121 = lean_unsigned_to_nat(5u); +x_122 = lean_array_fget(x_38, x_121); +lean_dec(x_38); +x_123 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__17; +x_124 = l_Lean_mkAppB(x_123, x_120, x_122); +x_125 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_124, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_125; +} +} +} +} +else +{ +lean_object* x_126; uint8_t x_127; +lean_dec(x_40); +lean_dec(x_2); +x_126 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__17; +x_127 = lean_string_dec_eq(x_39, x_126); +lean_dec(x_39); +if (x_127 == 0) +{ +lean_object* x_128; +lean_dec(x_38); +x_128 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_128; +} +else +{ +lean_object* x_129; lean_object* x_130; uint8_t x_131; +x_129 = lean_array_get_size(x_38); +x_130 = lean_unsigned_to_nat(4u); +x_131 = lean_nat_dec_eq(x_129, x_130); +lean_dec(x_129); +if (x_131 == 0) +{ +lean_object* x_132; +lean_dec(x_38); +x_132 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_132; +} +else +{ +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; +x_133 = lean_unsigned_to_nat(2u); +x_134 = lean_array_fget(x_38, x_133); +x_135 = lean_unsigned_to_nat(3u); +x_136 = lean_array_fget(x_38, x_135); +lean_dec(x_38); +x_137 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20; +x_138 = l_Lean_mkAppB(x_137, x_134, x_136); +x_139 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_138, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_139; +} +} +} +} +else +{ +lean_object* x_140; uint8_t x_141; +lean_dec(x_40); +lean_dec(x_2); +x_140 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__21; +x_141 = lean_string_dec_eq(x_39, x_140); +lean_dec(x_39); +if (x_141 == 0) +{ +lean_object* x_142; +lean_dec(x_38); +x_142 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_142; +} +else +{ +lean_object* x_143; lean_object* x_144; uint8_t x_145; +x_143 = lean_array_get_size(x_38); +x_144 = lean_unsigned_to_nat(4u); +x_145 = lean_nat_dec_eq(x_143, x_144); +lean_dec(x_143); +if (x_145 == 0) +{ +lean_object* x_146; +lean_dec(x_38); +x_146 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_146; +} +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; +x_147 = lean_unsigned_to_nat(2u); +x_148 = lean_array_fget(x_38, x_147); +x_149 = lean_unsigned_to_nat(3u); +x_150 = lean_array_fget(x_38, x_149); +lean_dec(x_38); +x_151 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23; +x_152 = l_Lean_mkAppB(x_151, x_148, x_150); +x_153 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_152, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_153; +} +} +} +} +else +{ +lean_object* x_154; uint8_t x_155; +lean_dec(x_40); +lean_dec(x_2); +x_154 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; +x_155 = lean_string_dec_eq(x_39, x_154); +if (x_155 == 0) +{ +lean_object* x_156; uint8_t x_157; +x_156 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__11; +x_157 = lean_string_dec_eq(x_39, x_156); +lean_dec(x_39); +if (x_157 == 0) +{ +lean_object* x_158; +lean_dec(x_38); +x_158 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_158; +} +else +{ +lean_object* x_159; lean_object* x_160; uint8_t x_161; +x_159 = lean_array_get_size(x_38); +x_160 = lean_unsigned_to_nat(3u); +x_161 = lean_nat_dec_eq(x_159, x_160); +lean_dec(x_159); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_38); +x_162 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_162; +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_163 = lean_unsigned_to_nat(0u); +x_164 = lean_array_fget(x_38, x_163); +x_165 = lean_unsigned_to_nat(2u); +x_166 = lean_array_fget(x_38, x_165); +lean_dec(x_38); +if (lean_obj_tag(x_166) == 5) +{ +lean_object* x_167; +x_167 = lean_ctor_get(x_166, 0); +lean_inc(x_167); +if (lean_obj_tag(x_167) == 5) +{ +lean_object* x_168; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +if (lean_obj_tag(x_168) == 5) +{ +lean_object* x_169; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +lean_dec(x_168); +if (lean_obj_tag(x_169) == 5) +{ +lean_object* x_170; +x_170 = lean_ctor_get(x_169, 0); +lean_inc(x_170); +lean_dec(x_169); +if (lean_obj_tag(x_170) == 4) +{ +lean_object* x_171; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +if (lean_obj_tag(x_171) == 1) +{ +lean_object* x_172; +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +if (lean_obj_tag(x_172) == 1) +{ +lean_object* x_173; +x_173 = lean_ctor_get(x_172, 0); +lean_inc(x_173); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; +x_174 = lean_ctor_get(x_166, 1); +lean_inc(x_174); +lean_dec(x_166); +x_175 = lean_ctor_get(x_167, 1); +lean_inc(x_175); +lean_dec(x_167); +x_176 = lean_ctor_get(x_170, 1); +lean_inc(x_176); +lean_dec(x_170); +x_177 = lean_ctor_get(x_171, 1); +lean_inc(x_177); +lean_dec(x_171); +x_178 = lean_ctor_get(x_172, 1); +lean_inc(x_178); +lean_dec(x_172); +x_179 = lean_string_dec_eq(x_178, x_57); +lean_dec(x_178); +if (x_179 == 0) +{ +lean_object* x_180; +lean_dec(x_177); +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_180 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_180; +} +else +{ +lean_object* x_181; uint8_t x_182; +x_181 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; +x_182 = lean_string_dec_eq(x_177, x_181); +lean_dec(x_177); +if (x_182 == 0) +{ +lean_object* x_183; +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_183 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_183; +} +else +{ +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_184; +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_184 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_184; +} +else +{ +lean_object* x_185; +x_185 = lean_ctor_get(x_176, 1); +lean_inc(x_185); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_186 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_186; +} +else +{ +lean_object* x_187; +x_187 = lean_ctor_get(x_185, 0); +lean_inc(x_187); +if (lean_obj_tag(x_187) == 0) +{ +uint8_t x_188; +x_188 = !lean_is_exclusive(x_185); +if (x_188 == 0) +{ +lean_object* x_189; lean_object* x_190; +x_189 = lean_ctor_get(x_185, 1); +x_190 = lean_ctor_get(x_185, 0); +lean_dec(x_190); +if (lean_obj_tag(x_189) == 0) +{ +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_191 = lean_ctor_get(x_176, 0); +lean_inc(x_191); +lean_dec(x_176); +x_192 = lean_box(0); +lean_ctor_set(x_185, 1, x_192); +lean_ctor_set(x_185, 0, x_191); +x_193 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25; +x_194 = l_Lean_Expr_const___override(x_193, x_185); +x_195 = l_Lean_mkApp3(x_194, x_164, x_175, x_174); +x_196 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_195, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_196; +} +else +{ +lean_object* x_197; +lean_free_object(x_185); +lean_dec(x_189); +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_197 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_197; +} +} +else +{ +lean_object* x_198; +x_198 = lean_ctor_get(x_185, 1); +lean_inc(x_198); +lean_dec(x_185); +if (lean_obj_tag(x_198) == 0) +{ +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; +x_199 = lean_ctor_get(x_176, 0); +lean_inc(x_199); +lean_dec(x_176); +x_200 = lean_box(0); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_199); +lean_ctor_set(x_201, 1, x_200); +x_202 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25; +x_203 = l_Lean_Expr_const___override(x_202, x_201); +x_204 = l_Lean_mkApp3(x_203, x_164, x_175, x_174); +x_205 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_204, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_205; +} +else +{ +lean_object* x_206; +lean_dec(x_198); +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_206 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_206; +} +} +} +else +{ +lean_object* x_207; +lean_dec(x_187); +lean_dec(x_185); +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_174); +lean_dec(x_164); +x_207 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_207; +} +} +} +} +} +} +else +{ +lean_object* x_208; +lean_dec(x_173); +lean_dec(x_172); +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_208 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_208; +} +} +else +{ +lean_object* x_209; +lean_dec(x_172); +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_209 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_209; +} +} +else +{ +lean_object* x_210; +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_210 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_210; +} +} +else +{ +lean_object* x_211; +lean_dec(x_170); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_211 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_211; +} +} +else +{ +lean_object* x_212; +lean_dec(x_169); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_212 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_212; +} +} +else +{ +lean_object* x_213; +lean_dec(x_168); +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_213 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_213; +} +} +else +{ +lean_object* x_214; +lean_dec(x_167); +lean_dec(x_166); +lean_dec(x_164); +x_214 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_214; +} +} +else +{ +lean_object* x_215; +lean_dec(x_166); +lean_dec(x_164); +x_215 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_215; +} +} +} +} +else +{ +lean_object* x_216; lean_object* x_217; uint8_t x_218; +lean_dec(x_39); +x_216 = lean_array_get_size(x_38); +x_217 = lean_unsigned_to_nat(3u); +x_218 = lean_nat_dec_eq(x_216, x_217); +lean_dec(x_216); +if (x_218 == 0) +{ +lean_object* x_219; +lean_dec(x_38); +x_219 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_219; +} +else +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_220 = lean_unsigned_to_nat(1u); +x_221 = lean_array_fget(x_38, x_220); +x_222 = lean_unsigned_to_nat(2u); +x_223 = lean_array_fget(x_38, x_222); +lean_dec(x_38); +if (lean_obj_tag(x_223) == 5) +{ +lean_object* x_224; +x_224 = lean_ctor_get(x_223, 0); +lean_inc(x_224); +if (lean_obj_tag(x_224) == 5) +{ +lean_object* x_225; +x_225 = lean_ctor_get(x_224, 0); +lean_inc(x_225); +if (lean_obj_tag(x_225) == 5) +{ +lean_object* x_226; +x_226 = lean_ctor_get(x_225, 0); +lean_inc(x_226); +lean_dec(x_225); +if (lean_obj_tag(x_226) == 5) +{ +lean_object* x_227; +x_227 = lean_ctor_get(x_226, 0); +lean_inc(x_227); +lean_dec(x_226); +if (lean_obj_tag(x_227) == 4) +{ +lean_object* x_228; +x_228 = lean_ctor_get(x_227, 0); +lean_inc(x_228); +if (lean_obj_tag(x_228) == 1) +{ +lean_object* x_229; +x_229 = lean_ctor_get(x_228, 0); +lean_inc(x_229); +if (lean_obj_tag(x_229) == 1) +{ +lean_object* x_230; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +if (lean_obj_tag(x_230) == 0) +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +x_231 = lean_ctor_get(x_223, 1); +lean_inc(x_231); +lean_dec(x_223); +x_232 = lean_ctor_get(x_224, 1); +lean_inc(x_232); +lean_dec(x_224); +x_233 = lean_ctor_get(x_227, 1); +lean_inc(x_233); +lean_dec(x_227); +x_234 = lean_ctor_get(x_228, 1); +lean_inc(x_234); +lean_dec(x_228); +x_235 = lean_ctor_get(x_229, 1); +lean_inc(x_235); +lean_dec(x_229); +x_236 = lean_string_dec_eq(x_235, x_57); +lean_dec(x_235); +if (x_236 == 0) +{ +lean_object* x_237; +lean_dec(x_234); +lean_dec(x_233); +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_237 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_237; +} +else +{ +lean_object* x_238; uint8_t x_239; +x_238 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__5; +x_239 = lean_string_dec_eq(x_234, x_238); +lean_dec(x_234); +if (x_239 == 0) +{ +lean_object* x_240; +lean_dec(x_233); +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_240 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_240; +} +else +{ +if (lean_obj_tag(x_233) == 0) +{ +lean_object* x_241; +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_241 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_241; +} +else +{ +lean_object* x_242; +x_242 = lean_ctor_get(x_233, 0); +lean_inc(x_242); +if (lean_obj_tag(x_242) == 0) +{ +lean_object* x_243; +x_243 = lean_ctor_get(x_233, 1); +lean_inc(x_243); +lean_dec(x_233); +if (lean_obj_tag(x_243) == 0) +{ +lean_object* x_244; +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_244 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_244; +} +else +{ +lean_object* x_245; +x_245 = lean_ctor_get(x_243, 1); +lean_inc(x_245); +if (lean_obj_tag(x_245) == 0) +{ +uint8_t x_246; +x_246 = !lean_is_exclusive(x_243); +if (x_246 == 0) +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_247 = lean_ctor_get(x_243, 1); +lean_dec(x_247); +x_248 = lean_box(0); +lean_ctor_set(x_243, 1, x_248); +x_249 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27; +x_250 = l_Lean_Expr_const___override(x_249, x_243); +x_251 = l_Lean_mkApp3(x_250, x_221, x_232, x_231); +x_252 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_251, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_252; +} +else +{ +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; +x_253 = lean_ctor_get(x_243, 0); +lean_inc(x_253); +lean_dec(x_243); +x_254 = lean_box(0); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +x_256 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27; +x_257 = l_Lean_Expr_const___override(x_256, x_255); +x_258 = l_Lean_mkApp3(x_257, x_221, x_232, x_231); +x_259 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_258, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_259; +} +} +else +{ +lean_object* x_260; +lean_dec(x_245); +lean_dec(x_243); +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_260 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_260; +} +} +} +else +{ +lean_object* x_261; +lean_dec(x_242); +lean_dec(x_233); +lean_dec(x_232); +lean_dec(x_231); +lean_dec(x_221); +x_261 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_261; +} +} +} +} +} +else +{ +lean_object* x_262; +lean_dec(x_230); +lean_dec(x_229); +lean_dec(x_228); +lean_dec(x_227); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_262 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_262; +} +} +else +{ +lean_object* x_263; +lean_dec(x_229); +lean_dec(x_228); +lean_dec(x_227); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_263 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_263; +} +} +else +{ +lean_object* x_264; +lean_dec(x_228); +lean_dec(x_227); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_264 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_264; +} +} +else +{ +lean_object* x_265; +lean_dec(x_227); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_265 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_265; +} +} +else +{ +lean_object* x_266; +lean_dec(x_226); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_266 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_266; +} +} +else +{ +lean_object* x_267; +lean_dec(x_225); +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_267 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_267; +} +} +else +{ +lean_object* x_268; +lean_dec(x_224); +lean_dec(x_223); +lean_dec(x_221); +x_268 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_268; +} +} +else +{ +lean_object* x_269; +lean_dec(x_223); +lean_dec(x_221); +x_269 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_269; +} +} +} +} +} +else +{ +lean_object* x_270; uint8_t x_271; +lean_dec(x_40); +lean_dec(x_2); +x_270 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28; +x_271 = lean_string_dec_eq(x_39, x_270); +lean_dec(x_39); +if (x_271 == 0) +{ +lean_object* x_272; +lean_dec(x_38); +x_272 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; uint8_t x_275; +x_273 = lean_array_get_size(x_38); +x_274 = lean_unsigned_to_nat(6u); +x_275 = lean_nat_dec_eq(x_273, x_274); +lean_dec(x_273); +if (x_275 == 0) +{ +lean_object* x_276; +lean_dec(x_38); +x_276 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_276; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_277 = lean_unsigned_to_nat(4u); +x_278 = lean_array_fget(x_38, x_277); +x_279 = lean_unsigned_to_nat(5u); +x_280 = lean_array_fget(x_38, x_279); +lean_dec(x_38); +lean_inc(x_278); +x_281 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_278); +if (lean_obj_tag(x_281) == 0) +{ +lean_object* x_282; +lean_dec(x_280); +lean_dec(x_278); +x_282 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_282; +} +else +{ +lean_object* x_283; +lean_dec(x_281); +lean_inc(x_280); +x_283 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_280); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; +lean_dec(x_280); +lean_dec(x_278); +x_284 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_284; +} +else +{ +lean_object* x_285; lean_object* x_286; lean_object* x_287; +lean_dec(x_283); +x_285 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31; +x_286 = l_Lean_mkAppB(x_285, x_278, x_280); +x_287 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_286, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_287; +} +} +} +} +} +} +else +{ +lean_object* x_288; uint8_t x_289; +lean_dec(x_40); +lean_dec(x_2); +x_288 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +x_289 = lean_string_dec_eq(x_39, x_288); +lean_dec(x_39); +if (x_289 == 0) +{ +lean_object* x_290; +lean_dec(x_38); +x_290 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_290; +} +else +{ +lean_object* x_291; lean_object* x_292; uint8_t x_293; +x_291 = lean_array_get_size(x_38); +x_292 = lean_unsigned_to_nat(6u); +x_293 = lean_nat_dec_eq(x_291, x_292); +lean_dec(x_291); +if (x_293 == 0) +{ +lean_object* x_294; +lean_dec(x_38); +x_294 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_294; +} +else +{ +lean_object* x_295; lean_object* x_296; +x_295 = lean_unsigned_to_nat(4u); +x_296 = lean_array_fget(x_38, x_295); +if (lean_obj_tag(x_296) == 5) +{ +lean_object* x_297; +x_297 = lean_ctor_get(x_296, 0); +lean_inc(x_297); +if (lean_obj_tag(x_297) == 5) +{ +lean_object* x_298; +x_298 = lean_ctor_get(x_297, 0); +lean_inc(x_298); +if (lean_obj_tag(x_298) == 5) +{ +lean_object* x_299; +x_299 = lean_ctor_get(x_298, 0); +lean_inc(x_299); +lean_dec(x_298); +if (lean_obj_tag(x_299) == 5) +{ +lean_object* x_300; +x_300 = lean_ctor_get(x_299, 0); +lean_inc(x_300); +lean_dec(x_299); +if (lean_obj_tag(x_300) == 5) +{ +lean_object* x_301; +x_301 = lean_ctor_get(x_300, 0); +lean_inc(x_301); +lean_dec(x_300); +if (lean_obj_tag(x_301) == 5) +{ +lean_object* x_302; +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +lean_dec(x_301); +if (lean_obj_tag(x_302) == 4) +{ +lean_object* x_303; +x_303 = lean_ctor_get(x_302, 0); +lean_inc(x_303); +lean_dec(x_302); +if (lean_obj_tag(x_303) == 1) +{ +lean_object* x_304; +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +if (lean_obj_tag(x_304) == 1) +{ +lean_object* x_305; +x_305 = lean_ctor_get(x_304, 0); +lean_inc(x_305); +if (lean_obj_tag(x_305) == 0) +{ +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_296, 1); +lean_inc(x_306); +lean_dec(x_296); +x_307 = lean_ctor_get(x_297, 1); +lean_inc(x_307); +lean_dec(x_297); +x_308 = lean_ctor_get(x_303, 1); +lean_inc(x_308); +lean_dec(x_303); +x_309 = lean_ctor_get(x_304, 1); +lean_inc(x_309); +lean_dec(x_304); +x_310 = lean_string_dec_eq(x_309, x_53); +lean_dec(x_309); +if (x_310 == 0) +{ +lean_object* x_311; +lean_dec(x_308); +lean_dec(x_307); +lean_dec(x_306); +lean_dec(x_38); +x_311 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_311; +} +else +{ +uint8_t x_312; +x_312 = lean_string_dec_eq(x_308, x_288); +lean_dec(x_308); +if (x_312 == 0) +{ +lean_object* x_313; +lean_dec(x_307); +lean_dec(x_306); +lean_dec(x_38); +x_313 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_313; +} +else +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; +x_314 = lean_unsigned_to_nat(5u); +x_315 = lean_array_fget(x_38, x_314); +lean_dec(x_38); +x_316 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34; +x_317 = l_Lean_mkApp3(x_316, x_307, x_306, x_315); +x_318 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_317, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_318; +} +} +} +else +{ +lean_object* x_319; +lean_dec(x_305); +lean_dec(x_304); +lean_dec(x_303); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_319 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_319; +} +} +else +{ +lean_object* x_320; +lean_dec(x_304); +lean_dec(x_303); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_320 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_320; +} +} +else +{ +lean_object* x_321; +lean_dec(x_303); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_321 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_321; +} +} +else +{ +lean_object* x_322; +lean_dec(x_302); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_322 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_322; +} +} +else +{ +lean_object* x_323; +lean_dec(x_301); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_323 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_323; +} +} +else +{ +lean_object* x_324; +lean_dec(x_300); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_324 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_324; +} +} +else +{ +lean_object* x_325; +lean_dec(x_299); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_325 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_325; +} +} +else +{ +lean_object* x_326; +lean_dec(x_298); +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_326 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_326; +} +} +else +{ +lean_object* x_327; +lean_dec(x_297); +lean_dec(x_296); +lean_dec(x_38); +x_327 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_327; +} +} +else +{ +lean_object* x_328; +lean_dec(x_296); +lean_dec(x_38); +x_328 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_328; +} +} +} +} +} +else +{ +lean_object* x_329; uint8_t x_330; +lean_dec(x_40); +lean_dec(x_2); +x_329 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__33; +x_330 = lean_string_dec_eq(x_39, x_329); +lean_dec(x_39); +if (x_330 == 0) +{ +lean_object* x_331; +lean_dec(x_38); +x_331 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_331; +} +else +{ +lean_object* x_332; lean_object* x_333; uint8_t x_334; +x_332 = lean_array_get_size(x_38); +x_333 = lean_unsigned_to_nat(6u); +x_334 = lean_nat_dec_eq(x_332, x_333); +lean_dec(x_332); +if (x_334 == 0) +{ +lean_object* x_335; +lean_dec(x_38); +x_335 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_335; +} +else +{ +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; +x_336 = lean_unsigned_to_nat(4u); +x_337 = lean_array_fget(x_38, x_336); +x_338 = lean_unsigned_to_nat(5u); +x_339 = lean_array_fget(x_38, x_338); +lean_dec(x_38); +x_340 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37; +x_341 = l_Lean_mkAppB(x_340, x_337, x_339); +x_342 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_341, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_342; +} +} +} +} +else +{ +lean_object* x_343; uint8_t x_344; +lean_dec(x_40); +lean_dec(x_2); +x_343 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; +x_344 = lean_string_dec_eq(x_39, x_343); +lean_dec(x_39); +if (x_344 == 0) +{ +lean_object* x_345; +lean_dec(x_38); +x_345 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_345; +} +else +{ +lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_346 = lean_array_get_size(x_38); +x_347 = lean_unsigned_to_nat(3u); +x_348 = lean_nat_dec_eq(x_346, x_347); +lean_dec(x_346); +if (x_348 == 0) +{ +lean_object* x_349; +lean_dec(x_38); +x_349 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_349; +} +else +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_350 = lean_unsigned_to_nat(1u); +x_351 = lean_array_fget(x_38, x_350); +lean_dec(x_38); +x_352 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40; +x_353 = l_Lean_Expr_app___override(x_352, x_351); +x_354 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_353, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_354; +} +} +} +} +else +{ +lean_object* x_355; uint8_t x_356; +lean_dec(x_40); +lean_dec(x_2); +x_355 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__25; +x_356 = lean_string_dec_eq(x_39, x_355); +lean_dec(x_39); +if (x_356 == 0) +{ +lean_object* x_357; +lean_dec(x_38); +x_357 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_357; +} +else +{ +lean_object* x_358; lean_object* x_359; uint8_t x_360; +x_358 = lean_array_get_size(x_38); +x_359 = lean_unsigned_to_nat(6u); +x_360 = lean_nat_dec_eq(x_358, x_359); +lean_dec(x_358); +if (x_360 == 0) +{ +lean_object* x_361; +lean_dec(x_38); +x_361 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_361; +} +else +{ +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; +x_362 = lean_unsigned_to_nat(4u); +x_363 = lean_array_fget(x_38, x_362); +x_364 = lean_unsigned_to_nat(5u); +x_365 = lean_array_fget(x_38, x_364); +lean_dec(x_38); +x_366 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43; +x_367 = l_Lean_mkAppB(x_366, x_363, x_365); +x_368 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_367, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_368; +} +} +} +} +else +{ +lean_object* x_369; uint8_t x_370; +lean_dec(x_40); +lean_dec(x_2); +x_369 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_370 = lean_string_dec_eq(x_39, x_369); +lean_dec(x_39); +if (x_370 == 0) +{ +lean_object* x_371; +lean_dec(x_38); +x_371 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_371; +} +else +{ +lean_object* x_372; lean_object* x_373; uint8_t x_374; +x_372 = lean_array_get_size(x_38); +x_373 = lean_unsigned_to_nat(6u); +x_374 = lean_nat_dec_eq(x_372, x_373); +lean_dec(x_372); +if (x_374 == 0) +{ +lean_object* x_375; +lean_dec(x_38); +x_375 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_375; +} +else +{ +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; +x_376 = lean_unsigned_to_nat(4u); +x_377 = lean_array_fget(x_38, x_376); +x_378 = lean_unsigned_to_nat(5u); +x_379 = lean_array_fget(x_38, x_378); +lean_dec(x_38); +x_380 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46; +x_381 = l_Lean_mkAppB(x_380, x_377, x_379); +x_382 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_381, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_382; +} +} +} +} +else +{ +lean_object* x_383; uint8_t x_384; +lean_dec(x_40); +lean_dec(x_2); +x_383 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; +x_384 = lean_string_dec_eq(x_39, x_383); +lean_dec(x_39); +if (x_384 == 0) +{ +lean_object* x_385; +lean_dec(x_38); +x_385 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_385; +} +else +{ +lean_object* x_386; lean_object* x_387; uint8_t x_388; +x_386 = lean_array_get_size(x_38); +x_387 = lean_unsigned_to_nat(6u); +x_388 = lean_nat_dec_eq(x_386, x_387); +lean_dec(x_386); +if (x_388 == 0) +{ +lean_object* x_389; +lean_dec(x_38); +x_389 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_389; +} +else +{ +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; +x_390 = lean_unsigned_to_nat(4u); +x_391 = lean_array_fget(x_38, x_390); +x_392 = lean_unsigned_to_nat(5u); +x_393 = lean_array_fget(x_38, x_392); +lean_dec(x_38); +x_394 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49; +x_395 = l_Lean_mkAppB(x_394, x_391, x_393); +x_396 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_395, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_396; +} +} +} +} +else +{ +lean_object* x_397; uint8_t x_398; +lean_dec(x_40); +lean_dec(x_2); +x_397 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50; +x_398 = lean_string_dec_eq(x_39, x_397); +lean_dec(x_39); +if (x_398 == 0) +{ +lean_object* x_399; +lean_dec(x_38); +x_399 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_399; +} +else +{ +lean_object* x_400; lean_object* x_401; uint8_t x_402; +x_400 = lean_array_get_size(x_38); +x_401 = lean_unsigned_to_nat(1u); +x_402 = lean_nat_dec_eq(x_400, x_401); +lean_dec(x_400); +if (x_402 == 0) +{ +lean_object* x_403; +lean_dec(x_38); +x_403 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_403; +} +else +{ +lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_404 = lean_unsigned_to_nat(0u); +x_405 = lean_array_fget(x_38, x_404); +lean_dec(x_38); +x_406 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53; +x_407 = l_Lean_Expr_app___override(x_406, x_405); +x_408 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_407, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_408; +} +} +} +} +else +{ +lean_object* x_409; +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_2); +x_409 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_409; +} +} +else +{ +lean_object* x_410; +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_2); +x_410 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_410; +} +} +else +{ +lean_object* x_411; +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_2); +x_411 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_411; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_val_natCast", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_val_sub", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_val_mul", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_val_add", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal(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_object* x_11, lean_object* x_12) { +_start: +{ +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +lean_inc(x_8); +x_14 = l_Lean_FVarId_getValue_x3f(x_13, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_3); +lean_dec(x_2); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_16); +return x_17; +} +else +{ +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; +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_dec(x_14); +x_19 = lean_ctor_get(x_15, 0); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14; +x_21 = l_Lean_mkAppB(x_20, x_3, x_19); +x_22 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55; +x_23 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9; +x_24 = l_Lean_mkApp3(x_22, x_23, x_2, x_21); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_1); +x_25 = l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(x_1, x_24, x_8, x_9, x_10, x_11, x_18); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +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_28 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_26, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_27); +return x_28; +} +else +{ +uint8_t x_29; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_25); +if (x_29 == 0) +{ +return x_25; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_25, 0); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_25); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +} +else +{ +uint8_t x_33; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_14); +if (x_33 == 0) +{ +return x_14; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_14, 0); +x_35 = lean_ctor_get(x_14, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_14); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_dec(x_2); +x_37 = l_Lean_Expr_getAppFnArgs(x_4); +lean_inc(x_3); +x_38 = l_Lean_Expr_nat_x3f(x_3); +x_39 = lean_ctor_get(x_37, 0); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 1) +{ +lean_object* x_40; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +if (lean_obj_tag(x_40) == 1) +{ +lean_object* x_41; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_42 = lean_ctor_get(x_37, 1); +lean_inc(x_42); +lean_dec(x_37); +x_43 = lean_ctor_get(x_39, 1); +lean_inc(x_43); +lean_dec(x_39); +x_44 = lean_ctor_get(x_40, 1); +lean_inc(x_44); +lean_dec(x_40); +x_45 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__1; +x_46 = lean_string_dec_eq(x_44, x_45); +if (x_46 == 0) +{ +lean_object* x_47; uint8_t x_48; +x_47 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__3; +x_48 = lean_string_dec_eq(x_44, x_47); +if (x_48 == 0) +{ +lean_object* x_49; uint8_t x_50; +x_49 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__2; +x_50 = lean_string_dec_eq(x_44, x_49); +if (x_50 == 0) +{ +lean_object* x_51; uint8_t x_52; +lean_dec(x_3); +x_51 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1; +x_52 = lean_string_dec_eq(x_44, x_51); +lean_dec(x_44); +if (x_52 == 0) +{ +lean_object* x_53; +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_38); +x_53 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_53; +} +else +{ +lean_object* x_54; uint8_t x_55; +x_54 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2; +x_55 = lean_string_dec_eq(x_43, x_54); +lean_dec(x_43); +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec(x_42); +lean_dec(x_38); +x_56 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; uint8_t x_59; +x_57 = lean_array_get_size(x_42); +x_58 = lean_unsigned_to_nat(3u); +x_59 = lean_nat_dec_eq(x_57, x_58); +lean_dec(x_57); +if (x_59 == 0) +{ +lean_object* x_60; +lean_dec(x_42); +lean_dec(x_38); +x_60 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_60; +} +else +{ +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_61; +lean_dec(x_42); +x_61 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_61; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_62 = lean_ctor_get(x_38, 0); +lean_inc(x_62); +lean_dec(x_38); +x_63 = lean_unsigned_to_nat(1u); +x_64 = lean_array_fget(x_42, x_63); +lean_dec(x_42); +x_65 = lean_unsigned_to_nat(0u); +x_66 = lean_nat_dec_eq(x_62, x_65); +if (x_66 == 0) +{ +if (lean_obj_tag(x_64) == 9) +{ +lean_object* x_67; +x_67 = lean_ctor_get(x_64, 0); +lean_inc(x_67); +lean_dec(x_64); +if (lean_obj_tag(x_67) == 0) +{ +uint8_t x_68; +x_68 = !lean_is_exclusive(x_67); +if (x_68 == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_69 = lean_ctor_get(x_67, 0); +x_70 = lean_nat_mod(x_69, x_62); +lean_inc(x_70); +x_71 = l_Lean_mkNatLit(x_70); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_72 = l_Lean_Meta_mkEqRefl(x_71, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_72) == 0) +{ +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; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec(x_72); +x_75 = lean_nat_sub(x_62, x_63); +lean_dec(x_62); +x_76 = l_Lean_mkNatLit(x_75); +x_77 = l_Lean_mkNatLit(x_69); +lean_ctor_set(x_67, 0, x_70); +x_78 = l_Lean_Expr_lit___override(x_67); +x_79 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3; +x_80 = l_Lean_mkApp4(x_79, x_76, x_77, x_78, x_73); +x_81 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_80, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_74); +return x_81; +} +else +{ +uint8_t x_82; +lean_dec(x_70); +lean_free_object(x_67); +lean_dec(x_69); +lean_dec(x_62); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_82 = !lean_is_exclusive(x_72); +if (x_82 == 0) +{ +return x_72; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_72, 0); +x_84 = lean_ctor_get(x_72, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_72); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_67, 0); +lean_inc(x_86); +lean_dec(x_67); +x_87 = lean_nat_mod(x_86, x_62); +lean_inc(x_87); +x_88 = l_Lean_mkNatLit(x_87); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_89 = l_Lean_Meta_mkEqRefl(x_88, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_89) == 0) +{ +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; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +x_92 = lean_nat_sub(x_62, x_63); +lean_dec(x_62); +x_93 = l_Lean_mkNatLit(x_92); +x_94 = l_Lean_mkNatLit(x_86); +x_95 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_95, 0, x_87); +x_96 = l_Lean_Expr_lit___override(x_95); +x_97 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3; +x_98 = l_Lean_mkApp4(x_97, x_93, x_94, x_96, x_90); +x_99 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_98, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_91); +return x_99; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_87); +lean_dec(x_86); +lean_dec(x_62); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_100 = lean_ctor_get(x_89, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_89, 1); +lean_inc(x_101); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_102 = x_89; +} else { + lean_dec_ref(x_89); + x_102 = lean_box(0); +} +if (lean_is_scalar(x_102)) { + x_103 = lean_alloc_ctor(1, 2, 0); +} else { + x_103 = x_102; +} +lean_ctor_set(x_103, 0, x_100); +lean_ctor_set(x_103, 1, x_101); +return x_103; +} +} +} +else +{ +lean_object* x_104; +lean_dec(x_67); +lean_dec(x_62); +x_104 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_104; +} +} +else +{ +lean_object* x_105; +lean_dec(x_64); +lean_dec(x_62); +x_105 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_105; +} +} +else +{ +lean_object* x_106; +lean_dec(x_64); +lean_dec(x_62); +x_106 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_106; +} +} +} +} +} +} +else +{ +lean_object* x_107; uint8_t x_108; +lean_dec(x_44); +x_107 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40; +x_108 = lean_string_dec_eq(x_43, x_107); +lean_dec(x_43); +if (x_108 == 0) +{ +lean_object* x_109; +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_3); +x_109 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_109; +} +else +{ +lean_object* x_110; lean_object* x_111; uint8_t x_112; +x_110 = lean_array_get_size(x_42); +x_111 = lean_unsigned_to_nat(6u); +x_112 = lean_nat_dec_eq(x_110, x_111); +lean_dec(x_110); +if (x_112 == 0) +{ +lean_object* x_113; +lean_dec(x_42); +lean_dec(x_38); +lean_dec(x_3); +x_113 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_113; +} +else +{ +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_114; +lean_dec(x_42); +lean_dec(x_3); +x_114 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_114; +} +else +{ +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_dec(x_38); +x_115 = lean_unsigned_to_nat(4u); +x_116 = lean_array_fget(x_42, x_115); +x_117 = lean_unsigned_to_nat(5u); +x_118 = lean_array_fget(x_42, x_117); +lean_dec(x_42); +x_119 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6; +x_120 = l_Lean_mkApp3(x_119, x_3, x_116, x_118); +x_121 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_120, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_121; +} +} +} +} +} +else +{ +lean_object* x_122; uint8_t x_123; +lean_dec(x_44); +lean_dec(x_38); +x_122 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__38; +x_123 = lean_string_dec_eq(x_43, x_122); +lean_dec(x_43); +if (x_123 == 0) +{ +lean_object* x_124; +lean_dec(x_42); +lean_dec(x_3); +x_124 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_124; +} +else +{ +lean_object* x_125; lean_object* x_126; uint8_t x_127; +x_125 = lean_array_get_size(x_42); +x_126 = lean_unsigned_to_nat(6u); +x_127 = lean_nat_dec_eq(x_125, x_126); +lean_dec(x_125); +if (x_127 == 0) +{ +lean_object* x_128; +lean_dec(x_42); +lean_dec(x_3); +x_128 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_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; +x_129 = lean_unsigned_to_nat(4u); +x_130 = lean_array_fget(x_42, x_129); +x_131 = lean_unsigned_to_nat(5u); +x_132 = lean_array_fget(x_42, x_131); +lean_dec(x_42); +x_133 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9; +x_134 = l_Lean_mkApp3(x_133, x_3, x_130, x_132); +x_135 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_134, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_135; +} +} +} +} +else +{ +lean_object* x_136; uint8_t x_137; +lean_dec(x_44); +lean_dec(x_38); +x_136 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41; +x_137 = lean_string_dec_eq(x_43, x_136); +lean_dec(x_43); +if (x_137 == 0) +{ +lean_object* x_138; +lean_dec(x_42); +lean_dec(x_3); +x_138 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_138; +} +else +{ +lean_object* x_139; lean_object* x_140; uint8_t x_141; +x_139 = lean_array_get_size(x_42); +x_140 = lean_unsigned_to_nat(6u); +x_141 = lean_nat_dec_eq(x_139, x_140); +lean_dec(x_139); +if (x_141 == 0) +{ +lean_object* x_142; +lean_dec(x_42); +lean_dec(x_3); +x_142 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_142; +} +else +{ +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; +x_143 = lean_unsigned_to_nat(4u); +x_144 = lean_array_fget(x_42, x_143); +x_145 = lean_unsigned_to_nat(5u); +x_146 = lean_array_fget(x_42, x_145); +lean_dec(x_42); +x_147 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12; +x_148 = l_Lean_mkApp3(x_147, x_3, x_144, x_146); +x_149 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite(x_1, x_148, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_149; +} +} +} +} +else +{ +lean_object* x_150; +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_3); +x_150 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_150; +} +} +else +{ +lean_object* x_151; +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_3); +x_151 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_151; +} +} +else +{ +lean_object* x_152; +lean_dec(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_3); +x_152 = l_Lean_Elab_Tactic_Omega_mkAtomLinearCombo(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_152; +} +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__1___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, lean_object* x_10) { _start: { @@ -14306,7 +15381,7 @@ x_33 = l_List_mapTR_loop___at_Lean_Omega_LinearCombo_instToStringLinearCombo___s x_34 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; x_35 = l_List_foldl___at_String_join___spec__1(x_34, x_33); lean_dec(x_33); -x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_36 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_37 = lean_int_dec_lt(x_28, x_36); if (x_37 == 0) { @@ -14844,7 +15919,7 @@ x_33 = l_List_mapTR_loop___at_Lean_Omega_LinearCombo_instToStringLinearCombo___s x_34 = l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1; x_35 = l_List_foldl___at_String_join___spec__1(x_34, x_33); lean_dec(x_33); -x_36 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_36 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_37 = lean_int_dec_lt(x_28, x_36); if (x_37 == 0) { @@ -15188,7 +16263,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -15208,7 +16283,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -15227,24 +16302,30 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LT", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__21; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("LE", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Dvd", 3); +x_1 = lean_mk_string_from_bytes("LT", 2); return x_1; } } @@ -15252,7 +16333,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("dvd", 3); +x_1 = lean_mk_string_from_bytes("LE", 2); return x_1; } } @@ -15260,36 +16341,32 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("emod_pos_of_not_dvd", 19); +x_1 = lean_mk_string_from_bytes("Dvd", 3); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("dvd", 3); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("emod_pos_of_not_dvd", 19); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } @@ -15307,12 +16384,32 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("Lex", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38() { _start: { lean_object* x_1; @@ -15320,19 +16417,19 @@ x_1 = lean_mk_string_from_bytes("of_not_lex", 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40() { _start: { lean_object* x_1; @@ -15340,7 +16437,7 @@ x_1 = lean_mk_string_from_bytes("le", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41() { _start: { lean_object* x_1; @@ -15348,36 +16445,14 @@ x_1 = lean_mk_string_from_bytes("lt_of_not_le", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__42() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__43() { @@ -15393,27 +16468,35 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("lt", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__45() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le_of_not_lt", 12); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__46() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__45; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47() { @@ -15429,26 +16512,84 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__45; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("lt", 2); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("le_of_not_lt", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__50() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__50; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__50() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56() { _start: { lean_object* x_1; @@ -15456,24 +16597,24 @@ x_1 = lean_mk_string_from_bytes("and_not_of_not_imp", 18); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; x_3 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__4; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__50; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -15725,7 +16866,8 @@ else lean_object* x_83; lean_object* x_84; x_83 = lean_unsigned_to_nat(0u); x_84 = lean_array_fget(x_16, x_83); -if (lean_obj_tag(x_84) == 4) +switch (lean_obj_tag(x_84)) { +case 4: { lean_object* x_85; x_85 = lean_ctor_get(x_84, 0); @@ -15744,12 +16886,12 @@ lean_dec(x_84); x_88 = lean_ctor_get(x_85, 1); lean_inc(x_88); lean_dec(x_85); -x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_89 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_90 = lean_string_dec_eq(x_88, x_89); if (x_90 == 0) { lean_object* x_91; uint8_t x_92; -x_91 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_91 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_92 = lean_string_dec_eq(x_88, x_91); lean_dec(x_88); if (x_92 == 0) @@ -15846,233 +16988,344 @@ lean_ctor_set(x_8, 0, x_111); return x_8; } } -else +case 5: { lean_object* x_112; +x_112 = lean_ctor_get(x_84, 0); +lean_inc(x_112); +if (lean_obj_tag(x_112) == 4) +{ +lean_object* x_113; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +if (lean_obj_tag(x_113) == 1) +{ +lean_object* x_114; +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +if (lean_obj_tag(x_114) == 0) +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; +x_115 = lean_ctor_get(x_84, 1); +lean_inc(x_115); +lean_dec(x_84); +x_116 = lean_ctor_get(x_112, 1); +lean_inc(x_116); +lean_dec(x_112); +x_117 = lean_ctor_get(x_113, 1); +lean_inc(x_117); +lean_dec(x_113); +x_118 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_119 = lean_string_dec_eq(x_117, x_118); +lean_dec(x_117); +if (x_119 == 0) +{ +lean_object* x_120; +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_16); +lean_dec(x_1); +x_120 = lean_box(0); +lean_ctor_set(x_8, 0, x_120); +return x_8; +} +else +{ +if (lean_obj_tag(x_116) == 0) +{ +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; +x_121 = lean_unsigned_to_nat(1u); +x_122 = lean_array_fget(x_16, x_121); +x_123 = lean_unsigned_to_nat(2u); +x_124 = lean_array_fget(x_16, x_123); +lean_dec(x_16); +x_125 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; +x_126 = l_Lean_mkApp4(x_125, x_115, x_122, x_124, x_1); +x_127 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_8, 0, x_127); +return x_8; +} +else +{ +lean_object* x_128; +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_16); +lean_dec(x_1); +x_128 = lean_box(0); +lean_ctor_set(x_8, 0, x_128); +return x_8; +} +} +} +else +{ +lean_object* x_129; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_112); lean_dec(x_84); lean_dec(x_16); lean_dec(x_1); -x_112 = lean_box(0); -lean_ctor_set(x_8, 0, x_112); +x_129 = lean_box(0); +lean_ctor_set(x_8, 0, x_129); return x_8; } } +else +{ +lean_object* x_130; +lean_dec(x_113); +lean_dec(x_112); +lean_dec(x_84); +lean_dec(x_16); +lean_dec(x_1); +x_130 = lean_box(0); +lean_ctor_set(x_8, 0, x_130); +return x_8; +} +} +else +{ +lean_object* x_131; +lean_dec(x_112); +lean_dec(x_84); +lean_dec(x_16); +lean_dec(x_1); +x_131 = lean_box(0); +lean_ctor_set(x_8, 0, x_131); +return x_8; +} +} +default: +{ +lean_object* x_132; +lean_dec(x_84); +lean_dec(x_16); +lean_dec(x_1); +x_132 = lean_box(0); +lean_ctor_set(x_8, 0, x_132); +return x_8; +} +} +} } } case 1: { -lean_object* x_113; -x_113 = lean_ctor_get(x_15, 0); -lean_inc(x_113); -if (lean_obj_tag(x_113) == 0) +lean_object* x_133; +x_133 = lean_ctor_get(x_15, 0); +lean_inc(x_133); +if (lean_obj_tag(x_133) == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_13, 1); -lean_inc(x_114); +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; +x_134 = lean_ctor_get(x_13, 1); +lean_inc(x_134); lean_dec(x_13); -x_115 = lean_ctor_get(x_14, 1); -lean_inc(x_115); -lean_dec(x_14); -x_116 = lean_ctor_get(x_15, 1); -lean_inc(x_116); -lean_dec(x_15); -x_117 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; -x_118 = lean_string_dec_eq(x_116, x_117); -if (x_118 == 0) -{ -lean_object* x_119; uint8_t x_120; -x_119 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; -x_120 = lean_string_dec_eq(x_116, x_119); -if (x_120 == 0) -{ -lean_object* x_121; uint8_t x_122; -x_121 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_122 = lean_string_dec_eq(x_116, x_121); -if (x_122 == 0) -{ -lean_object* x_123; uint8_t x_124; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_123 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; -x_124 = lean_string_dec_eq(x_116, x_123); -lean_dec(x_116); -if (x_124 == 0) -{ -lean_object* x_125; -lean_dec(x_115); -lean_dec(x_114); -lean_dec(x_1); -x_125 = lean_box(0); -lean_ctor_set(x_8, 0, x_125); -return x_8; -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; -x_127 = lean_string_dec_eq(x_115, x_126); -lean_dec(x_115); -if (x_127 == 0) -{ -lean_object* x_128; -lean_dec(x_114); -lean_dec(x_1); -x_128 = lean_box(0); -lean_ctor_set(x_8, 0, x_128); -return x_8; -} -else -{ -lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_129 = lean_array_get_size(x_114); -x_130 = lean_unsigned_to_nat(4u); -x_131 = lean_nat_dec_eq(x_129, x_130); -lean_dec(x_129); -if (x_131 == 0) -{ -lean_object* x_132; -lean_dec(x_114); -lean_dec(x_1); -x_132 = lean_box(0); -lean_ctor_set(x_8, 0, x_132); -return x_8; -} -else -{ -lean_object* x_133; lean_object* x_134; -x_133 = lean_unsigned_to_nat(0u); -x_134 = lean_array_fget(x_114, x_133); -if (lean_obj_tag(x_134) == 4) -{ -lean_object* x_135; -x_135 = lean_ctor_get(x_134, 0); +x_135 = lean_ctor_get(x_14, 1); lean_inc(x_135); -if (lean_obj_tag(x_135) == 1) -{ -lean_object* x_136; -x_136 = lean_ctor_get(x_135, 0); +lean_dec(x_14); +x_136 = lean_ctor_get(x_15, 1); lean_inc(x_136); -if (lean_obj_tag(x_136) == 0) +lean_dec(x_15); +x_137 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; +x_138 = lean_string_dec_eq(x_136, x_137); +if (x_138 == 0) { -lean_object* x_137; lean_object* x_138; lean_object* x_139; uint8_t x_140; -x_137 = lean_ctor_get(x_134, 1); -lean_inc(x_137); -lean_dec(x_134); -x_138 = lean_ctor_get(x_135, 1); -lean_inc(x_138); -lean_dec(x_135); -x_139 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_140 = lean_string_dec_eq(x_138, x_139); +lean_object* x_139; uint8_t x_140; +x_139 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; +x_140 = lean_string_dec_eq(x_136, x_139); if (x_140 == 0) { lean_object* x_141; uint8_t x_142; -x_141 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_142 = lean_string_dec_eq(x_138, x_141); -lean_dec(x_138); +x_141 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_142 = lean_string_dec_eq(x_136, x_141); if (x_142 == 0) { -lean_object* x_143; -lean_dec(x_137); -lean_dec(x_114); -lean_dec(x_1); -x_143 = lean_box(0); -lean_ctor_set(x_8, 0, x_143); -return x_8; -} -else -{ -if (lean_obj_tag(x_137) == 0) -{ -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; -x_144 = lean_unsigned_to_nat(2u); -x_145 = lean_array_fget(x_114, x_144); -x_146 = lean_unsigned_to_nat(3u); -x_147 = lean_array_fget(x_114, x_146); -lean_dec(x_114); -x_148 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; -x_149 = l_Lean_mkApp3(x_148, x_145, x_147, x_1); -x_150 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_150, 0, x_149); -lean_ctor_set(x_8, 0, x_150); -return x_8; -} -else -{ -lean_object* x_151; -lean_dec(x_137); -lean_dec(x_114); -lean_dec(x_1); -x_151 = lean_box(0); -lean_ctor_set(x_8, 0, x_151); -return x_8; -} -} -} -else -{ -lean_dec(x_138); -if (lean_obj_tag(x_137) == 0) -{ -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; -x_152 = lean_unsigned_to_nat(2u); -x_153 = lean_array_fget(x_114, x_152); -x_154 = lean_unsigned_to_nat(3u); -x_155 = lean_array_fget(x_114, x_154); -lean_dec(x_114); -x_156 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__34; -x_157 = l_Lean_mkApp3(x_156, x_153, x_155, x_1); -x_158 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_8, 0, x_158); -return x_8; -} -else -{ -lean_object* x_159; -lean_dec(x_137); -lean_dec(x_114); -lean_dec(x_1); -x_159 = lean_box(0); -lean_ctor_set(x_8, 0, x_159); -return x_8; -} -} -} -else -{ -lean_object* x_160; +lean_object* x_143; uint8_t x_144; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_143 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; +x_144 = lean_string_dec_eq(x_136, x_143); lean_dec(x_136); +if (x_144 == 0) +{ +lean_object* x_145; lean_dec(x_135); lean_dec(x_134); -lean_dec(x_114); lean_dec(x_1); -x_160 = lean_box(0); -lean_ctor_set(x_8, 0, x_160); +x_145 = lean_box(0); +lean_ctor_set(x_8, 0, x_145); return x_8; } -} else { -lean_object* x_161; +lean_object* x_146; uint8_t x_147; +x_146 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; +x_147 = lean_string_dec_eq(x_135, x_146); lean_dec(x_135); +if (x_147 == 0) +{ +lean_object* x_148; lean_dec(x_134); -lean_dec(x_114); lean_dec(x_1); -x_161 = lean_box(0); -lean_ctor_set(x_8, 0, x_161); +x_148 = lean_box(0); +lean_ctor_set(x_8, 0, x_148); +return x_8; +} +else +{ +lean_object* x_149; lean_object* x_150; uint8_t x_151; +x_149 = lean_array_get_size(x_134); +x_150 = lean_unsigned_to_nat(4u); +x_151 = lean_nat_dec_eq(x_149, x_150); +lean_dec(x_149); +if (x_151 == 0) +{ +lean_object* x_152; +lean_dec(x_134); +lean_dec(x_1); +x_152 = lean_box(0); +lean_ctor_set(x_8, 0, x_152); +return x_8; +} +else +{ +lean_object* x_153; lean_object* x_154; +x_153 = lean_unsigned_to_nat(0u); +x_154 = lean_array_fget(x_134, x_153); +if (lean_obj_tag(x_154) == 4) +{ +lean_object* x_155; +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +if (lean_obj_tag(x_155) == 1) +{ +lean_object* x_156; +x_156 = lean_ctor_get(x_155, 0); +lean_inc(x_156); +if (lean_obj_tag(x_156) == 0) +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; +x_157 = lean_ctor_get(x_154, 1); +lean_inc(x_157); +lean_dec(x_154); +x_158 = lean_ctor_get(x_155, 1); +lean_inc(x_158); +lean_dec(x_155); +x_159 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_160 = lean_string_dec_eq(x_158, x_159); +if (x_160 == 0) +{ +lean_object* x_161; uint8_t x_162; +x_161 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_162 = lean_string_dec_eq(x_158, x_161); +lean_dec(x_158); +if (x_162 == 0) +{ +lean_object* x_163; +lean_dec(x_157); +lean_dec(x_134); +lean_dec(x_1); +x_163 = lean_box(0); +lean_ctor_set(x_8, 0, x_163); +return x_8; +} +else +{ +if (lean_obj_tag(x_157) == 0) +{ +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; +x_164 = lean_unsigned_to_nat(2u); +x_165 = lean_array_fget(x_134, x_164); +x_166 = lean_unsigned_to_nat(3u); +x_167 = lean_array_fget(x_134, x_166); +lean_dec(x_134); +x_168 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__34; +x_169 = l_Lean_mkApp3(x_168, x_165, x_167, x_1); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_8, 0, x_170); +return x_8; +} +else +{ +lean_object* x_171; +lean_dec(x_157); +lean_dec(x_134); +lean_dec(x_1); +x_171 = lean_box(0); +lean_ctor_set(x_8, 0, x_171); +return x_8; +} +} +} +else +{ +lean_dec(x_158); +if (lean_obj_tag(x_157) == 0) +{ +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; +x_172 = lean_unsigned_to_nat(2u); +x_173 = lean_array_fget(x_134, x_172); +x_174 = lean_unsigned_to_nat(3u); +x_175 = lean_array_fget(x_134, x_174); +lean_dec(x_134); +x_176 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36; +x_177 = l_Lean_mkApp3(x_176, x_173, x_175, x_1); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_177); +lean_ctor_set(x_8, 0, x_178); +return x_8; +} +else +{ +lean_object* x_179; +lean_dec(x_157); +lean_dec(x_134); +lean_dec(x_1); +x_179 = lean_box(0); +lean_ctor_set(x_8, 0, x_179); +return x_8; +} +} +} +else +{ +lean_object* x_180; +lean_dec(x_156); +lean_dec(x_155); +lean_dec(x_154); +lean_dec(x_134); +lean_dec(x_1); +x_180 = lean_box(0); +lean_ctor_set(x_8, 0, x_180); return x_8; } } else { -lean_object* x_162; +lean_object* x_181; +lean_dec(x_155); +lean_dec(x_154); lean_dec(x_134); -lean_dec(x_114); lean_dec(x_1); -x_162 = lean_box(0); -lean_ctor_set(x_8, 0, x_162); +x_181 = lean_box(0); +lean_ctor_set(x_8, 0, x_181); +return x_8; +} +} +else +{ +lean_object* x_182; +lean_dec(x_154); +lean_dec(x_134); +lean_dec(x_1); +x_182 = lean_box(0); +lean_ctor_set(x_8, 0, x_182); return x_8; } } @@ -16081,257 +17334,81 @@ return x_8; } else { -lean_object* x_163; uint8_t x_164; -lean_dec(x_116); -lean_dec(x_114); -x_163 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; -x_164 = lean_string_dec_eq(x_115, x_163); -lean_dec(x_115); -if (x_164 == 0) +lean_object* x_183; uint8_t x_184; +lean_dec(x_136); +lean_dec(x_134); +x_183 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; +x_184 = lean_string_dec_eq(x_135, x_183); +lean_dec(x_135); +if (x_184 == 0) { -lean_object* x_165; +lean_object* x_185; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_165 = lean_box(0); -lean_ctor_set(x_8, 0, x_165); +x_185 = lean_box(0); +lean_ctor_set(x_8, 0, x_185); return x_8; } else { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_free_object(x_8); -x_166 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_167 = lean_array_push(x_166, x_1); -x_168 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; -x_169 = l_Lean_Meta_mkAppM(x_168, x_167, x_3, x_4, x_5, x_6, x_11); -if (lean_obj_tag(x_169) == 0) +x_186 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_187 = lean_array_push(x_186, x_1); +x_188 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39; +x_189 = l_Lean_Meta_mkAppM(x_188, x_187, x_3, x_4, x_5, x_6, x_11); +if (lean_obj_tag(x_189) == 0) { -uint8_t x_170; -x_170 = !lean_is_exclusive(x_169); -if (x_170 == 0) +uint8_t x_190; +x_190 = !lean_is_exclusive(x_189); +if (x_190 == 0) { -lean_object* x_171; lean_object* x_172; -x_171 = lean_ctor_get(x_169, 0); -x_172 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_169, 0, x_172); -return x_169; +lean_object* x_191; lean_object* x_192; +x_191 = lean_ctor_get(x_189, 0); +x_192 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_192, 0, x_191); +lean_ctor_set(x_189, 0, x_192); +return x_189; } else { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; -x_173 = lean_ctor_get(x_169, 0); -x_174 = lean_ctor_get(x_169, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_169); -x_175 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_175, 0, x_173); -x_176 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_176, 0, x_175); -lean_ctor_set(x_176, 1, x_174); -return x_176; -} -} -else -{ -uint8_t x_177; -x_177 = !lean_is_exclusive(x_169); -if (x_177 == 0) -{ -return x_169; -} -else -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_178 = lean_ctor_get(x_169, 0); -x_179 = lean_ctor_get(x_169, 1); -lean_inc(x_179); -lean_inc(x_178); -lean_dec(x_169); -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -return x_180; -} -} -} -} -} -else -{ -lean_object* x_181; uint8_t x_182; -lean_dec(x_116); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_181 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; -x_182 = lean_string_dec_eq(x_115, x_181); -lean_dec(x_115); -if (x_182 == 0) -{ -lean_object* x_183; -lean_dec(x_114); -lean_dec(x_1); -x_183 = lean_box(0); -lean_ctor_set(x_8, 0, x_183); -return x_8; -} -else -{ -lean_object* x_184; lean_object* x_185; uint8_t x_186; -x_184 = lean_array_get_size(x_114); -x_185 = lean_unsigned_to_nat(4u); -x_186 = lean_nat_dec_eq(x_184, x_185); -lean_dec(x_184); -if (x_186 == 0) -{ -lean_object* x_187; -lean_dec(x_114); -lean_dec(x_1); -x_187 = lean_box(0); -lean_ctor_set(x_8, 0, x_187); -return x_8; -} -else -{ -lean_object* x_188; lean_object* x_189; -x_188 = lean_unsigned_to_nat(0u); -x_189 = lean_array_fget(x_114, x_188); -if (lean_obj_tag(x_189) == 4) -{ -lean_object* x_190; -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -if (lean_obj_tag(x_190) == 1) -{ -lean_object* x_191; -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -if (lean_obj_tag(x_191) == 0) -{ -lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; -x_192 = lean_ctor_get(x_189, 1); -lean_inc(x_192); -lean_dec(x_189); -x_193 = lean_ctor_get(x_190, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_193 = lean_ctor_get(x_189, 0); +x_194 = lean_ctor_get(x_189, 1); +lean_inc(x_194); lean_inc(x_193); -lean_dec(x_190); -x_194 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_195 = lean_string_dec_eq(x_193, x_194); -if (x_195 == 0) +lean_dec(x_189); +x_195 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_194); +return x_196; +} +} +else { -lean_object* x_196; uint8_t x_197; -x_196 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_197 = lean_string_dec_eq(x_193, x_196); -lean_dec(x_193); +uint8_t x_197; +x_197 = !lean_is_exclusive(x_189); if (x_197 == 0) { -lean_object* x_198; -lean_dec(x_192); -lean_dec(x_114); -lean_dec(x_1); -x_198 = lean_box(0); -lean_ctor_set(x_8, 0, x_198); -return x_8; +return x_189; } else { -if (lean_obj_tag(x_192) == 0) -{ -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; -x_199 = lean_unsigned_to_nat(2u); -x_200 = lean_array_fget(x_114, x_199); -x_201 = lean_unsigned_to_nat(3u); -x_202 = lean_array_fget(x_114, x_201); -lean_dec(x_114); -x_203 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; -x_204 = l_Lean_mkApp3(x_203, x_200, x_202, x_1); -x_205 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_205, 0, x_204); -lean_ctor_set(x_8, 0, x_205); -return x_8; -} -else -{ -lean_object* x_206; -lean_dec(x_192); -lean_dec(x_114); -lean_dec(x_1); -x_206 = lean_box(0); -lean_ctor_set(x_8, 0, x_206); -return x_8; -} -} -} -else -{ -lean_dec(x_193); -if (lean_obj_tag(x_192) == 0) -{ -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; -x_207 = lean_unsigned_to_nat(2u); -x_208 = lean_array_fget(x_114, x_207); -x_209 = lean_unsigned_to_nat(3u); -x_210 = lean_array_fget(x_114, x_209); -lean_dec(x_114); -x_211 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__43; -x_212 = l_Lean_mkApp3(x_211, x_208, x_210, x_1); -x_213 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_8, 0, x_213); -return x_8; -} -else -{ -lean_object* x_214; -lean_dec(x_192); -lean_dec(x_114); -lean_dec(x_1); -x_214 = lean_box(0); -lean_ctor_set(x_8, 0, x_214); -return x_8; -} -} -} -else -{ -lean_object* x_215; -lean_dec(x_191); -lean_dec(x_190); +lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_198 = lean_ctor_get(x_189, 0); +x_199 = lean_ctor_get(x_189, 1); +lean_inc(x_199); +lean_inc(x_198); lean_dec(x_189); -lean_dec(x_114); -lean_dec(x_1); -x_215 = lean_box(0); -lean_ctor_set(x_8, 0, x_215); -return x_8; -} -} -else -{ -lean_object* x_216; -lean_dec(x_190); -lean_dec(x_189); -lean_dec(x_114); -lean_dec(x_1); -x_216 = lean_box(0); -lean_ctor_set(x_8, 0, x_216); -return x_8; -} -} -else -{ -lean_object* x_217; -lean_dec(x_189); -lean_dec(x_114); -lean_dec(x_1); -x_217 = lean_box(0); -lean_ctor_set(x_8, 0, x_217); -return x_8; +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_198); +lean_ctor_set(x_200, 1, x_199); +return x_200; } } } @@ -16339,200 +17416,584 @@ return x_8; } else { -lean_object* x_218; uint8_t x_219; -lean_dec(x_116); +lean_object* x_201; uint8_t x_202; +lean_dec(x_136); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_218 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; -x_219 = lean_string_dec_eq(x_115, x_218); -lean_dec(x_115); -if (x_219 == 0) +x_201 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; +x_202 = lean_string_dec_eq(x_135, x_201); +lean_dec(x_135); +if (x_202 == 0) { -lean_object* x_220; -lean_dec(x_114); +lean_object* x_203; +lean_dec(x_134); lean_dec(x_1); -x_220 = lean_box(0); -lean_ctor_set(x_8, 0, x_220); +x_203 = lean_box(0); +lean_ctor_set(x_8, 0, x_203); return x_8; } else { -lean_object* x_221; lean_object* x_222; uint8_t x_223; -x_221 = lean_array_get_size(x_114); -x_222 = lean_unsigned_to_nat(4u); -x_223 = lean_nat_dec_eq(x_221, x_222); -lean_dec(x_221); -if (x_223 == 0) +lean_object* x_204; lean_object* x_205; uint8_t x_206; +x_204 = lean_array_get_size(x_134); +x_205 = lean_unsigned_to_nat(4u); +x_206 = lean_nat_dec_eq(x_204, x_205); +lean_dec(x_204); +if (x_206 == 0) { -lean_object* x_224; -lean_dec(x_114); +lean_object* x_207; +lean_dec(x_134); lean_dec(x_1); -x_224 = lean_box(0); -lean_ctor_set(x_8, 0, x_224); +x_207 = lean_box(0); +lean_ctor_set(x_8, 0, x_207); return x_8; } else { -lean_object* x_225; lean_object* x_226; -x_225 = lean_unsigned_to_nat(0u); -x_226 = lean_array_fget(x_114, x_225); -if (lean_obj_tag(x_226) == 4) +lean_object* x_208; lean_object* x_209; +x_208 = lean_unsigned_to_nat(0u); +x_209 = lean_array_fget(x_134, x_208); +switch (lean_obj_tag(x_209)) { +case 4: { -lean_object* x_227; -x_227 = lean_ctor_get(x_226, 0); -lean_inc(x_227); -if (lean_obj_tag(x_227) == 1) +lean_object* x_210; +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +if (lean_obj_tag(x_210) == 1) { -lean_object* x_228; -x_228 = lean_ctor_get(x_227, 0); -lean_inc(x_228); -if (lean_obj_tag(x_228) == 0) +lean_object* x_211; +x_211 = lean_ctor_get(x_210, 0); +lean_inc(x_211); +if (lean_obj_tag(x_211) == 0) { -lean_object* x_229; lean_object* x_230; lean_object* x_231; uint8_t x_232; -x_229 = lean_ctor_get(x_226, 1); -lean_inc(x_229); -lean_dec(x_226); -x_230 = lean_ctor_get(x_227, 1); -lean_inc(x_230); -lean_dec(x_227); -x_231 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_232 = lean_string_dec_eq(x_230, x_231); -if (x_232 == 0) +lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; +x_212 = lean_ctor_get(x_209, 1); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_210, 1); +lean_inc(x_213); +lean_dec(x_210); +x_214 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_215 = lean_string_dec_eq(x_213, x_214); +if (x_215 == 0) { -lean_object* x_233; uint8_t x_234; -x_233 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_234 = lean_string_dec_eq(x_230, x_233); -lean_dec(x_230); -if (x_234 == 0) +lean_object* x_216; uint8_t x_217; +x_216 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_217 = lean_string_dec_eq(x_213, x_216); +lean_dec(x_213); +if (x_217 == 0) +{ +lean_object* x_218; +lean_dec(x_212); +lean_dec(x_134); +lean_dec(x_1); +x_218 = lean_box(0); +lean_ctor_set(x_8, 0, x_218); +return x_8; +} +else +{ +if (lean_obj_tag(x_212) == 0) +{ +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; +x_219 = lean_unsigned_to_nat(2u); +x_220 = lean_array_fget(x_134, x_219); +x_221 = lean_unsigned_to_nat(3u); +x_222 = lean_array_fget(x_134, x_221); +lean_dec(x_134); +x_223 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__43; +x_224 = l_Lean_mkApp3(x_223, x_220, x_222, x_1); +x_225 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_225, 0, x_224); +lean_ctor_set(x_8, 0, x_225); +return x_8; +} +else +{ +lean_object* x_226; +lean_dec(x_212); +lean_dec(x_134); +lean_dec(x_1); +x_226 = lean_box(0); +lean_ctor_set(x_8, 0, x_226); +return x_8; +} +} +} +else +{ +lean_dec(x_213); +if (lean_obj_tag(x_212) == 0) +{ +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; +x_227 = lean_unsigned_to_nat(2u); +x_228 = lean_array_fget(x_134, x_227); +x_229 = lean_unsigned_to_nat(3u); +x_230 = lean_array_fget(x_134, x_229); +lean_dec(x_134); +x_231 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__45; +x_232 = l_Lean_mkApp3(x_231, x_228, x_230, x_1); +x_233 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_8, 0, x_233); +return x_8; +} +else +{ +lean_object* x_234; +lean_dec(x_212); +lean_dec(x_134); +lean_dec(x_1); +x_234 = lean_box(0); +lean_ctor_set(x_8, 0, x_234); +return x_8; +} +} +} +else { lean_object* x_235; -lean_dec(x_229); -lean_dec(x_114); +lean_dec(x_211); +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_134); lean_dec(x_1); x_235 = lean_box(0); lean_ctor_set(x_8, 0, x_235); return x_8; } -else -{ -if (lean_obj_tag(x_229) == 0) -{ -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; -x_236 = lean_unsigned_to_nat(2u); -x_237 = lean_array_fget(x_114, x_236); -x_238 = lean_unsigned_to_nat(3u); -x_239 = lean_array_fget(x_114, x_238); -lean_dec(x_114); -x_240 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; -x_241 = l_Lean_mkApp3(x_240, x_237, x_239, x_1); -x_242 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_242, 0, x_241); -lean_ctor_set(x_8, 0, x_242); -return x_8; } else { -lean_object* x_243; -lean_dec(x_229); -lean_dec(x_114); +lean_object* x_236; +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_134); lean_dec(x_1); -x_243 = lean_box(0); -lean_ctor_set(x_8, 0, x_243); +x_236 = lean_box(0); +lean_ctor_set(x_8, 0, x_236); return x_8; } } -} -else +case 5: { -lean_dec(x_230); -if (lean_obj_tag(x_229) == 0) +lean_object* x_237; +x_237 = lean_ctor_get(x_209, 0); +lean_inc(x_237); +if (lean_obj_tag(x_237) == 4) { -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; -x_244 = lean_unsigned_to_nat(2u); -x_245 = lean_array_fget(x_114, x_244); -x_246 = lean_unsigned_to_nat(3u); -x_247 = lean_array_fget(x_114, x_246); -lean_dec(x_114); -x_248 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; -x_249 = l_Lean_mkApp3(x_248, x_245, x_247, x_1); -x_250 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_250, 0, x_249); -lean_ctor_set(x_8, 0, x_250); -return x_8; -} -else +lean_object* x_238; +x_238 = lean_ctor_get(x_237, 0); +lean_inc(x_238); +if (lean_obj_tag(x_238) == 1) { -lean_object* x_251; -lean_dec(x_229); -lean_dec(x_114); +lean_object* x_239; +x_239 = lean_ctor_get(x_238, 0); +lean_inc(x_239); +if (lean_obj_tag(x_239) == 0) +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; uint8_t x_244; +x_240 = lean_ctor_get(x_209, 1); +lean_inc(x_240); +lean_dec(x_209); +x_241 = lean_ctor_get(x_237, 1); +lean_inc(x_241); +lean_dec(x_237); +x_242 = lean_ctor_get(x_238, 1); +lean_inc(x_242); +lean_dec(x_238); +x_243 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_244 = lean_string_dec_eq(x_242, x_243); +lean_dec(x_242); +if (x_244 == 0) +{ +lean_object* x_245; +lean_dec(x_241); +lean_dec(x_240); +lean_dec(x_134); lean_dec(x_1); -x_251 = lean_box(0); -lean_ctor_set(x_8, 0, x_251); +x_245 = lean_box(0); +lean_ctor_set(x_8, 0, x_245); return x_8; } -} -} else { -lean_object* x_252; -lean_dec(x_228); -lean_dec(x_227); -lean_dec(x_226); -lean_dec(x_114); -lean_dec(x_1); -x_252 = lean_box(0); +if (lean_obj_tag(x_241) == 0) +{ +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; +x_246 = lean_unsigned_to_nat(2u); +x_247 = lean_array_fget(x_134, x_246); +x_248 = lean_unsigned_to_nat(3u); +x_249 = lean_array_fget(x_134, x_248); +lean_dec(x_134); +x_250 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; +x_251 = l_Lean_mkApp4(x_250, x_240, x_247, x_249, x_1); +x_252 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_252, 0, x_251); lean_ctor_set(x_8, 0, x_252); return x_8; } -} else { lean_object* x_253; -lean_dec(x_227); -lean_dec(x_226); -lean_dec(x_114); +lean_dec(x_241); +lean_dec(x_240); +lean_dec(x_134); lean_dec(x_1); x_253 = lean_box(0); lean_ctor_set(x_8, 0, x_253); return x_8; } } +} else { lean_object* x_254; -lean_dec(x_226); -lean_dec(x_114); +lean_dec(x_239); +lean_dec(x_238); +lean_dec(x_237); +lean_dec(x_209); +lean_dec(x_134); lean_dec(x_1); x_254 = lean_box(0); lean_ctor_set(x_8, 0, x_254); return x_8; } } -} -} -} else { lean_object* x_255; -lean_dec(x_113); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_dec(x_238); +lean_dec(x_237); +lean_dec(x_209); +lean_dec(x_134); lean_dec(x_1); x_255 = lean_box(0); lean_ctor_set(x_8, 0, x_255); return x_8; } } -default: +else { lean_object* x_256; +lean_dec(x_237); +lean_dec(x_209); +lean_dec(x_134); +lean_dec(x_1); +x_256 = lean_box(0); +lean_ctor_set(x_8, 0, x_256); +return x_8; +} +} +default: +{ +lean_object* x_257; +lean_dec(x_209); +lean_dec(x_134); +lean_dec(x_1); +x_257 = lean_box(0); +lean_ctor_set(x_8, 0, x_257); +return x_8; +} +} +} +} +} +} +else +{ +lean_object* x_258; uint8_t x_259; +lean_dec(x_136); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_258 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48; +x_259 = lean_string_dec_eq(x_135, x_258); +lean_dec(x_135); +if (x_259 == 0) +{ +lean_object* x_260; +lean_dec(x_134); +lean_dec(x_1); +x_260 = lean_box(0); +lean_ctor_set(x_8, 0, x_260); +return x_8; +} +else +{ +lean_object* x_261; lean_object* x_262; uint8_t x_263; +x_261 = lean_array_get_size(x_134); +x_262 = lean_unsigned_to_nat(4u); +x_263 = lean_nat_dec_eq(x_261, x_262); +lean_dec(x_261); +if (x_263 == 0) +{ +lean_object* x_264; +lean_dec(x_134); +lean_dec(x_1); +x_264 = lean_box(0); +lean_ctor_set(x_8, 0, x_264); +return x_8; +} +else +{ +lean_object* x_265; lean_object* x_266; +x_265 = lean_unsigned_to_nat(0u); +x_266 = lean_array_fget(x_134, x_265); +switch (lean_obj_tag(x_266)) { +case 4: +{ +lean_object* x_267; +x_267 = lean_ctor_get(x_266, 0); +lean_inc(x_267); +if (lean_obj_tag(x_267) == 1) +{ +lean_object* x_268; +x_268 = lean_ctor_get(x_267, 0); +lean_inc(x_268); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; uint8_t x_272; +x_269 = lean_ctor_get(x_266, 1); +lean_inc(x_269); +lean_dec(x_266); +x_270 = lean_ctor_get(x_267, 1); +lean_inc(x_270); +lean_dec(x_267); +x_271 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_272 = lean_string_dec_eq(x_270, x_271); +if (x_272 == 0) +{ +lean_object* x_273; uint8_t x_274; +x_273 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_274 = lean_string_dec_eq(x_270, x_273); +lean_dec(x_270); +if (x_274 == 0) +{ +lean_object* x_275; +lean_dec(x_269); +lean_dec(x_134); +lean_dec(x_1); +x_275 = lean_box(0); +lean_ctor_set(x_8, 0, x_275); +return x_8; +} +else +{ +if (lean_obj_tag(x_269) == 0) +{ +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_unsigned_to_nat(2u); +x_277 = lean_array_fget(x_134, x_276); +x_278 = lean_unsigned_to_nat(3u); +x_279 = lean_array_fget(x_134, x_278); +lean_dec(x_134); +x_280 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51; +x_281 = l_Lean_mkApp3(x_280, x_277, x_279, x_1); +x_282 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_282, 0, x_281); +lean_ctor_set(x_8, 0, x_282); +return x_8; +} +else +{ +lean_object* x_283; +lean_dec(x_269); +lean_dec(x_134); +lean_dec(x_1); +x_283 = lean_box(0); +lean_ctor_set(x_8, 0, x_283); +return x_8; +} +} +} +else +{ +lean_dec(x_270); +if (lean_obj_tag(x_269) == 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; +x_284 = lean_unsigned_to_nat(2u); +x_285 = lean_array_fget(x_134, x_284); +x_286 = lean_unsigned_to_nat(3u); +x_287 = lean_array_fget(x_134, x_286); +lean_dec(x_134); +x_288 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53; +x_289 = l_Lean_mkApp3(x_288, x_285, x_287, x_1); +x_290 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_8, 0, x_290); +return x_8; +} +else +{ +lean_object* x_291; +lean_dec(x_269); +lean_dec(x_134); +lean_dec(x_1); +x_291 = lean_box(0); +lean_ctor_set(x_8, 0, x_291); +return x_8; +} +} +} +else +{ +lean_object* x_292; +lean_dec(x_268); +lean_dec(x_267); +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_292 = lean_box(0); +lean_ctor_set(x_8, 0, x_292); +return x_8; +} +} +else +{ +lean_object* x_293; +lean_dec(x_267); +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_293 = lean_box(0); +lean_ctor_set(x_8, 0, x_293); +return x_8; +} +} +case 5: +{ +lean_object* x_294; +x_294 = lean_ctor_get(x_266, 0); +lean_inc(x_294); +if (lean_obj_tag(x_294) == 4) +{ +lean_object* x_295; +x_295 = lean_ctor_get(x_294, 0); +lean_inc(x_295); +if (lean_obj_tag(x_295) == 1) +{ +lean_object* x_296; +x_296 = lean_ctor_get(x_295, 0); +lean_inc(x_296); +if (lean_obj_tag(x_296) == 0) +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; +x_297 = lean_ctor_get(x_266, 1); +lean_inc(x_297); +lean_dec(x_266); +x_298 = lean_ctor_get(x_294, 1); +lean_inc(x_298); +lean_dec(x_294); +x_299 = lean_ctor_get(x_295, 1); +lean_inc(x_299); +lean_dec(x_295); +x_300 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_301 = lean_string_dec_eq(x_299, x_300); +lean_dec(x_299); +if (x_301 == 0) +{ +lean_object* x_302; +lean_dec(x_298); +lean_dec(x_297); +lean_dec(x_134); +lean_dec(x_1); +x_302 = lean_box(0); +lean_ctor_set(x_8, 0, x_302); +return x_8; +} +else +{ +if (lean_obj_tag(x_298) == 0) +{ +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; +x_303 = lean_unsigned_to_nat(2u); +x_304 = lean_array_fget(x_134, x_303); +x_305 = lean_unsigned_to_nat(3u); +x_306 = lean_array_fget(x_134, x_305); +lean_dec(x_134); +x_307 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55; +x_308 = l_Lean_mkApp4(x_307, x_297, x_304, x_306, x_1); +x_309 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_8, 0, x_309); +return x_8; +} +else +{ +lean_object* x_310; +lean_dec(x_298); +lean_dec(x_297); +lean_dec(x_134); +lean_dec(x_1); +x_310 = lean_box(0); +lean_ctor_set(x_8, 0, x_310); +return x_8; +} +} +} +else +{ +lean_object* x_311; +lean_dec(x_296); +lean_dec(x_295); +lean_dec(x_294); +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_311 = lean_box(0); +lean_ctor_set(x_8, 0, x_311); +return x_8; +} +} +else +{ +lean_object* x_312; +lean_dec(x_295); +lean_dec(x_294); +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_312 = lean_box(0); +lean_ctor_set(x_8, 0, x_312); +return x_8; +} +} +else +{ +lean_object* x_313; +lean_dec(x_294); +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_313 = lean_box(0); +lean_ctor_set(x_8, 0, x_313); +return x_8; +} +} +default: +{ +lean_object* x_314; +lean_dec(x_266); +lean_dec(x_134); +lean_dec(x_1); +x_314 = lean_box(0); +lean_ctor_set(x_8, 0, x_314); +return x_8; +} +} +} +} +} +} +else +{ +lean_object* x_315; +lean_dec(x_133); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -16541,15 +18002,15 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_256 = lean_box(0); -lean_ctor_set(x_8, 0, x_256); +x_315 = lean_box(0); +lean_ctor_set(x_8, 0, x_315); return x_8; } } -} -else +default: { -lean_object* x_257; +lean_object* x_316; +lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_6); @@ -16557,1434 +18018,1822 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_257 = lean_box(0); -lean_ctor_set(x_8, 0, x_257); +x_316 = lean_box(0); +lean_ctor_set(x_8, 0, x_316); +return x_8; +} +} +} +else +{ +lean_object* x_317; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_317 = lean_box(0); +lean_ctor_set(x_8, 0, x_317); return x_8; } } else { -lean_object* x_258; lean_object* x_259; lean_object* x_260; -x_258 = lean_ctor_get(x_8, 1); -lean_inc(x_258); +lean_object* x_318; lean_object* x_319; lean_object* x_320; +x_318 = lean_ctor_get(x_8, 1); +lean_inc(x_318); lean_dec(x_8); -x_259 = l_Lean_Expr_getAppFnArgs(x_9); -x_260 = lean_ctor_get(x_259, 0); -lean_inc(x_260); -if (lean_obj_tag(x_260) == 1) +x_319 = l_Lean_Expr_getAppFnArgs(x_9); +x_320 = lean_ctor_get(x_319, 0); +lean_inc(x_320); +if (lean_obj_tag(x_320) == 1) { -lean_object* x_261; -x_261 = lean_ctor_get(x_260, 0); -lean_inc(x_261); -switch (lean_obj_tag(x_261)) { +lean_object* x_321; +x_321 = lean_ctor_get(x_320, 0); +lean_inc(x_321); +switch (lean_obj_tag(x_321)) { case 0: { -lean_object* x_262; lean_object* x_263; lean_object* x_264; uint8_t x_265; +lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_262 = lean_ctor_get(x_259, 1); -lean_inc(x_262); -lean_dec(x_259); -x_263 = lean_ctor_get(x_260, 1); -lean_inc(x_263); -lean_dec(x_260); -x_264 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; -x_265 = lean_string_dec_eq(x_263, x_264); -if (x_265 == 0) +x_322 = lean_ctor_get(x_319, 1); +lean_inc(x_322); +lean_dec(x_319); +x_323 = lean_ctor_get(x_320, 1); +lean_inc(x_323); +lean_dec(x_320); +x_324 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; +x_325 = lean_string_dec_eq(x_323, x_324); +if (x_325 == 0) { -lean_object* x_266; uint8_t x_267; -x_266 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__1; -x_267 = lean_string_dec_eq(x_263, x_266); -if (x_267 == 0) +lean_object* x_326; uint8_t x_327; +x_326 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__1; +x_327 = lean_string_dec_eq(x_323, x_326); +if (x_327 == 0) { -lean_object* x_268; uint8_t x_269; -x_268 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__1; -x_269 = lean_string_dec_eq(x_263, x_268); -if (x_269 == 0) +lean_object* x_328; uint8_t x_329; +x_328 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__1; +x_329 = lean_string_dec_eq(x_323, x_328); +if (x_329 == 0) { -lean_object* x_270; uint8_t x_271; -x_270 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__2; -x_271 = lean_string_dec_eq(x_263, x_270); -if (x_271 == 0) +lean_object* x_330; uint8_t x_331; +x_330 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__2; +x_331 = lean_string_dec_eq(x_323, x_330); +if (x_331 == 0) { -lean_object* x_272; uint8_t x_273; -x_272 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; -x_273 = lean_string_dec_eq(x_263, x_272); -lean_dec(x_263); -if (x_273 == 0) +lean_object* x_332; uint8_t x_333; +x_332 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; +x_333 = lean_string_dec_eq(x_323, x_332); +lean_dec(x_323); +if (x_333 == 0) { -lean_object* x_274; lean_object* x_275; -lean_dec(x_262); +lean_object* x_334; lean_object* x_335; +lean_dec(x_322); lean_dec(x_1); -x_274 = lean_box(0); -x_275 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_275, 0, x_274); -lean_ctor_set(x_275, 1, x_258); -return x_275; +x_334 = lean_box(0); +x_335 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_335, 0, x_334); +lean_ctor_set(x_335, 1, x_318); +return x_335; } else { -lean_object* x_276; lean_object* x_277; uint8_t x_278; -x_276 = lean_array_get_size(x_262); -x_277 = lean_unsigned_to_nat(2u); -x_278 = lean_nat_dec_eq(x_276, x_277); -lean_dec(x_276); -if (x_278 == 0) -{ -lean_object* x_279; lean_object* x_280; -lean_dec(x_262); -lean_dec(x_1); -x_279 = lean_box(0); -x_280 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_280, 0, x_279); -lean_ctor_set(x_280, 1, x_258); -return x_280; -} -else -{ -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; -x_281 = lean_unsigned_to_nat(0u); -x_282 = lean_array_fget(x_262, x_281); -x_283 = lean_unsigned_to_nat(1u); -x_284 = lean_array_fget(x_262, x_283); -lean_dec(x_262); -x_285 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_282); -x_286 = l_Lean_Expr_app___override(x_285, x_282); -lean_inc(x_284); -x_287 = l_Lean_Expr_app___override(x_285, x_284); -x_288 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__7; -x_289 = l_Lean_mkApp5(x_288, x_282, x_284, x_286, x_287, x_1); -x_290 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_290, 0, x_289); -x_291 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_258); -return x_291; -} -} -} -else -{ -lean_object* x_292; lean_object* x_293; uint8_t x_294; -lean_dec(x_263); -x_292 = lean_array_get_size(x_262); -x_293 = lean_unsigned_to_nat(1u); -x_294 = lean_nat_dec_eq(x_292, x_293); -lean_dec(x_292); -if (x_294 == 0) -{ -lean_object* x_295; lean_object* x_296; -lean_dec(x_262); -lean_dec(x_1); -x_295 = lean_box(0); -x_296 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_296, 0, x_295); -lean_ctor_set(x_296, 1, x_258); -return x_296; -} -else -{ -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; -x_297 = lean_unsigned_to_nat(0u); -x_298 = lean_array_fget(x_262, x_297); -lean_dec(x_262); -x_299 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_298); -x_300 = l_Lean_Expr_app___override(x_299, x_298); -x_301 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__14; -x_302 = l_Lean_mkApp3(x_301, x_298, x_300, x_1); -x_303 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_303, 0, x_302); -x_304 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_304, 0, x_303); -lean_ctor_set(x_304, 1, x_258); -return x_304; -} -} -} -else -{ -lean_object* x_305; lean_object* x_306; uint8_t x_307; -lean_dec(x_263); -x_305 = lean_array_get_size(x_262); -x_306 = lean_unsigned_to_nat(2u); -x_307 = lean_nat_dec_eq(x_305, x_306); -lean_dec(x_305); -if (x_307 == 0) -{ -lean_object* x_308; lean_object* x_309; -lean_dec(x_262); -lean_dec(x_1); -x_308 = lean_box(0); -x_309 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_309, 0, x_308); -lean_ctor_set(x_309, 1, x_258); -return x_309; -} -else -{ -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; -x_310 = lean_unsigned_to_nat(0u); -x_311 = lean_array_fget(x_262, x_310); -x_312 = lean_unsigned_to_nat(1u); -x_313 = lean_array_fget(x_262, x_312); -lean_dec(x_262); -x_314 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_311); -x_315 = l_Lean_Expr_app___override(x_314, x_311); -lean_inc(x_313); -x_316 = l_Lean_Expr_app___override(x_314, x_313); -x_317 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__17; -x_318 = l_Lean_mkApp5(x_317, x_311, x_313, x_315, x_316, x_1); -x_319 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_319, 0, x_318); -x_320 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_320, 0, x_319); -lean_ctor_set(x_320, 1, x_258); -return x_320; -} -} -} -else -{ -lean_object* x_321; lean_object* x_322; uint8_t x_323; -lean_dec(x_263); -x_321 = lean_array_get_size(x_262); -x_322 = lean_unsigned_to_nat(2u); -x_323 = lean_nat_dec_eq(x_321, x_322); -lean_dec(x_321); -if (x_323 == 0) -{ -lean_object* x_324; lean_object* x_325; -lean_dec(x_262); -lean_dec(x_1); -x_324 = lean_box(0); -x_325 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_325, 0, x_324); -lean_ctor_set(x_325, 1, x_258); -return x_325; -} -else -{ -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; -x_326 = lean_unsigned_to_nat(0u); -x_327 = lean_array_fget(x_262, x_326); -x_328 = lean_unsigned_to_nat(1u); -x_329 = lean_array_fget(x_262, x_328); -lean_dec(x_262); -x_330 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__20; -x_331 = l_Lean_mkApp3(x_330, x_327, x_329, x_1); -x_332 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_332, 0, x_331); -x_333 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_333, 0, x_332); -lean_ctor_set(x_333, 1, x_258); -return x_333; -} -} -} -else -{ -lean_object* x_334; lean_object* x_335; uint8_t x_336; -lean_dec(x_263); -x_334 = lean_array_get_size(x_262); -x_335 = lean_unsigned_to_nat(3u); -x_336 = lean_nat_dec_eq(x_334, x_335); -lean_dec(x_334); -if (x_336 == 0) -{ -lean_object* x_337; lean_object* x_338; -lean_dec(x_262); -lean_dec(x_1); -x_337 = lean_box(0); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_337); -lean_ctor_set(x_338, 1, x_258); -return x_338; -} -else +lean_object* x_336; lean_object* x_337; uint8_t x_338; +x_336 = lean_array_get_size(x_322); +x_337 = lean_unsigned_to_nat(2u); +x_338 = lean_nat_dec_eq(x_336, x_337); +lean_dec(x_336); +if (x_338 == 0) { lean_object* x_339; lean_object* x_340; -x_339 = lean_unsigned_to_nat(0u); -x_340 = lean_array_fget(x_262, x_339); -if (lean_obj_tag(x_340) == 4) +lean_dec(x_322); +lean_dec(x_1); +x_339 = lean_box(0); +x_340 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_340, 0, x_339); +lean_ctor_set(x_340, 1, x_318); +return x_340; +} +else { -lean_object* x_341; -x_341 = lean_ctor_get(x_340, 0); -lean_inc(x_341); -if (lean_obj_tag(x_341) == 1) -{ -lean_object* x_342; -x_342 = lean_ctor_get(x_341, 0); +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; +x_341 = lean_unsigned_to_nat(0u); +x_342 = lean_array_fget(x_322, x_341); +x_343 = lean_unsigned_to_nat(1u); +x_344 = lean_array_fget(x_322, x_343); +lean_dec(x_322); +x_345 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; lean_inc(x_342); -if (lean_obj_tag(x_342) == 0) -{ -lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; -x_343 = lean_ctor_get(x_340, 1); -lean_inc(x_343); -lean_dec(x_340); -x_344 = lean_ctor_get(x_341, 1); +x_346 = l_Lean_Expr_app___override(x_345, x_342); lean_inc(x_344); -lean_dec(x_341); -x_345 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_346 = lean_string_dec_eq(x_344, x_345); -if (x_346 == 0) -{ -lean_object* x_347; uint8_t x_348; -x_347 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_348 = lean_string_dec_eq(x_344, x_347); -lean_dec(x_344); -if (x_348 == 0) -{ -lean_object* x_349; lean_object* x_350; -lean_dec(x_343); -lean_dec(x_262); -lean_dec(x_1); -x_349 = lean_box(0); -x_350 = lean_alloc_ctor(0, 2, 0); +x_347 = l_Lean_Expr_app___override(x_345, x_344); +x_348 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__7; +x_349 = l_Lean_mkApp5(x_348, x_342, x_344, x_346, x_347, x_1); +x_350 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_350, 0, x_349); -lean_ctor_set(x_350, 1, x_258); -return x_350; +x_351 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_351, 0, x_350); +lean_ctor_set(x_351, 1, x_318); +return x_351; +} +} } else { -if (lean_obj_tag(x_343) == 0) +lean_object* x_352; lean_object* x_353; uint8_t x_354; +lean_dec(x_323); +x_352 = lean_array_get_size(x_322); +x_353 = lean_unsigned_to_nat(1u); +x_354 = lean_nat_dec_eq(x_352, x_353); +lean_dec(x_352); +if (x_354 == 0) { -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; -x_351 = lean_unsigned_to_nat(1u); -x_352 = lean_array_fget(x_262, x_351); -x_353 = lean_unsigned_to_nat(2u); -x_354 = lean_array_fget(x_262, x_353); -lean_dec(x_262); -x_355 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; -x_356 = l_Lean_mkApp3(x_355, x_352, x_354, x_1); -x_357 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_357, 0, x_356); -x_358 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_358, 0, x_357); -lean_ctor_set(x_358, 1, x_258); -return x_358; -} -else -{ -lean_object* x_359; lean_object* x_360; -lean_dec(x_343); -lean_dec(x_262); +lean_object* x_355; lean_object* x_356; +lean_dec(x_322); lean_dec(x_1); -x_359 = lean_box(0); -x_360 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_360, 0, x_359); -lean_ctor_set(x_360, 1, x_258); -return x_360; +x_355 = lean_box(0); +x_356 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_356, 0, x_355); +lean_ctor_set(x_356, 1, x_318); +return x_356; +} +else +{ +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; +x_357 = lean_unsigned_to_nat(0u); +x_358 = lean_array_fget(x_322, x_357); +lean_dec(x_322); +x_359 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_358); +x_360 = l_Lean_Expr_app___override(x_359, x_358); +x_361 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__14; +x_362 = l_Lean_mkApp3(x_361, x_358, x_360, x_1); +x_363 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_363, 0, x_362); +x_364 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_364, 0, x_363); +lean_ctor_set(x_364, 1, x_318); +return x_364; } } } else { -lean_dec(x_344); -if (lean_obj_tag(x_343) == 0) +lean_object* x_365; lean_object* x_366; uint8_t x_367; +lean_dec(x_323); +x_365 = lean_array_get_size(x_322); +x_366 = lean_unsigned_to_nat(2u); +x_367 = lean_nat_dec_eq(x_365, x_366); +lean_dec(x_365); +if (x_367 == 0) { -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; -x_361 = lean_unsigned_to_nat(1u); -x_362 = lean_array_fget(x_262, x_361); -x_363 = lean_unsigned_to_nat(2u); -x_364 = lean_array_fget(x_262, x_363); -lean_dec(x_262); -x_365 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__25; -x_366 = l_Lean_mkApp3(x_365, x_362, x_364, x_1); -x_367 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_367, 0, x_366); -x_368 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_368, 0, x_367); -lean_ctor_set(x_368, 1, x_258); -return x_368; -} -else -{ -lean_object* x_369; lean_object* x_370; -lean_dec(x_343); -lean_dec(x_262); +lean_object* x_368; lean_object* x_369; +lean_dec(x_322); lean_dec(x_1); -x_369 = lean_box(0); -x_370 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_370, 0, x_369); -lean_ctor_set(x_370, 1, x_258); -return x_370; +x_368 = lean_box(0); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_368); +lean_ctor_set(x_369, 1, x_318); +return x_369; +} +else +{ +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; +x_370 = lean_unsigned_to_nat(0u); +x_371 = lean_array_fget(x_322, x_370); +x_372 = lean_unsigned_to_nat(1u); +x_373 = lean_array_fget(x_322, x_372); +lean_dec(x_322); +x_374 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_371); +x_375 = l_Lean_Expr_app___override(x_374, x_371); +lean_inc(x_373); +x_376 = l_Lean_Expr_app___override(x_374, x_373); +x_377 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__17; +x_378 = l_Lean_mkApp5(x_377, x_371, x_373, x_375, x_376, x_1); +x_379 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_379, 0, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_379); +lean_ctor_set(x_380, 1, x_318); +return x_380; } } } else { -lean_object* x_371; lean_object* x_372; -lean_dec(x_342); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_262); +lean_object* x_381; lean_object* x_382; uint8_t x_383; +lean_dec(x_323); +x_381 = lean_array_get_size(x_322); +x_382 = lean_unsigned_to_nat(2u); +x_383 = lean_nat_dec_eq(x_381, x_382); +lean_dec(x_381); +if (x_383 == 0) +{ +lean_object* x_384; lean_object* x_385; +lean_dec(x_322); lean_dec(x_1); -x_371 = lean_box(0); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_371); -lean_ctor_set(x_372, 1, x_258); -return x_372; +x_384 = lean_box(0); +x_385 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_318); +return x_385; +} +else +{ +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; +x_386 = lean_unsigned_to_nat(0u); +x_387 = lean_array_fget(x_322, x_386); +x_388 = lean_unsigned_to_nat(1u); +x_389 = lean_array_fget(x_322, x_388); +lean_dec(x_322); +x_390 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__20; +x_391 = l_Lean_mkApp3(x_390, x_387, x_389, x_1); +x_392 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_392, 0, x_391); +x_393 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_393, 0, x_392); +lean_ctor_set(x_393, 1, x_318); +return x_393; +} } } else { -lean_object* x_373; lean_object* x_374; -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_262); +lean_object* x_394; lean_object* x_395; uint8_t x_396; +lean_dec(x_323); +x_394 = lean_array_get_size(x_322); +x_395 = lean_unsigned_to_nat(3u); +x_396 = lean_nat_dec_eq(x_394, x_395); +lean_dec(x_394); +if (x_396 == 0) +{ +lean_object* x_397; lean_object* x_398; +lean_dec(x_322); lean_dec(x_1); -x_373 = lean_box(0); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_373); -lean_ctor_set(x_374, 1, x_258); -return x_374; +x_397 = lean_box(0); +x_398 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_398, 0, x_397); +lean_ctor_set(x_398, 1, x_318); +return x_398; +} +else +{ +lean_object* x_399; lean_object* x_400; +x_399 = lean_unsigned_to_nat(0u); +x_400 = lean_array_fget(x_322, x_399); +switch (lean_obj_tag(x_400)) { +case 4: +{ +lean_object* x_401; +x_401 = lean_ctor_get(x_400, 0); +lean_inc(x_401); +if (lean_obj_tag(x_401) == 1) +{ +lean_object* x_402; +x_402 = lean_ctor_get(x_401, 0); +lean_inc(x_402); +if (lean_obj_tag(x_402) == 0) +{ +lean_object* x_403; lean_object* x_404; lean_object* x_405; uint8_t x_406; +x_403 = lean_ctor_get(x_400, 1); +lean_inc(x_403); +lean_dec(x_400); +x_404 = lean_ctor_get(x_401, 1); +lean_inc(x_404); +lean_dec(x_401); +x_405 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_406 = lean_string_dec_eq(x_404, x_405); +if (x_406 == 0) +{ +lean_object* x_407; uint8_t x_408; +x_407 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_408 = lean_string_dec_eq(x_404, x_407); +lean_dec(x_404); +if (x_408 == 0) +{ +lean_object* x_409; lean_object* x_410; +lean_dec(x_403); +lean_dec(x_322); +lean_dec(x_1); +x_409 = lean_box(0); +x_410 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_410, 0, x_409); +lean_ctor_set(x_410, 1, x_318); +return x_410; +} +else +{ +if (lean_obj_tag(x_403) == 0) +{ +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; +x_411 = lean_unsigned_to_nat(1u); +x_412 = lean_array_fget(x_322, x_411); +x_413 = lean_unsigned_to_nat(2u); +x_414 = lean_array_fget(x_322, x_413); +lean_dec(x_322); +x_415 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; +x_416 = l_Lean_mkApp3(x_415, x_412, x_414, x_1); +x_417 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_417, 0, x_416); +x_418 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_418, 0, x_417); +lean_ctor_set(x_418, 1, x_318); +return x_418; +} +else +{ +lean_object* x_419; lean_object* x_420; +lean_dec(x_403); +lean_dec(x_322); +lean_dec(x_1); +x_419 = lean_box(0); +x_420 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_420, 0, x_419); +lean_ctor_set(x_420, 1, x_318); +return x_420; +} } } else { -lean_object* x_375; lean_object* x_376; -lean_dec(x_340); -lean_dec(x_262); +lean_dec(x_404); +if (lean_obj_tag(x_403) == 0) +{ +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; +x_421 = lean_unsigned_to_nat(1u); +x_422 = lean_array_fget(x_322, x_421); +x_423 = lean_unsigned_to_nat(2u); +x_424 = lean_array_fget(x_322, x_423); +lean_dec(x_322); +x_425 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__25; +x_426 = l_Lean_mkApp3(x_425, x_422, x_424, x_1); +x_427 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_427, 0, x_426); +x_428 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_428, 0, x_427); +lean_ctor_set(x_428, 1, x_318); +return x_428; +} +else +{ +lean_object* x_429; lean_object* x_430; +lean_dec(x_403); +lean_dec(x_322); lean_dec(x_1); -x_375 = lean_box(0); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_375); -lean_ctor_set(x_376, 1, x_258); -return x_376; +x_429 = lean_box(0); +x_430 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_430, 0, x_429); +lean_ctor_set(x_430, 1, x_318); +return x_430; +} +} +} +else +{ +lean_object* x_431; lean_object* x_432; +lean_dec(x_402); +lean_dec(x_401); +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_431 = lean_box(0); +x_432 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_432, 0, x_431); +lean_ctor_set(x_432, 1, x_318); +return x_432; +} +} +else +{ +lean_object* x_433; lean_object* x_434; +lean_dec(x_401); +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_433 = lean_box(0); +x_434 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_434, 0, x_433); +lean_ctor_set(x_434, 1, x_318); +return x_434; +} +} +case 5: +{ +lean_object* x_435; +x_435 = lean_ctor_get(x_400, 0); +lean_inc(x_435); +if (lean_obj_tag(x_435) == 4) +{ +lean_object* x_436; +x_436 = lean_ctor_get(x_435, 0); +lean_inc(x_436); +if (lean_obj_tag(x_436) == 1) +{ +lean_object* x_437; +x_437 = lean_ctor_get(x_436, 0); +lean_inc(x_437); +if (lean_obj_tag(x_437) == 0) +{ +lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; uint8_t x_442; +x_438 = lean_ctor_get(x_400, 1); +lean_inc(x_438); +lean_dec(x_400); +x_439 = lean_ctor_get(x_435, 1); +lean_inc(x_439); +lean_dec(x_435); +x_440 = lean_ctor_get(x_436, 1); +lean_inc(x_440); +lean_dec(x_436); +x_441 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_442 = lean_string_dec_eq(x_440, x_441); +lean_dec(x_440); +if (x_442 == 0) +{ +lean_object* x_443; lean_object* x_444; +lean_dec(x_439); +lean_dec(x_438); +lean_dec(x_322); +lean_dec(x_1); +x_443 = lean_box(0); +x_444 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_444, 0, x_443); +lean_ctor_set(x_444, 1, x_318); +return x_444; +} +else +{ +if (lean_obj_tag(x_439) == 0) +{ +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; +x_445 = lean_unsigned_to_nat(1u); +x_446 = lean_array_fget(x_322, x_445); +x_447 = lean_unsigned_to_nat(2u); +x_448 = lean_array_fget(x_322, x_447); +lean_dec(x_322); +x_449 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; +x_450 = l_Lean_mkApp4(x_449, x_438, x_446, x_448, x_1); +x_451 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_451, 0, x_450); +x_452 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_452, 0, x_451); +lean_ctor_set(x_452, 1, x_318); +return x_452; +} +else +{ +lean_object* x_453; lean_object* x_454; +lean_dec(x_439); +lean_dec(x_438); +lean_dec(x_322); +lean_dec(x_1); +x_453 = lean_box(0); +x_454 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_454, 0, x_453); +lean_ctor_set(x_454, 1, x_318); +return x_454; +} +} +} +else +{ +lean_object* x_455; lean_object* x_456; +lean_dec(x_437); +lean_dec(x_436); +lean_dec(x_435); +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_455 = lean_box(0); +x_456 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_456, 0, x_455); +lean_ctor_set(x_456, 1, x_318); +return x_456; +} +} +else +{ +lean_object* x_457; lean_object* x_458; +lean_dec(x_436); +lean_dec(x_435); +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_457 = lean_box(0); +x_458 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_458, 0, x_457); +lean_ctor_set(x_458, 1, x_318); +return x_458; +} +} +else +{ +lean_object* x_459; lean_object* x_460; +lean_dec(x_435); +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_459 = lean_box(0); +x_460 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_460, 0, x_459); +lean_ctor_set(x_460, 1, x_318); +return x_460; +} +} +default: +{ +lean_object* x_461; lean_object* x_462; +lean_dec(x_400); +lean_dec(x_322); +lean_dec(x_1); +x_461 = lean_box(0); +x_462 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_462, 0, x_461); +lean_ctor_set(x_462, 1, x_318); +return x_462; +} } } } } case 1: { -lean_object* x_377; -x_377 = lean_ctor_get(x_261, 0); -lean_inc(x_377); -if (lean_obj_tag(x_377) == 0) +lean_object* x_463; +x_463 = lean_ctor_get(x_321, 0); +lean_inc(x_463); +if (lean_obj_tag(x_463) == 0) { -lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; -x_378 = lean_ctor_get(x_259, 1); -lean_inc(x_378); -lean_dec(x_259); -x_379 = lean_ctor_get(x_260, 1); -lean_inc(x_379); -lean_dec(x_260); -x_380 = lean_ctor_get(x_261, 1); -lean_inc(x_380); -lean_dec(x_261); -x_381 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; -x_382 = lean_string_dec_eq(x_380, x_381); -if (x_382 == 0) -{ -lean_object* x_383; uint8_t x_384; -x_383 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; -x_384 = lean_string_dec_eq(x_380, x_383); -if (x_384 == 0) -{ -lean_object* x_385; uint8_t x_386; -x_385 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_386 = lean_string_dec_eq(x_380, x_385); -if (x_386 == 0) -{ -lean_object* x_387; uint8_t x_388; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_387 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; -x_388 = lean_string_dec_eq(x_380, x_387); -lean_dec(x_380); -if (x_388 == 0) -{ -lean_object* x_389; lean_object* x_390; -lean_dec(x_379); -lean_dec(x_378); -lean_dec(x_1); -x_389 = lean_box(0); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_389); -lean_ctor_set(x_390, 1, x_258); -return x_390; -} -else -{ -lean_object* x_391; uint8_t x_392; -x_391 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; -x_392 = lean_string_dec_eq(x_379, x_391); -lean_dec(x_379); -if (x_392 == 0) -{ -lean_object* x_393; lean_object* x_394; -lean_dec(x_378); -lean_dec(x_1); -x_393 = lean_box(0); -x_394 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_394, 0, x_393); -lean_ctor_set(x_394, 1, x_258); -return x_394; -} -else -{ -lean_object* x_395; lean_object* x_396; uint8_t x_397; -x_395 = lean_array_get_size(x_378); -x_396 = lean_unsigned_to_nat(4u); -x_397 = lean_nat_dec_eq(x_395, x_396); -lean_dec(x_395); -if (x_397 == 0) -{ -lean_object* x_398; lean_object* x_399; -lean_dec(x_378); -lean_dec(x_1); -x_398 = lean_box(0); -x_399 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_399, 0, x_398); -lean_ctor_set(x_399, 1, x_258); -return x_399; -} -else -{ -lean_object* x_400; lean_object* x_401; -x_400 = lean_unsigned_to_nat(0u); -x_401 = lean_array_fget(x_378, x_400); -if (lean_obj_tag(x_401) == 4) -{ -lean_object* x_402; -x_402 = lean_ctor_get(x_401, 0); -lean_inc(x_402); -if (lean_obj_tag(x_402) == 1) -{ -lean_object* x_403; -x_403 = lean_ctor_get(x_402, 0); -lean_inc(x_403); -if (lean_obj_tag(x_403) == 0) -{ -lean_object* x_404; lean_object* x_405; lean_object* x_406; uint8_t x_407; -x_404 = lean_ctor_get(x_401, 1); -lean_inc(x_404); -lean_dec(x_401); -x_405 = lean_ctor_get(x_402, 1); -lean_inc(x_405); -lean_dec(x_402); -x_406 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_407 = lean_string_dec_eq(x_405, x_406); -if (x_407 == 0) -{ -lean_object* x_408; uint8_t x_409; -x_408 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_409 = lean_string_dec_eq(x_405, x_408); -lean_dec(x_405); -if (x_409 == 0) -{ -lean_object* x_410; lean_object* x_411; -lean_dec(x_404); -lean_dec(x_378); -lean_dec(x_1); -x_410 = lean_box(0); -x_411 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_258); -return x_411; -} -else -{ -if (lean_obj_tag(x_404) == 0) -{ -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; -x_412 = lean_unsigned_to_nat(2u); -x_413 = lean_array_fget(x_378, x_412); -x_414 = lean_unsigned_to_nat(3u); -x_415 = lean_array_fget(x_378, x_414); -lean_dec(x_378); -x_416 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__32; -x_417 = l_Lean_mkApp3(x_416, x_413, x_415, x_1); -x_418 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_418, 0, x_417); -x_419 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_419, 0, x_418); -lean_ctor_set(x_419, 1, x_258); -return x_419; -} -else -{ -lean_object* x_420; lean_object* x_421; -lean_dec(x_404); -lean_dec(x_378); -lean_dec(x_1); -x_420 = lean_box(0); -x_421 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_421, 0, x_420); -lean_ctor_set(x_421, 1, x_258); -return x_421; -} -} -} -else -{ -lean_dec(x_405); -if (lean_obj_tag(x_404) == 0) -{ -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; -x_422 = lean_unsigned_to_nat(2u); -x_423 = lean_array_fget(x_378, x_422); -x_424 = lean_unsigned_to_nat(3u); -x_425 = lean_array_fget(x_378, x_424); -lean_dec(x_378); -x_426 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__34; -x_427 = l_Lean_mkApp3(x_426, x_423, x_425, x_1); -x_428 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_428, 0, x_427); -x_429 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_429, 0, x_428); -lean_ctor_set(x_429, 1, x_258); -return x_429; -} -else -{ -lean_object* x_430; lean_object* x_431; -lean_dec(x_404); -lean_dec(x_378); -lean_dec(x_1); -x_430 = lean_box(0); -x_431 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_431, 0, x_430); -lean_ctor_set(x_431, 1, x_258); -return x_431; -} -} -} -else -{ -lean_object* x_432; lean_object* x_433; -lean_dec(x_403); -lean_dec(x_402); -lean_dec(x_401); -lean_dec(x_378); -lean_dec(x_1); -x_432 = lean_box(0); -x_433 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_433, 0, x_432); -lean_ctor_set(x_433, 1, x_258); -return x_433; -} -} -else -{ -lean_object* x_434; lean_object* x_435; -lean_dec(x_402); -lean_dec(x_401); -lean_dec(x_378); -lean_dec(x_1); -x_434 = lean_box(0); -x_435 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_435, 0, x_434); -lean_ctor_set(x_435, 1, x_258); -return x_435; -} -} -else -{ -lean_object* x_436; lean_object* x_437; -lean_dec(x_401); -lean_dec(x_378); -lean_dec(x_1); -x_436 = lean_box(0); -x_437 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_437, 0, x_436); -lean_ctor_set(x_437, 1, x_258); -return x_437; -} -} -} -} -} -else -{ -lean_object* x_438; uint8_t x_439; -lean_dec(x_380); -lean_dec(x_378); -x_438 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; -x_439 = lean_string_dec_eq(x_379, x_438); -lean_dec(x_379); -if (x_439 == 0) -{ -lean_object* x_440; lean_object* x_441; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_440 = lean_box(0); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_440); -lean_ctor_set(x_441, 1, x_258); -return x_441; -} -else -{ -lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; -x_442 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_443 = lean_array_push(x_442, x_1); -x_444 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; -x_445 = l_Lean_Meta_mkAppM(x_444, x_443, x_3, x_4, x_5, x_6, x_258); -if (lean_obj_tag(x_445) == 0) -{ -lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; -x_446 = lean_ctor_get(x_445, 0); -lean_inc(x_446); -x_447 = lean_ctor_get(x_445, 1); -lean_inc(x_447); -if (lean_is_exclusive(x_445)) { - lean_ctor_release(x_445, 0); - lean_ctor_release(x_445, 1); - x_448 = x_445; -} else { - lean_dec_ref(x_445); - x_448 = lean_box(0); -} -x_449 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_449, 0, x_446); -if (lean_is_scalar(x_448)) { - x_450 = lean_alloc_ctor(0, 2, 0); -} else { - x_450 = x_448; -} -lean_ctor_set(x_450, 0, x_449); -lean_ctor_set(x_450, 1, x_447); -return x_450; -} -else -{ -lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; -x_451 = lean_ctor_get(x_445, 0); -lean_inc(x_451); -x_452 = lean_ctor_get(x_445, 1); -lean_inc(x_452); -if (lean_is_exclusive(x_445)) { - lean_ctor_release(x_445, 0); - lean_ctor_release(x_445, 1); - x_453 = x_445; -} else { - lean_dec_ref(x_445); - x_453 = lean_box(0); -} -if (lean_is_scalar(x_453)) { - x_454 = lean_alloc_ctor(1, 2, 0); -} else { - x_454 = x_453; -} -lean_ctor_set(x_454, 0, x_451); -lean_ctor_set(x_454, 1, x_452); -return x_454; -} -} -} -} -else -{ -lean_object* x_455; uint8_t x_456; -lean_dec(x_380); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_455 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; -x_456 = lean_string_dec_eq(x_379, x_455); -lean_dec(x_379); -if (x_456 == 0) -{ -lean_object* x_457; lean_object* x_458; -lean_dec(x_378); -lean_dec(x_1); -x_457 = lean_box(0); -x_458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_458, 0, x_457); -lean_ctor_set(x_458, 1, x_258); -return x_458; -} -else -{ -lean_object* x_459; lean_object* x_460; uint8_t x_461; -x_459 = lean_array_get_size(x_378); -x_460 = lean_unsigned_to_nat(4u); -x_461 = lean_nat_dec_eq(x_459, x_460); -lean_dec(x_459); -if (x_461 == 0) -{ -lean_object* x_462; lean_object* x_463; -lean_dec(x_378); -lean_dec(x_1); -x_462 = lean_box(0); -x_463 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_463, 0, x_462); -lean_ctor_set(x_463, 1, x_258); -return x_463; -} -else -{ -lean_object* x_464; lean_object* x_465; -x_464 = lean_unsigned_to_nat(0u); -x_465 = lean_array_fget(x_378, x_464); -if (lean_obj_tag(x_465) == 4) -{ -lean_object* x_466; -x_466 = lean_ctor_get(x_465, 0); +lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; uint8_t x_468; +x_464 = lean_ctor_get(x_319, 1); +lean_inc(x_464); +lean_dec(x_319); +x_465 = lean_ctor_get(x_320, 1); +lean_inc(x_465); +lean_dec(x_320); +x_466 = lean_ctor_get(x_321, 1); lean_inc(x_466); -if (lean_obj_tag(x_466) == 1) +lean_dec(x_321); +x_467 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; +x_468 = lean_string_dec_eq(x_466, x_467); +if (x_468 == 0) { -lean_object* x_467; -x_467 = lean_ctor_get(x_466, 0); -lean_inc(x_467); -if (lean_obj_tag(x_467) == 0) +lean_object* x_469; uint8_t x_470; +x_469 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; +x_470 = lean_string_dec_eq(x_466, x_469); +if (x_470 == 0) { -lean_object* x_468; lean_object* x_469; lean_object* x_470; uint8_t x_471; -x_468 = lean_ctor_get(x_465, 1); -lean_inc(x_468); -lean_dec(x_465); -x_469 = lean_ctor_get(x_466, 1); -lean_inc(x_469); +lean_object* x_471; uint8_t x_472; +x_471 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_472 = lean_string_dec_eq(x_466, x_471); +if (x_472 == 0) +{ +lean_object* x_473; uint8_t x_474; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_473 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; +x_474 = lean_string_dec_eq(x_466, x_473); lean_dec(x_466); -x_470 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_471 = lean_string_dec_eq(x_469, x_470); -if (x_471 == 0) +if (x_474 == 0) { -lean_object* x_472; uint8_t x_473; -x_472 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_473 = lean_string_dec_eq(x_469, x_472); -lean_dec(x_469); -if (x_473 == 0) -{ -lean_object* x_474; lean_object* x_475; -lean_dec(x_468); -lean_dec(x_378); +lean_object* x_475; lean_object* x_476; +lean_dec(x_465); +lean_dec(x_464); lean_dec(x_1); -x_474 = lean_box(0); -x_475 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_475, 0, x_474); -lean_ctor_set(x_475, 1, x_258); -return x_475; +x_475 = lean_box(0); +x_476 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_476, 0, x_475); +lean_ctor_set(x_476, 1, x_318); +return x_476; } else { -if (lean_obj_tag(x_468) == 0) +lean_object* x_477; uint8_t x_478; +x_477 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; +x_478 = lean_string_dec_eq(x_465, x_477); +lean_dec(x_465); +if (x_478 == 0) { -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; -x_476 = lean_unsigned_to_nat(2u); -x_477 = lean_array_fget(x_378, x_476); -x_478 = lean_unsigned_to_nat(3u); -x_479 = lean_array_fget(x_378, x_478); -lean_dec(x_378); -x_480 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__41; -x_481 = l_Lean_mkApp3(x_480, x_477, x_479, x_1); -x_482 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_482, 0, x_481); -x_483 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_483, 0, x_482); -lean_ctor_set(x_483, 1, x_258); -return x_483; +lean_object* x_479; lean_object* x_480; +lean_dec(x_464); +lean_dec(x_1); +x_479 = lean_box(0); +x_480 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_480, 0, x_479); +lean_ctor_set(x_480, 1, x_318); +return x_480; } else { +lean_object* x_481; lean_object* x_482; uint8_t x_483; +x_481 = lean_array_get_size(x_464); +x_482 = lean_unsigned_to_nat(4u); +x_483 = lean_nat_dec_eq(x_481, x_482); +lean_dec(x_481); +if (x_483 == 0) +{ lean_object* x_484; lean_object* x_485; -lean_dec(x_468); -lean_dec(x_378); +lean_dec(x_464); lean_dec(x_1); x_484 = lean_box(0); x_485 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_485, 0, x_484); -lean_ctor_set(x_485, 1, x_258); +lean_ctor_set(x_485, 1, x_318); return x_485; } -} -} else { -lean_dec(x_469); -if (lean_obj_tag(x_468) == 0) +lean_object* x_486; lean_object* x_487; +x_486 = lean_unsigned_to_nat(0u); +x_487 = lean_array_fget(x_464, x_486); +if (lean_obj_tag(x_487) == 4) { -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; -x_486 = lean_unsigned_to_nat(2u); -x_487 = lean_array_fget(x_378, x_486); -x_488 = lean_unsigned_to_nat(3u); -x_489 = lean_array_fget(x_378, x_488); -lean_dec(x_378); -x_490 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__43; -x_491 = l_Lean_mkApp3(x_490, x_487, x_489, x_1); -x_492 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_492, 0, x_491); -x_493 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_493, 0, x_492); -lean_ctor_set(x_493, 1, x_258); -return x_493; -} -else +lean_object* x_488; +x_488 = lean_ctor_get(x_487, 0); +lean_inc(x_488); +if (lean_obj_tag(x_488) == 1) { -lean_object* x_494; lean_object* x_495; -lean_dec(x_468); -lean_dec(x_378); -lean_dec(x_1); -x_494 = lean_box(0); -x_495 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_495, 0, x_494); -lean_ctor_set(x_495, 1, x_258); -return x_495; -} -} -} -else +lean_object* x_489; +x_489 = lean_ctor_get(x_488, 0); +lean_inc(x_489); +if (lean_obj_tag(x_489) == 0) +{ +lean_object* x_490; lean_object* x_491; lean_object* x_492; uint8_t x_493; +x_490 = lean_ctor_get(x_487, 1); +lean_inc(x_490); +lean_dec(x_487); +x_491 = lean_ctor_get(x_488, 1); +lean_inc(x_491); +lean_dec(x_488); +x_492 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_493 = lean_string_dec_eq(x_491, x_492); +if (x_493 == 0) +{ +lean_object* x_494; uint8_t x_495; +x_494 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_495 = lean_string_dec_eq(x_491, x_494); +lean_dec(x_491); +if (x_495 == 0) { lean_object* x_496; lean_object* x_497; -lean_dec(x_467); -lean_dec(x_466); -lean_dec(x_465); -lean_dec(x_378); +lean_dec(x_490); +lean_dec(x_464); lean_dec(x_1); x_496 = lean_box(0); x_497 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_497, 0, x_496); -lean_ctor_set(x_497, 1, x_258); +lean_ctor_set(x_497, 1, x_318); return x_497; } -} else { -lean_object* x_498; lean_object* x_499; -lean_dec(x_466); -lean_dec(x_465); -lean_dec(x_378); -lean_dec(x_1); -x_498 = lean_box(0); -x_499 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_499, 0, x_498); -lean_ctor_set(x_499, 1, x_258); -return x_499; -} -} -else +if (lean_obj_tag(x_490) == 0) { -lean_object* x_500; lean_object* x_501; -lean_dec(x_465); -lean_dec(x_378); -lean_dec(x_1); -x_500 = lean_box(0); -x_501 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_501, 0, x_500); -lean_ctor_set(x_501, 1, x_258); -return x_501; -} -} -} -} -} -else -{ -lean_object* x_502; uint8_t x_503; -lean_dec(x_380); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_502 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; -x_503 = lean_string_dec_eq(x_379, x_502); -lean_dec(x_379); -if (x_503 == 0) -{ -lean_object* x_504; lean_object* x_505; -lean_dec(x_378); -lean_dec(x_1); -x_504 = lean_box(0); +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; +x_498 = lean_unsigned_to_nat(2u); +x_499 = lean_array_fget(x_464, x_498); +x_500 = lean_unsigned_to_nat(3u); +x_501 = lean_array_fget(x_464, x_500); +lean_dec(x_464); +x_502 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__34; +x_503 = l_Lean_mkApp3(x_502, x_499, x_501, x_1); +x_504 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_504, 0, x_503); x_505 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_505, 0, x_504); -lean_ctor_set(x_505, 1, x_258); +lean_ctor_set(x_505, 1, x_318); return x_505; } else { -lean_object* x_506; lean_object* x_507; uint8_t x_508; -x_506 = lean_array_get_size(x_378); -x_507 = lean_unsigned_to_nat(4u); -x_508 = lean_nat_dec_eq(x_506, x_507); -lean_dec(x_506); -if (x_508 == 0) -{ -lean_object* x_509; lean_object* x_510; -lean_dec(x_378); +lean_object* x_506; lean_object* x_507; +lean_dec(x_490); +lean_dec(x_464); lean_dec(x_1); -x_509 = lean_box(0); -x_510 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_510, 0, x_509); -lean_ctor_set(x_510, 1, x_258); -return x_510; +x_506 = lean_box(0); +x_507 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_507, 0, x_506); +lean_ctor_set(x_507, 1, x_318); +return x_507; +} +} } else { -lean_object* x_511; lean_object* x_512; -x_511 = lean_unsigned_to_nat(0u); -x_512 = lean_array_fget(x_378, x_511); -if (lean_obj_tag(x_512) == 4) +lean_dec(x_491); +if (lean_obj_tag(x_490) == 0) { -lean_object* x_513; -x_513 = lean_ctor_get(x_512, 0); -lean_inc(x_513); -if (lean_obj_tag(x_513) == 1) +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; +x_508 = lean_unsigned_to_nat(2u); +x_509 = lean_array_fget(x_464, x_508); +x_510 = lean_unsigned_to_nat(3u); +x_511 = lean_array_fget(x_464, x_510); +lean_dec(x_464); +x_512 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__36; +x_513 = l_Lean_mkApp3(x_512, x_509, x_511, x_1); +x_514 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_514, 0, x_513); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_514); +lean_ctor_set(x_515, 1, x_318); +return x_515; +} +else { -lean_object* x_514; -x_514 = lean_ctor_get(x_513, 0); -lean_inc(x_514); -if (lean_obj_tag(x_514) == 0) -{ -lean_object* x_515; lean_object* x_516; lean_object* x_517; uint8_t x_518; -x_515 = lean_ctor_get(x_512, 1); -lean_inc(x_515); -lean_dec(x_512); -x_516 = lean_ctor_get(x_513, 1); -lean_inc(x_516); -lean_dec(x_513); -x_517 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_518 = lean_string_dec_eq(x_516, x_517); -if (x_518 == 0) -{ -lean_object* x_519; uint8_t x_520; -x_519 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_520 = lean_string_dec_eq(x_516, x_519); -lean_dec(x_516); -if (x_520 == 0) -{ -lean_object* x_521; lean_object* x_522; -lean_dec(x_515); -lean_dec(x_378); +lean_object* x_516; lean_object* x_517; +lean_dec(x_490); +lean_dec(x_464); lean_dec(x_1); -x_521 = lean_box(0); -x_522 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_522, 0, x_521); -lean_ctor_set(x_522, 1, x_258); -return x_522; +x_516 = lean_box(0); +x_517 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_318); +return x_517; +} +} } else { -if (lean_obj_tag(x_515) == 0) -{ -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; -x_523 = lean_unsigned_to_nat(2u); -x_524 = lean_array_fget(x_378, x_523); -x_525 = lean_unsigned_to_nat(3u); -x_526 = lean_array_fget(x_378, x_525); -lean_dec(x_378); -x_527 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; -x_528 = l_Lean_mkApp3(x_527, x_524, x_526, x_1); -x_529 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_529, 0, x_528); -x_530 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_530, 0, x_529); -lean_ctor_set(x_530, 1, x_258); -return x_530; -} -else -{ -lean_object* x_531; lean_object* x_532; -lean_dec(x_515); -lean_dec(x_378); +lean_object* x_518; lean_object* x_519; +lean_dec(x_489); +lean_dec(x_488); +lean_dec(x_487); +lean_dec(x_464); lean_dec(x_1); -x_531 = lean_box(0); -x_532 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_532, 0, x_531); -lean_ctor_set(x_532, 1, x_258); -return x_532; +x_518 = lean_box(0); +x_519 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_519, 0, x_518); +lean_ctor_set(x_519, 1, x_318); +return x_519; +} +} +else +{ +lean_object* x_520; lean_object* x_521; +lean_dec(x_488); +lean_dec(x_487); +lean_dec(x_464); +lean_dec(x_1); +x_520 = lean_box(0); +x_521 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_521, 0, x_520); +lean_ctor_set(x_521, 1, x_318); +return x_521; +} +} +else +{ +lean_object* x_522; lean_object* x_523; +lean_dec(x_487); +lean_dec(x_464); +lean_dec(x_1); +x_522 = lean_box(0); +x_523 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_523, 0, x_522); +lean_ctor_set(x_523, 1, x_318); +return x_523; +} +} } } } else { -lean_dec(x_516); -if (lean_obj_tag(x_515) == 0) +lean_object* x_524; uint8_t x_525; +lean_dec(x_466); +lean_dec(x_464); +x_524 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; +x_525 = lean_string_dec_eq(x_465, x_524); +lean_dec(x_465); +if (x_525 == 0) { -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; -x_533 = lean_unsigned_to_nat(2u); -x_534 = lean_array_fget(x_378, x_533); -x_535 = lean_unsigned_to_nat(3u); -x_536 = lean_array_fget(x_378, x_535); -lean_dec(x_378); -x_537 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__49; -x_538 = l_Lean_mkApp3(x_537, x_534, x_536, x_1); -x_539 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_539, 0, x_538); -x_540 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_258); +lean_object* x_526; lean_object* x_527; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_526 = lean_box(0); +x_527 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_527, 0, x_526); +lean_ctor_set(x_527, 1, x_318); +return x_527; +} +else +{ +lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; +x_528 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_529 = lean_array_push(x_528, x_1); +x_530 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__39; +x_531 = l_Lean_Meta_mkAppM(x_530, x_529, x_3, x_4, x_5, x_6, x_318); +if (lean_obj_tag(x_531) == 0) +{ +lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; +x_532 = lean_ctor_get(x_531, 0); +lean_inc(x_532); +x_533 = lean_ctor_get(x_531, 1); +lean_inc(x_533); +if (lean_is_exclusive(x_531)) { + lean_ctor_release(x_531, 0); + lean_ctor_release(x_531, 1); + x_534 = x_531; +} else { + lean_dec_ref(x_531); + x_534 = lean_box(0); +} +x_535 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_535, 0, x_532); +if (lean_is_scalar(x_534)) { + x_536 = lean_alloc_ctor(0, 2, 0); +} else { + x_536 = x_534; +} +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_533); +return x_536; +} +else +{ +lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; +x_537 = lean_ctor_get(x_531, 0); +lean_inc(x_537); +x_538 = lean_ctor_get(x_531, 1); +lean_inc(x_538); +if (lean_is_exclusive(x_531)) { + lean_ctor_release(x_531, 0); + lean_ctor_release(x_531, 1); + x_539 = x_531; +} else { + lean_dec_ref(x_531); + x_539 = lean_box(0); +} +if (lean_is_scalar(x_539)) { + x_540 = lean_alloc_ctor(1, 2, 0); +} else { + x_540 = x_539; +} +lean_ctor_set(x_540, 0, x_537); +lean_ctor_set(x_540, 1, x_538); return x_540; } +} +} +} else { -lean_object* x_541; lean_object* x_542; -lean_dec(x_515); -lean_dec(x_378); -lean_dec(x_1); -x_541 = lean_box(0); -x_542 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_542, 0, x_541); -lean_ctor_set(x_542, 1, x_258); -return x_542; -} -} -} -else +lean_object* x_541; uint8_t x_542; +lean_dec(x_466); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_541 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; +x_542 = lean_string_dec_eq(x_465, x_541); +lean_dec(x_465); +if (x_542 == 0) { lean_object* x_543; lean_object* x_544; -lean_dec(x_514); -lean_dec(x_513); -lean_dec(x_512); -lean_dec(x_378); +lean_dec(x_464); lean_dec(x_1); x_543 = lean_box(0); x_544 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_544, 0, x_543); -lean_ctor_set(x_544, 1, x_258); +lean_ctor_set(x_544, 1, x_318); return x_544; } +else +{ +lean_object* x_545; lean_object* x_546; uint8_t x_547; +x_545 = lean_array_get_size(x_464); +x_546 = lean_unsigned_to_nat(4u); +x_547 = lean_nat_dec_eq(x_545, x_546); +lean_dec(x_545); +if (x_547 == 0) +{ +lean_object* x_548; lean_object* x_549; +lean_dec(x_464); +lean_dec(x_1); +x_548 = lean_box(0); +x_549 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set(x_549, 1, x_318); +return x_549; } else { -lean_object* x_545; lean_object* x_546; -lean_dec(x_513); -lean_dec(x_512); -lean_dec(x_378); +lean_object* x_550; lean_object* x_551; +x_550 = lean_unsigned_to_nat(0u); +x_551 = lean_array_fget(x_464, x_550); +switch (lean_obj_tag(x_551)) { +case 4: +{ +lean_object* x_552; +x_552 = lean_ctor_get(x_551, 0); +lean_inc(x_552); +if (lean_obj_tag(x_552) == 1) +{ +lean_object* x_553; +x_553 = lean_ctor_get(x_552, 0); +lean_inc(x_553); +if (lean_obj_tag(x_553) == 0) +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; uint8_t x_557; +x_554 = lean_ctor_get(x_551, 1); +lean_inc(x_554); +lean_dec(x_551); +x_555 = lean_ctor_get(x_552, 1); +lean_inc(x_555); +lean_dec(x_552); +x_556 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_557 = lean_string_dec_eq(x_555, x_556); +if (x_557 == 0) +{ +lean_object* x_558; uint8_t x_559; +x_558 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_559 = lean_string_dec_eq(x_555, x_558); +lean_dec(x_555); +if (x_559 == 0) +{ +lean_object* x_560; lean_object* x_561; +lean_dec(x_554); +lean_dec(x_464); lean_dec(x_1); -x_545 = lean_box(0); -x_546 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_546, 0, x_545); -lean_ctor_set(x_546, 1, x_258); -return x_546; -} +x_560 = lean_box(0); +x_561 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_561, 0, x_560); +lean_ctor_set(x_561, 1, x_318); +return x_561; } else { -lean_object* x_547; lean_object* x_548; -lean_dec(x_512); -lean_dec(x_378); +if (lean_obj_tag(x_554) == 0) +{ +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; +x_562 = lean_unsigned_to_nat(2u); +x_563 = lean_array_fget(x_464, x_562); +x_564 = lean_unsigned_to_nat(3u); +x_565 = lean_array_fget(x_464, x_564); +lean_dec(x_464); +x_566 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__43; +x_567 = l_Lean_mkApp3(x_566, x_563, x_565, x_1); +x_568 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_568, 0, x_567); +x_569 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_318); +return x_569; +} +else +{ +lean_object* x_570; lean_object* x_571; +lean_dec(x_554); +lean_dec(x_464); lean_dec(x_1); -x_547 = lean_box(0); -x_548 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_548, 0, x_547); -lean_ctor_set(x_548, 1, x_258); -return x_548; -} -} +x_570 = lean_box(0); +x_571 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_571, 0, x_570); +lean_ctor_set(x_571, 1, x_318); +return x_571; } } } else { -lean_object* x_549; lean_object* x_550; -lean_dec(x_377); -lean_dec(x_261); -lean_dec(x_260); -lean_dec(x_259); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_dec(x_555); +if (lean_obj_tag(x_554) == 0) +{ +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; +x_572 = lean_unsigned_to_nat(2u); +x_573 = lean_array_fget(x_464, x_572); +x_574 = lean_unsigned_to_nat(3u); +x_575 = lean_array_fget(x_464, x_574); +lean_dec(x_464); +x_576 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__45; +x_577 = l_Lean_mkApp3(x_576, x_573, x_575, x_1); +x_578 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_578, 0, x_577); +x_579 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_579, 0, x_578); +lean_ctor_set(x_579, 1, x_318); +return x_579; +} +else +{ +lean_object* x_580; lean_object* x_581; +lean_dec(x_554); +lean_dec(x_464); lean_dec(x_1); -x_549 = lean_box(0); -x_550 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_550, 0, x_549); -lean_ctor_set(x_550, 1, x_258); -return x_550; +x_580 = lean_box(0); +x_581 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_581, 0, x_580); +lean_ctor_set(x_581, 1, x_318); +return x_581; +} +} +} +else +{ +lean_object* x_582; lean_object* x_583; +lean_dec(x_553); +lean_dec(x_552); +lean_dec(x_551); +lean_dec(x_464); +lean_dec(x_1); +x_582 = lean_box(0); +x_583 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_583, 0, x_582); +lean_ctor_set(x_583, 1, x_318); +return x_583; +} +} +else +{ +lean_object* x_584; lean_object* x_585; +lean_dec(x_552); +lean_dec(x_551); +lean_dec(x_464); +lean_dec(x_1); +x_584 = lean_box(0); +x_585 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_585, 0, x_584); +lean_ctor_set(x_585, 1, x_318); +return x_585; +} +} +case 5: +{ +lean_object* x_586; +x_586 = lean_ctor_get(x_551, 0); +lean_inc(x_586); +if (lean_obj_tag(x_586) == 4) +{ +lean_object* x_587; +x_587 = lean_ctor_get(x_586, 0); +lean_inc(x_587); +if (lean_obj_tag(x_587) == 1) +{ +lean_object* x_588; +x_588 = lean_ctor_get(x_587, 0); +lean_inc(x_588); +if (lean_obj_tag(x_588) == 0) +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; uint8_t x_593; +x_589 = lean_ctor_get(x_551, 1); +lean_inc(x_589); +lean_dec(x_551); +x_590 = lean_ctor_get(x_586, 1); +lean_inc(x_590); +lean_dec(x_586); +x_591 = lean_ctor_get(x_587, 1); +lean_inc(x_591); +lean_dec(x_587); +x_592 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_593 = lean_string_dec_eq(x_591, x_592); +lean_dec(x_591); +if (x_593 == 0) +{ +lean_object* x_594; lean_object* x_595; +lean_dec(x_590); +lean_dec(x_589); +lean_dec(x_464); +lean_dec(x_1); +x_594 = lean_box(0); +x_595 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_595, 0, x_594); +lean_ctor_set(x_595, 1, x_318); +return x_595; +} +else +{ +if (lean_obj_tag(x_590) == 0) +{ +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; +x_596 = lean_unsigned_to_nat(2u); +x_597 = lean_array_fget(x_464, x_596); +x_598 = lean_unsigned_to_nat(3u); +x_599 = lean_array_fget(x_464, x_598); +lean_dec(x_464); +x_600 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__47; +x_601 = l_Lean_mkApp4(x_600, x_589, x_597, x_599, x_1); +x_602 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_602, 0, x_601); +x_603 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_603, 0, x_602); +lean_ctor_set(x_603, 1, x_318); +return x_603; +} +else +{ +lean_object* x_604; lean_object* x_605; +lean_dec(x_590); +lean_dec(x_589); +lean_dec(x_464); +lean_dec(x_1); +x_604 = lean_box(0); +x_605 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_318); +return x_605; +} +} +} +else +{ +lean_object* x_606; lean_object* x_607; +lean_dec(x_588); +lean_dec(x_587); +lean_dec(x_586); +lean_dec(x_551); +lean_dec(x_464); +lean_dec(x_1); +x_606 = lean_box(0); +x_607 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_607, 0, x_606); +lean_ctor_set(x_607, 1, x_318); +return x_607; +} +} +else +{ +lean_object* x_608; lean_object* x_609; +lean_dec(x_587); +lean_dec(x_586); +lean_dec(x_551); +lean_dec(x_464); +lean_dec(x_1); +x_608 = lean_box(0); +x_609 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_609, 0, x_608); +lean_ctor_set(x_609, 1, x_318); +return x_609; +} +} +else +{ +lean_object* x_610; lean_object* x_611; +lean_dec(x_586); +lean_dec(x_551); +lean_dec(x_464); +lean_dec(x_1); +x_610 = lean_box(0); +x_611 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_318); +return x_611; } } default: { -lean_object* x_551; lean_object* x_552; -lean_dec(x_261); -lean_dec(x_260); -lean_dec(x_259); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +lean_object* x_612; lean_object* x_613; +lean_dec(x_551); +lean_dec(x_464); lean_dec(x_1); -x_551 = lean_box(0); -x_552 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_552, 0, x_551); -lean_ctor_set(x_552, 1, x_258); -return x_552; +x_612 = lean_box(0); +x_613 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_613, 0, x_612); +lean_ctor_set(x_613, 1, x_318); +return x_613; +} +} +} } } } else { -lean_object* x_553; lean_object* x_554; -lean_dec(x_260); -lean_dec(x_259); +lean_object* x_614; uint8_t x_615; +lean_dec(x_466); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_614 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48; +x_615 = lean_string_dec_eq(x_465, x_614); +lean_dec(x_465); +if (x_615 == 0) +{ +lean_object* x_616; lean_object* x_617; +lean_dec(x_464); +lean_dec(x_1); +x_616 = lean_box(0); +x_617 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_617, 0, x_616); +lean_ctor_set(x_617, 1, x_318); +return x_617; +} +else +{ +lean_object* x_618; lean_object* x_619; uint8_t x_620; +x_618 = lean_array_get_size(x_464); +x_619 = lean_unsigned_to_nat(4u); +x_620 = lean_nat_dec_eq(x_618, x_619); +lean_dec(x_618); +if (x_620 == 0) +{ +lean_object* x_621; lean_object* x_622; +lean_dec(x_464); +lean_dec(x_1); +x_621 = lean_box(0); +x_622 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_622, 0, x_621); +lean_ctor_set(x_622, 1, x_318); +return x_622; +} +else +{ +lean_object* x_623; lean_object* x_624; +x_623 = lean_unsigned_to_nat(0u); +x_624 = lean_array_fget(x_464, x_623); +switch (lean_obj_tag(x_624)) { +case 4: +{ +lean_object* x_625; +x_625 = lean_ctor_get(x_624, 0); +lean_inc(x_625); +if (lean_obj_tag(x_625) == 1) +{ +lean_object* x_626; +x_626 = lean_ctor_get(x_625, 0); +lean_inc(x_626); +if (lean_obj_tag(x_626) == 0) +{ +lean_object* x_627; lean_object* x_628; lean_object* x_629; uint8_t x_630; +x_627 = lean_ctor_get(x_624, 1); +lean_inc(x_627); +lean_dec(x_624); +x_628 = lean_ctor_get(x_625, 1); +lean_inc(x_628); +lean_dec(x_625); +x_629 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_630 = lean_string_dec_eq(x_628, x_629); +if (x_630 == 0) +{ +lean_object* x_631; uint8_t x_632; +x_631 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_632 = lean_string_dec_eq(x_628, x_631); +lean_dec(x_628); +if (x_632 == 0) +{ +lean_object* x_633; lean_object* x_634; +lean_dec(x_627); +lean_dec(x_464); +lean_dec(x_1); +x_633 = lean_box(0); +x_634 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_634, 0, x_633); +lean_ctor_set(x_634, 1, x_318); +return x_634; +} +else +{ +if (lean_obj_tag(x_627) == 0) +{ +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; +x_635 = lean_unsigned_to_nat(2u); +x_636 = lean_array_fget(x_464, x_635); +x_637 = lean_unsigned_to_nat(3u); +x_638 = lean_array_fget(x_464, x_637); +lean_dec(x_464); +x_639 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51; +x_640 = l_Lean_mkApp3(x_639, x_636, x_638, x_1); +x_641 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_641, 0, x_640); +x_642 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_642, 0, x_641); +lean_ctor_set(x_642, 1, x_318); +return x_642; +} +else +{ +lean_object* x_643; lean_object* x_644; +lean_dec(x_627); +lean_dec(x_464); +lean_dec(x_1); +x_643 = lean_box(0); +x_644 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_644, 0, x_643); +lean_ctor_set(x_644, 1, x_318); +return x_644; +} +} +} +else +{ +lean_dec(x_628); +if (lean_obj_tag(x_627) == 0) +{ +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; +x_645 = lean_unsigned_to_nat(2u); +x_646 = lean_array_fget(x_464, x_645); +x_647 = lean_unsigned_to_nat(3u); +x_648 = lean_array_fget(x_464, x_647); +lean_dec(x_464); +x_649 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53; +x_650 = l_Lean_mkApp3(x_649, x_646, x_648, x_1); +x_651 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_651, 0, x_650); +x_652 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_652, 0, x_651); +lean_ctor_set(x_652, 1, x_318); +return x_652; +} +else +{ +lean_object* x_653; lean_object* x_654; +lean_dec(x_627); +lean_dec(x_464); +lean_dec(x_1); +x_653 = lean_box(0); +x_654 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_654, 0, x_653); +lean_ctor_set(x_654, 1, x_318); +return x_654; +} +} +} +else +{ +lean_object* x_655; lean_object* x_656; +lean_dec(x_626); +lean_dec(x_625); +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_655 = lean_box(0); +x_656 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_656, 0, x_655); +lean_ctor_set(x_656, 1, x_318); +return x_656; +} +} +else +{ +lean_object* x_657; lean_object* x_658; +lean_dec(x_625); +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_657 = lean_box(0); +x_658 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_658, 0, x_657); +lean_ctor_set(x_658, 1, x_318); +return x_658; +} +} +case 5: +{ +lean_object* x_659; +x_659 = lean_ctor_get(x_624, 0); +lean_inc(x_659); +if (lean_obj_tag(x_659) == 4) +{ +lean_object* x_660; +x_660 = lean_ctor_get(x_659, 0); +lean_inc(x_660); +if (lean_obj_tag(x_660) == 1) +{ +lean_object* x_661; +x_661 = lean_ctor_get(x_660, 0); +lean_inc(x_661); +if (lean_obj_tag(x_661) == 0) +{ +lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; uint8_t x_666; +x_662 = lean_ctor_get(x_624, 1); +lean_inc(x_662); +lean_dec(x_624); +x_663 = lean_ctor_get(x_659, 1); +lean_inc(x_663); +lean_dec(x_659); +x_664 = lean_ctor_get(x_660, 1); +lean_inc(x_664); +lean_dec(x_660); +x_665 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_666 = lean_string_dec_eq(x_664, x_665); +lean_dec(x_664); +if (x_666 == 0) +{ +lean_object* x_667; lean_object* x_668; +lean_dec(x_663); +lean_dec(x_662); +lean_dec(x_464); +lean_dec(x_1); +x_667 = lean_box(0); +x_668 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_668, 0, x_667); +lean_ctor_set(x_668, 1, x_318); +return x_668; +} +else +{ +if (lean_obj_tag(x_663) == 0) +{ +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; +x_669 = lean_unsigned_to_nat(2u); +x_670 = lean_array_fget(x_464, x_669); +x_671 = lean_unsigned_to_nat(3u); +x_672 = lean_array_fget(x_464, x_671); +lean_dec(x_464); +x_673 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55; +x_674 = l_Lean_mkApp4(x_673, x_662, x_670, x_672, x_1); +x_675 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_675, 0, x_674); +x_676 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_676, 0, x_675); +lean_ctor_set(x_676, 1, x_318); +return x_676; +} +else +{ +lean_object* x_677; lean_object* x_678; +lean_dec(x_663); +lean_dec(x_662); +lean_dec(x_464); +lean_dec(x_1); +x_677 = lean_box(0); +x_678 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_678, 0, x_677); +lean_ctor_set(x_678, 1, x_318); +return x_678; +} +} +} +else +{ +lean_object* x_679; lean_object* x_680; +lean_dec(x_661); +lean_dec(x_660); +lean_dec(x_659); +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_679 = lean_box(0); +x_680 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_680, 0, x_679); +lean_ctor_set(x_680, 1, x_318); +return x_680; +} +} +else +{ +lean_object* x_681; lean_object* x_682; +lean_dec(x_660); +lean_dec(x_659); +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_681 = lean_box(0); +x_682 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_682, 0, x_681); +lean_ctor_set(x_682, 1, x_318); +return x_682; +} +} +else +{ +lean_object* x_683; lean_object* x_684; +lean_dec(x_659); +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_683 = lean_box(0); +x_684 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_684, 0, x_683); +lean_ctor_set(x_684, 1, x_318); +return x_684; +} +} +default: +{ +lean_object* x_685; lean_object* x_686; +lean_dec(x_624); +lean_dec(x_464); +lean_dec(x_1); +x_685 = lean_box(0); +x_686 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_686, 0, x_685); +lean_ctor_set(x_686, 1, x_318); +return x_686; +} +} +} +} +} +} +else +{ +lean_object* x_687; lean_object* x_688; +lean_dec(x_463); +lean_dec(x_321); +lean_dec(x_320); +lean_dec(x_319); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_553 = lean_box(0); -x_554 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_554, 0, x_553); -lean_ctor_set(x_554, 1, x_258); -return x_554; +x_687 = lean_box(0); +x_688 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_688, 0, x_687); +lean_ctor_set(x_688, 1, x_318); +return x_688; +} +} +default: +{ +lean_object* x_689; lean_object* x_690; +lean_dec(x_321); +lean_dec(x_320); +lean_dec(x_319); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_689 = lean_box(0); +x_690 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_690, 0, x_689); +lean_ctor_set(x_690, 1, x_318); +return x_690; +} +} +} +else +{ +lean_object* x_691; lean_object* x_692; +lean_dec(x_320); +lean_dec(x_319); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_691 = lean_box(0); +x_692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_692, 0, x_691); +lean_ctor_set(x_692, 1, x_318); +return x_692; } } } case 7: { -lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; -x_555 = lean_ctor_get(x_8, 1); -lean_inc(x_555); +lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; +x_693 = lean_ctor_get(x_8, 1); +lean_inc(x_693); lean_dec(x_8); -x_556 = lean_ctor_get(x_9, 1); -lean_inc(x_556); -x_557 = lean_ctor_get(x_9, 2); -lean_inc(x_557); +x_694 = lean_ctor_get(x_9, 1); +lean_inc(x_694); +x_695 = lean_ctor_get(x_9, 2); +lean_inc(x_695); lean_dec(x_9); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_556); -x_558 = l_Lean_Meta_isProp(x_556, x_3, x_4, x_5, x_6, x_555); -if (lean_obj_tag(x_558) == 0) +lean_inc(x_694); +x_696 = l_Lean_Meta_isProp(x_694, x_3, x_4, x_5, x_6, x_693); +if (lean_obj_tag(x_696) == 0) { -lean_object* x_559; lean_object* x_560; lean_object* x_561; -x_559 = lean_ctor_get(x_558, 0); -lean_inc(x_559); -x_560 = lean_ctor_get(x_558, 1); -lean_inc(x_560); -lean_dec(x_558); -lean_inc(x_557); -x_561 = l_Lean_Meta_isProp(x_557, x_3, x_4, x_5, x_6, x_560); -if (lean_obj_tag(x_561) == 0) +lean_object* x_697; lean_object* x_698; lean_object* x_699; +x_697 = lean_ctor_get(x_696, 0); +lean_inc(x_697); +x_698 = lean_ctor_get(x_696, 1); +lean_inc(x_698); +lean_dec(x_696); +lean_inc(x_695); +x_699 = l_Lean_Meta_isProp(x_695, x_3, x_4, x_5, x_6, x_698); +if (lean_obj_tag(x_699) == 0) { -uint8_t x_562; -x_562 = lean_unbox(x_559); -lean_dec(x_559); -if (x_562 == 0) +uint8_t x_700; +x_700 = lean_unbox(x_697); +lean_dec(x_697); +if (x_700 == 0) { -uint8_t x_563; -lean_dec(x_557); -lean_dec(x_556); +uint8_t x_701; +lean_dec(x_695); +lean_dec(x_694); lean_dec(x_1); -x_563 = !lean_is_exclusive(x_561); -if (x_563 == 0) +x_701 = !lean_is_exclusive(x_699); +if (x_701 == 0) { -lean_object* x_564; lean_object* x_565; -x_564 = lean_ctor_get(x_561, 0); -lean_dec(x_564); -x_565 = lean_box(0); -lean_ctor_set(x_561, 0, x_565); -return x_561; +lean_object* x_702; lean_object* x_703; +x_702 = lean_ctor_get(x_699, 0); +lean_dec(x_702); +x_703 = lean_box(0); +lean_ctor_set(x_699, 0, x_703); +return x_699; } else { -lean_object* x_566; lean_object* x_567; lean_object* x_568; -x_566 = lean_ctor_get(x_561, 1); -lean_inc(x_566); -lean_dec(x_561); -x_567 = lean_box(0); -x_568 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_568, 0, x_567); -lean_ctor_set(x_568, 1, x_566); -return x_568; +lean_object* x_704; lean_object* x_705; lean_object* x_706; +x_704 = lean_ctor_get(x_699, 1); +lean_inc(x_704); +lean_dec(x_699); +x_705 = lean_box(0); +x_706 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_706, 0, x_705); +lean_ctor_set(x_706, 1, x_704); +return x_706; } } else { -lean_object* x_569; uint8_t x_570; -x_569 = lean_ctor_get(x_561, 0); -lean_inc(x_569); -x_570 = lean_unbox(x_569); -lean_dec(x_569); -if (x_570 == 0) +lean_object* x_707; uint8_t x_708; +x_707 = lean_ctor_get(x_699, 0); +lean_inc(x_707); +x_708 = lean_unbox(x_707); +lean_dec(x_707); +if (x_708 == 0) { -uint8_t x_571; -lean_dec(x_557); -lean_dec(x_556); +uint8_t x_709; +lean_dec(x_695); +lean_dec(x_694); lean_dec(x_1); -x_571 = !lean_is_exclusive(x_561); -if (x_571 == 0) +x_709 = !lean_is_exclusive(x_699); +if (x_709 == 0) { -lean_object* x_572; lean_object* x_573; -x_572 = lean_ctor_get(x_561, 0); -lean_dec(x_572); -x_573 = lean_box(0); -lean_ctor_set(x_561, 0, x_573); -return x_561; +lean_object* x_710; lean_object* x_711; +x_710 = lean_ctor_get(x_699, 0); +lean_dec(x_710); +x_711 = lean_box(0); +lean_ctor_set(x_699, 0, x_711); +return x_699; } else { -lean_object* x_574; lean_object* x_575; lean_object* x_576; -x_574 = lean_ctor_get(x_561, 1); -lean_inc(x_574); -lean_dec(x_561); -x_575 = lean_box(0); -x_576 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_576, 0, x_575); -lean_ctor_set(x_576, 1, x_574); -return x_576; +lean_object* x_712; lean_object* x_713; lean_object* x_714; +x_712 = lean_ctor_get(x_699, 1); +lean_inc(x_712); +lean_dec(x_699); +x_713 = lean_box(0); +x_714 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_714, 0, x_713); +lean_ctor_set(x_714, 1, x_712); +return x_714; } } else { -uint8_t x_577; -x_577 = !lean_is_exclusive(x_561); -if (x_577 == 0) +uint8_t x_715; +x_715 = !lean_is_exclusive(x_699); +if (x_715 == 0) { -lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; -x_578 = lean_ctor_get(x_561, 0); -lean_dec(x_578); -x_579 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_556); -x_580 = l_Lean_Expr_app___override(x_579, x_556); -x_581 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52; -x_582 = l_Lean_mkApp4(x_581, x_556, x_557, x_580, x_1); -x_583 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_583, 0, x_582); -lean_ctor_set(x_561, 0, x_583); -return x_561; +lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; +x_716 = lean_ctor_get(x_699, 0); +lean_dec(x_716); +x_717 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_694); +x_718 = l_Lean_Expr_app___override(x_717, x_694); +x_719 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58; +x_720 = l_Lean_mkApp4(x_719, x_694, x_695, x_718, x_1); +x_721 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_721, 0, x_720); +lean_ctor_set(x_699, 0, x_721); +return x_699; } else { -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; -x_584 = lean_ctor_get(x_561, 1); -lean_inc(x_584); -lean_dec(x_561); -x_585 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_556); -x_586 = l_Lean_Expr_app___override(x_585, x_556); -x_587 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52; -x_588 = l_Lean_mkApp4(x_587, x_556, x_557, x_586, x_1); -x_589 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_589, 0, x_588); -x_590 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_590, 0, x_589); -lean_ctor_set(x_590, 1, x_584); -return x_590; +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; +x_722 = lean_ctor_get(x_699, 1); +lean_inc(x_722); +lean_dec(x_699); +x_723 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_694); +x_724 = l_Lean_Expr_app___override(x_723, x_694); +x_725 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58; +x_726 = l_Lean_mkApp4(x_725, x_694, x_695, x_724, x_1); +x_727 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_727, 0, x_726); +x_728 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_728, 0, x_727); +lean_ctor_set(x_728, 1, x_722); +return x_728; } } } } else { -uint8_t x_591; -lean_dec(x_559); -lean_dec(x_557); -lean_dec(x_556); +uint8_t x_729; +lean_dec(x_697); +lean_dec(x_695); +lean_dec(x_694); lean_dec(x_1); -x_591 = !lean_is_exclusive(x_561); -if (x_591 == 0) +x_729 = !lean_is_exclusive(x_699); +if (x_729 == 0) { -return x_561; +return x_699; } else { -lean_object* x_592; lean_object* x_593; lean_object* x_594; -x_592 = lean_ctor_get(x_561, 0); -x_593 = lean_ctor_get(x_561, 1); -lean_inc(x_593); -lean_inc(x_592); -lean_dec(x_561); -x_594 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_594, 0, x_592); -lean_ctor_set(x_594, 1, x_593); -return x_594; +lean_object* x_730; lean_object* x_731; lean_object* x_732; +x_730 = lean_ctor_get(x_699, 0); +x_731 = lean_ctor_get(x_699, 1); +lean_inc(x_731); +lean_inc(x_730); +lean_dec(x_699); +x_732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_732, 0, x_730); +lean_ctor_set(x_732, 1, x_731); +return x_732; } } } else { -uint8_t x_595; -lean_dec(x_557); -lean_dec(x_556); +uint8_t x_733; +lean_dec(x_695); +lean_dec(x_694); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_595 = !lean_is_exclusive(x_558); -if (x_595 == 0) +x_733 = !lean_is_exclusive(x_696); +if (x_733 == 0) { -return x_558; +return x_696; } else { -lean_object* x_596; lean_object* x_597; lean_object* x_598; -x_596 = lean_ctor_get(x_558, 0); -x_597 = lean_ctor_get(x_558, 1); -lean_inc(x_597); -lean_inc(x_596); -lean_dec(x_558); -x_598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_598, 0, x_596); -lean_ctor_set(x_598, 1, x_597); -return x_598; +lean_object* x_734; lean_object* x_735; lean_object* x_736; +x_734 = lean_ctor_get(x_696, 0); +x_735 = lean_ctor_get(x_696, 1); +lean_inc(x_735); +lean_inc(x_734); +lean_dec(x_696); +x_736 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_736, 0, x_734); +lean_ctor_set(x_736, 1, x_735); +return x_736; } } } default: { -uint8_t x_599; +uint8_t x_737; lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_599 = !lean_is_exclusive(x_8); -if (x_599 == 0) +x_737 = !lean_is_exclusive(x_8); +if (x_737 == 0) { -lean_object* x_600; lean_object* x_601; -x_600 = lean_ctor_get(x_8, 0); -lean_dec(x_600); -x_601 = lean_box(0); -lean_ctor_set(x_8, 0, x_601); +lean_object* x_738; lean_object* x_739; +x_738 = lean_ctor_get(x_8, 0); +lean_dec(x_738); +x_739 = lean_box(0); +lean_ctor_set(x_8, 0, x_739); return x_8; } else { -lean_object* x_602; lean_object* x_603; lean_object* x_604; -x_602 = lean_ctor_get(x_8, 1); -lean_inc(x_602); +lean_object* x_740; lean_object* x_741; lean_object* x_742; +x_740 = lean_ctor_get(x_8, 1); +lean_inc(x_740); lean_dec(x_8); -x_603 = lean_box(0); -x_604 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_604, 0, x_603); -lean_ctor_set(x_604, 1, x_602); -return x_604; +x_741 = lean_box(0); +x_742 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_742, 0, x_741); +lean_ctor_set(x_742, 1, x_740); +return x_742; } } } } else { -uint8_t x_605; +uint8_t x_743; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_605 = !lean_is_exclusive(x_8); -if (x_605 == 0) +x_743 = !lean_is_exclusive(x_8); +if (x_743 == 0) { return x_8; } else { -lean_object* x_606; lean_object* x_607; lean_object* x_608; -x_606 = lean_ctor_get(x_8, 0); -x_607 = lean_ctor_get(x_8, 1); -lean_inc(x_607); -lean_inc(x_606); +lean_object* x_744; lean_object* x_745; lean_object* x_746; +x_744 = lean_ctor_get(x_8, 0); +x_745 = lean_ctor_get(x_8, 1); +lean_inc(x_745); +lean_inc(x_744); lean_dec(x_8); -x_608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_608, 0, x_606); -lean_ctor_set(x_608, 1, x_607); -return x_608; +x_746 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_746, 0, x_744); +lean_ctor_set(x_746, 1, x_745); +return x_746; } } } @@ -18253,7 +20102,7 @@ _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__17; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -18281,7 +20130,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__20; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -18301,19 +20150,47 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("GT", 2); +x_1 = lean_mk_string_from_bytes("val_congr", 9); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__24() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__23; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__24; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__26() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("GT", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("GE", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__28() { _start: { lean_object* x_1; @@ -18321,39 +20198,11 @@ x_1 = lean_mk_string_from_bytes("emod_eq_zero_of_dvd", 19); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__26() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__26; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mod_eq_zero_of_dvd", 18); -return x_1; -} -} static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__28; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -18373,35 +20222,35 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("of_lex", 6); +x_1 = lean_mk_string_from_bytes("mod_eq_zero_of_dvd", 18); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__31; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__31; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ge", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__34() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le_of_ge", 8); +x_1 = lean_mk_string_from_bytes("of_lex", 6); return x_1; } } @@ -18420,83 +20269,79 @@ return x_5; static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__35; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ge", 2); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__34; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("le_of_ge", 8); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__38() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("gt", 2); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__38; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("lt_of_gt", 8); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__37; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__42() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("val_le_of_ge", 12); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__43() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__40; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__42; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44() { @@ -18513,48 +20358,50 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_lt_of_lt", 14); +x_1 = lean_mk_string_from_bytes("gt", 2); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__45; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("lt_of_gt", 8); +return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__47() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("add_one_le_of_lt", 16); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__47; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__49() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__46; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50() { @@ -18571,20 +20418,18 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_le_of_le", 14); +x_1 = lean_mk_string_from_bytes("val_add_one_le_of_gt", 20); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__52() { _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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; -x_3 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__51; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__51; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53() { @@ -18601,18 +20446,20 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("sub_nonneg_of_le", 16); +x_1 = lean_mk_string_from_bytes("ofNat_lt_of_lt", 14); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__55() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__54; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__54; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56() { @@ -18629,7 +20476,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("not_or_of_imp", 13); +x_1 = lean_mk_string_from_bytes("add_one_le_of_lt", 16); return x_1; } } @@ -18637,7 +20484,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__4; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__57; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -18653,6 +20500,148 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("val_add_one_le_of_lt", 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_le_of_le", 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; +x_3 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_4 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("sub_nonneg_of_le", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("val_le_of_le", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("not_or_of_imp", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__4; +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1(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_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { @@ -19460,12 +21449,12 @@ lean_dec(x_187); x_191 = lean_ctor_get(x_188, 1); lean_inc(x_191); lean_dec(x_188); -x_192 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_192 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_193 = lean_string_dec_eq(x_191, x_192); if (x_193 == 0) { lean_object* x_194; uint8_t x_195; -x_194 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_194 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_195 = lean_string_dec_eq(x_191, x_194); lean_dec(x_191); if (x_195 == 0) @@ -19667,7 +21656,8 @@ else lean_object* x_221; lean_object* x_222; x_221 = lean_unsigned_to_nat(0u); x_222 = lean_array_fget(x_18, x_221); -if (lean_obj_tag(x_222) == 4) +switch (lean_obj_tag(x_222)) { +case 4: { lean_object* x_223; x_223 = lean_ctor_get(x_222, 0); @@ -19686,12 +21676,12 @@ lean_dec(x_222); x_226 = lean_ctor_get(x_223, 1); lean_inc(x_226); lean_dec(x_223); -x_227 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; +x_227 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; x_228 = lean_string_dec_eq(x_226, x_227); if (x_228 == 0) { lean_object* x_229; uint8_t x_230; -x_229 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_229 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; x_230 = lean_string_dec_eq(x_226, x_229); lean_dec(x_226); if (x_230 == 0) @@ -19780,7 +21770,7 @@ lean_object* x_248; lean_object* x_249; uint8_t x_250; x_248 = lean_ctor_get(x_244, 0); lean_inc(x_248); lean_dec(x_244); -x_249 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; +x_249 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; x_250 = lean_int_dec_lt(x_248, x_249); if (x_250 == 0) { @@ -19936,9 +21926,102 @@ lean_ctor_set(x_271, 1, x_13); return x_271; } } -else +case 5: { lean_object* x_272; +x_272 = lean_ctor_get(x_222, 0); +lean_inc(x_272); +if (lean_obj_tag(x_272) == 4) +{ +lean_object* x_273; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +if (lean_obj_tag(x_273) == 1) +{ +lean_object* x_274; +x_274 = lean_ctor_get(x_273, 0); +lean_inc(x_274); +if (lean_obj_tag(x_274) == 0) +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_279; +x_275 = lean_ctor_get(x_222, 1); +lean_inc(x_275); +lean_dec(x_222); +x_276 = lean_ctor_get(x_272, 1); +lean_inc(x_276); +lean_dec(x_272); +x_277 = lean_ctor_get(x_273, 1); +lean_inc(x_277); +lean_dec(x_273); +x_278 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_279 = lean_string_dec_eq(x_277, x_278); +lean_dec(x_277); +if (x_279 == 0) +{ +lean_object* x_280; +lean_dec(x_276); +lean_dec(x_275); +lean_dec(x_18); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_221); +lean_ctor_set(x_14, 0, x_2); +x_280 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_280, 0, x_14); +lean_ctor_set(x_280, 1, x_13); +return x_280; +} +else +{ +if (lean_obj_tag(x_276) == 0) +{ +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_free_object(x_14); +x_281 = lean_unsigned_to_nat(1u); +x_282 = lean_array_fget(x_18, x_281); +x_283 = lean_unsigned_to_nat(2u); +x_284 = lean_array_fget(x_18, x_283); +lean_dec(x_18); +x_285 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25; +x_286 = l_Lean_mkApp4(x_285, x_275, x_282, x_284, x_3); +x_287 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_286, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_287; +} +else +{ +lean_object* x_288; +lean_dec(x_276); +lean_dec(x_275); +lean_dec(x_18); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_221); +lean_ctor_set(x_14, 0, x_2); +x_288 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_288, 0, x_14); +lean_ctor_set(x_288, 1, x_13); +return x_288; +} +} +} +else +{ +lean_object* x_289; +lean_dec(x_274); +lean_dec(x_273); +lean_dec(x_272); lean_dec(x_222); lean_dec(x_18); lean_dec(x_12); @@ -19951,201 +22034,182 @@ lean_dec(x_6); lean_dec(x_3); lean_ctor_set(x_14, 1, x_221); lean_ctor_set(x_14, 0, x_2); -x_272 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_272, 0, x_14); -lean_ctor_set(x_272, 1, x_13); -return x_272; +x_289 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_289, 0, x_14); +lean_ctor_set(x_289, 1, x_13); +return x_289; +} +} +else +{ +lean_object* x_290; +lean_dec(x_273); +lean_dec(x_272); +lean_dec(x_222); +lean_dec(x_18); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_221); +lean_ctor_set(x_14, 0, x_2); +x_290 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_290, 0, x_14); +lean_ctor_set(x_290, 1, x_13); +return x_290; +} +} +else +{ +lean_object* x_291; +lean_dec(x_272); +lean_dec(x_222); +lean_dec(x_18); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_221); +lean_ctor_set(x_14, 0, x_2); +x_291 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_291, 0, x_14); +lean_ctor_set(x_291, 1, x_13); +return x_291; +} +} +default: +{ +lean_object* x_292; +lean_dec(x_222); +lean_dec(x_18); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_221); +lean_ctor_set(x_14, 0, x_2); +x_292 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_292, 0, x_14); +lean_ctor_set(x_292, 1, x_13); +return x_292; +} } } } } else { -lean_object* x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; -x_273 = lean_ctor_get(x_14, 1); -lean_inc(x_273); +lean_object* x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; +x_293 = lean_ctor_get(x_14, 1); +lean_inc(x_293); lean_dec(x_14); -x_274 = lean_ctor_get(x_15, 1); -lean_inc(x_274); +x_294 = lean_ctor_get(x_15, 1); +lean_inc(x_294); lean_dec(x_15); -x_275 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; -x_276 = lean_string_dec_eq(x_274, x_275); -if (x_276 == 0) +x_295 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; +x_296 = lean_string_dec_eq(x_294, x_295); +if (x_296 == 0) { -lean_object* x_277; uint8_t x_278; -x_277 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1; -x_278 = lean_string_dec_eq(x_274, x_277); -if (x_278 == 0) +lean_object* x_297; uint8_t x_298; +x_297 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1; +x_298 = lean_string_dec_eq(x_294, x_297); +if (x_298 == 0) { -lean_object* x_279; uint8_t x_280; -x_279 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__2; -x_280 = lean_string_dec_eq(x_274, x_279); -if (x_280 == 0) +lean_object* x_299; uint8_t x_300; +x_299 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__2; +x_300 = lean_string_dec_eq(x_294, x_299); +if (x_300 == 0) { -lean_object* x_281; uint8_t x_282; -x_281 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__1; -x_282 = lean_string_dec_eq(x_274, x_281); -if (x_282 == 0) +lean_object* x_301; uint8_t x_302; +x_301 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__1; +x_302 = lean_string_dec_eq(x_294, x_301); +if (x_302 == 0) { -lean_object* x_283; uint8_t x_284; -x_283 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2; -x_284 = lean_string_dec_eq(x_274, x_283); -if (x_284 == 0) +lean_object* x_303; uint8_t x_304; +x_303 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2; +x_304 = lean_string_dec_eq(x_294, x_303); +if (x_304 == 0) { -lean_object* x_285; uint8_t x_286; -x_285 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__3; -x_286 = lean_string_dec_eq(x_274, x_285); -if (x_286 == 0) +lean_object* x_305; uint8_t x_306; +x_305 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__3; +x_306 = lean_string_dec_eq(x_294, x_305); +if (x_306 == 0) { -lean_object* x_287; uint8_t x_288; -x_287 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; -x_288 = lean_string_dec_eq(x_274, x_287); -if (x_288 == 0) +lean_object* x_307; uint8_t x_308; +x_307 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__3; +x_308 = lean_string_dec_eq(x_294, x_307); +if (x_308 == 0) { -lean_object* x_289; uint8_t x_290; +lean_object* x_309; uint8_t x_310; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_7); lean_dec(x_6); -x_289 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__1; -x_290 = lean_string_dec_eq(x_274, x_289); -lean_dec(x_274); -if (x_290 == 0) -{ -lean_object* x_291; lean_object* x_292; lean_object* x_293; -lean_dec(x_273); -lean_dec(x_8); -lean_dec(x_4); -lean_dec(x_3); -x_291 = lean_unsigned_to_nat(0u); -x_292 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_292, 0, x_2); -lean_ctor_set(x_292, 1, x_291); -x_293 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_293, 0, x_292); -lean_ctor_set(x_293, 1, x_13); -return x_293; -} -else -{ -lean_object* x_294; lean_object* x_295; uint8_t x_296; -x_294 = lean_array_get_size(x_273); -lean_dec(x_273); -x_295 = lean_unsigned_to_nat(2u); -x_296 = lean_nat_dec_eq(x_294, x_295); +x_309 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__4___closed__1; +x_310 = lean_string_dec_eq(x_294, x_309); lean_dec(x_294); -if (x_296 == 0) +if (x_310 == 0) { -lean_object* x_297; lean_object* x_298; lean_object* x_299; +lean_object* x_311; lean_object* x_312; lean_object* x_313; +lean_dec(x_293); lean_dec(x_8); lean_dec(x_4); lean_dec(x_3); -x_297 = lean_unsigned_to_nat(0u); -x_298 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_298, 0, x_2); -lean_ctor_set(x_298, 1, x_297); -x_299 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_299, 0, x_298); -lean_ctor_set(x_299, 1, x_13); -return x_299; -} -else -{ -uint8_t x_300; -x_300 = lean_ctor_get_uint8(x_8, 0); -lean_dec(x_8); -if (x_300 == 0) -{ -lean_object* x_301; lean_object* x_302; lean_object* x_303; -lean_dec(x_4); -lean_dec(x_3); -x_301 = lean_unsigned_to_nat(0u); -x_302 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_302, 0, x_2); -lean_ctor_set(x_302, 1, x_301); -x_303 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_303, 0, x_302); -lean_ctor_set(x_303, 1, x_13); -return x_303; -} -else -{ -lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_304 = lean_ctor_get(x_2, 1); -lean_inc(x_304); -x_305 = lean_ctor_get(x_2, 2); -lean_inc(x_305); -x_306 = l_List_elem___at_Lean_CollectLevelParams_visitExpr___spec__2(x_3, x_305); -if (x_306 == 0) -{ -lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; -x_307 = lean_ctor_get(x_2, 3); -lean_inc(x_307); -lean_dec(x_2); -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_3); -lean_ctor_set(x_308, 1, x_305); -x_309 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_309, 0, x_4); -lean_ctor_set(x_309, 1, x_304); -lean_ctor_set(x_309, 2, x_308); -lean_ctor_set(x_309, 3, x_307); -x_310 = lean_unsigned_to_nat(1u); -x_311 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_311, 0, x_309); -lean_ctor_set(x_311, 1, x_310); +x_311 = lean_unsigned_to_nat(0u); x_312 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_312, 0, x_311); -lean_ctor_set(x_312, 1, x_13); -return x_312; +lean_ctor_set(x_312, 0, x_2); +lean_ctor_set(x_312, 1, x_311); +x_313 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_313, 0, x_312); +lean_ctor_set(x_313, 1, x_13); +return x_313; } else { -lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; -lean_dec(x_3); -x_313 = lean_ctor_get(x_2, 3); -lean_inc(x_313); -lean_dec(x_2); -x_314 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_314, 0, x_4); -lean_ctor_set(x_314, 1, x_304); -lean_ctor_set(x_314, 2, x_305); -lean_ctor_set(x_314, 3, x_313); -x_315 = lean_unsigned_to_nat(1u); -x_316 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_316, 0, x_314); -lean_ctor_set(x_316, 1, x_315); -x_317 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_317, 0, x_316); -lean_ctor_set(x_317, 1, x_13); -return x_317; -} -} -} -} -} -else +lean_object* x_314; lean_object* x_315; uint8_t x_316; +x_314 = lean_array_get_size(x_293); +lean_dec(x_293); +x_315 = lean_unsigned_to_nat(2u); +x_316 = lean_nat_dec_eq(x_314, x_315); +lean_dec(x_314); +if (x_316 == 0) { -lean_object* x_318; lean_object* x_319; uint8_t x_320; -lean_dec(x_274); +lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_8); lean_dec(x_4); -x_318 = lean_array_get_size(x_273); -x_319 = lean_unsigned_to_nat(2u); -x_320 = lean_nat_dec_eq(x_318, x_319); -lean_dec(x_318); +lean_dec(x_3); +x_317 = lean_unsigned_to_nat(0u); +x_318 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_318, 0, x_2); +lean_ctor_set(x_318, 1, x_317); +x_319 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_319, 0, x_318); +lean_ctor_set(x_319, 1, x_13); +return x_319; +} +else +{ +uint8_t x_320; +x_320 = lean_ctor_get_uint8(x_8, 0); +lean_dec(x_8); if (x_320 == 0) { lean_object* x_321; lean_object* x_322; lean_object* x_323; -lean_dec(x_273); -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_6); +lean_dec(x_4); lean_dec(x_3); x_321 = lean_unsigned_to_nat(0u); x_322 = lean_alloc_ctor(0, 2, 0); @@ -20158,135 +22222,73 @@ return x_323; } else { -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; -x_324 = lean_unsigned_to_nat(0u); -x_325 = lean_array_fget(x_273, x_324); -x_326 = lean_unsigned_to_nat(1u); -x_327 = lean_array_fget(x_273, x_326); -lean_dec(x_273); -x_328 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_object* x_324; lean_object* x_325; uint8_t x_326; +x_324 = lean_ctor_get(x_2, 1); +lean_inc(x_324); +x_325 = lean_ctor_get(x_2, 2); +lean_inc(x_325); +x_326 = l_List_elem___at_Lean_CollectLevelParams_visitExpr___spec__2(x_3, x_325); +if (x_326 == 0) +{ +lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; +x_327 = lean_ctor_get(x_2, 3); lean_inc(x_327); -x_329 = l_Lean_Expr_app___override(x_328, x_327); -x_330 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__6; -x_331 = l_Lean_mkApp4(x_330, x_325, x_327, x_329, x_3); -x_332 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_331, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_2); +x_328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_328, 0, x_3); +lean_ctor_set(x_328, 1, x_325); +x_329 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_329, 0, x_4); +lean_ctor_set(x_329, 1, x_324); +lean_ctor_set(x_329, 2, x_328); +lean_ctor_set(x_329, 3, x_327); +x_330 = lean_unsigned_to_nat(1u); +x_331 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_331, 0, x_329); +lean_ctor_set(x_331, 1, x_330); +x_332 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_332, 0, x_331); +lean_ctor_set(x_332, 1, x_13); return x_332; } -} -} else { -lean_object* x_333; lean_object* x_334; uint8_t x_335; -lean_dec(x_274); -lean_dec(x_4); -x_333 = lean_array_get_size(x_273); -x_334 = lean_unsigned_to_nat(2u); -x_335 = lean_nat_dec_eq(x_333, x_334); -lean_dec(x_333); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; -lean_dec(x_273); -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_6); +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_dec(x_3); -x_336 = lean_unsigned_to_nat(0u); +x_333 = lean_ctor_get(x_2, 3); +lean_inc(x_333); +lean_dec(x_2); +x_334 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_334, 0, x_4); +lean_ctor_set(x_334, 1, x_324); +lean_ctor_set(x_334, 2, x_325); +lean_ctor_set(x_334, 3, x_333); +x_335 = lean_unsigned_to_nat(1u); +x_336 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_336, 0, x_334); +lean_ctor_set(x_336, 1, x_335); x_337 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_337, 0, x_2); -lean_ctor_set(x_337, 1, x_336); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_337); -lean_ctor_set(x_338, 1, x_13); -return x_338; +lean_ctor_set(x_337, 0, x_336); +lean_ctor_set(x_337, 1, x_13); +return x_337; } -else -{ -lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; -x_339 = lean_unsigned_to_nat(0u); -x_340 = lean_array_fget(x_273, x_339); -x_341 = lean_unsigned_to_nat(1u); -x_342 = lean_array_fget(x_273, x_341); -lean_dec(x_273); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_340); -x_343 = l_Lean_Meta_getLevel(x_340, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_343) == 0) -{ -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; -x_344 = lean_ctor_get(x_343, 0); -lean_inc(x_344); -x_345 = lean_ctor_get(x_343, 1); -lean_inc(x_345); -lean_dec(x_343); -x_346 = lean_box(0); -x_347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_347, 0, x_344); -lean_ctor_set(x_347, 1, x_346); -x_348 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__8; -x_349 = l_Lean_Expr_const___override(x_348, x_347); -x_350 = l_Lean_mkApp3(x_349, x_340, x_342, x_3); -x_351 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_350, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_345); -return x_351; -} -else -{ -lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; -lean_dec(x_342); -lean_dec(x_340); -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_6); -lean_dec(x_3); -lean_dec(x_2); -x_352 = lean_ctor_get(x_343, 0); -lean_inc(x_352); -x_353 = lean_ctor_get(x_343, 1); -lean_inc(x_353); -if (lean_is_exclusive(x_343)) { - lean_ctor_release(x_343, 0); - lean_ctor_release(x_343, 1); - x_354 = x_343; -} else { - lean_dec_ref(x_343); - x_354 = lean_box(0); -} -if (lean_is_scalar(x_354)) { - x_355 = lean_alloc_ctor(1, 2, 0); -} else { - x_355 = x_354; -} -lean_ctor_set(x_355, 0, x_352); -lean_ctor_set(x_355, 1, x_353); -return x_355; } } } } else { -lean_object* x_356; lean_object* x_357; uint8_t x_358; -lean_dec(x_274); +lean_object* x_338; lean_object* x_339; uint8_t x_340; +lean_dec(x_294); lean_dec(x_4); -x_356 = lean_array_get_size(x_273); -x_357 = lean_unsigned_to_nat(2u); -x_358 = lean_nat_dec_eq(x_356, x_357); -lean_dec(x_356); -if (x_358 == 0) +x_338 = lean_array_get_size(x_293); +x_339 = lean_unsigned_to_nat(2u); +x_340 = lean_nat_dec_eq(x_338, x_339); +lean_dec(x_338); +if (x_340 == 0) { -lean_object* x_359; lean_object* x_360; lean_object* x_361; -lean_dec(x_273); +lean_object* x_341; lean_object* x_342; lean_object* x_343; +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20295,52 +22297,100 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +x_341 = lean_unsigned_to_nat(0u); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_2); +lean_ctor_set(x_342, 1, x_341); +x_343 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_343, 0, x_342); +lean_ctor_set(x_343, 1, x_13); +return x_343; +} +else +{ +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; +x_344 = lean_unsigned_to_nat(0u); +x_345 = lean_array_fget(x_293, x_344); +x_346 = lean_unsigned_to_nat(1u); +x_347 = lean_array_fget(x_293, x_346); +lean_dec(x_293); +x_348 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_347); +x_349 = l_Lean_Expr_app___override(x_348, x_347); +x_350 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__6; +x_351 = l_Lean_mkApp4(x_350, x_345, x_347, x_349, x_3); +x_352 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_351, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_352; +} +} +} +else +{ +lean_object* x_353; lean_object* x_354; uint8_t x_355; +lean_dec(x_294); +lean_dec(x_4); +x_353 = lean_array_get_size(x_293); +x_354 = lean_unsigned_to_nat(2u); +x_355 = lean_nat_dec_eq(x_353, x_354); +lean_dec(x_353); +if (x_355 == 0) +{ +lean_object* x_356; lean_object* x_357; lean_object* x_358; +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_356 = lean_unsigned_to_nat(0u); +x_357 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_357, 0, x_2); +lean_ctor_set(x_357, 1, x_356); +x_358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_358, 0, x_357); +lean_ctor_set(x_358, 1, x_13); +return x_358; +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; x_359 = lean_unsigned_to_nat(0u); -x_360 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_360, 0, x_2); -lean_ctor_set(x_360, 1, x_359); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_13); -return x_361; -} -else -{ -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; -x_362 = lean_unsigned_to_nat(0u); -x_363 = lean_array_fget(x_273, x_362); -x_364 = lean_unsigned_to_nat(1u); -x_365 = lean_array_fget(x_273, x_364); -lean_dec(x_273); +x_360 = lean_array_fget(x_293, x_359); +x_361 = lean_unsigned_to_nat(1u); +x_362 = lean_array_fget(x_293, x_361); +lean_dec(x_293); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -lean_inc(x_363); -x_366 = l_Lean_Meta_getLevel(x_363, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_366) == 0) +lean_inc(x_360); +x_363 = l_Lean_Meta_getLevel(x_360, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_363) == 0) { -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; -x_367 = lean_ctor_get(x_366, 0); -lean_inc(x_367); -x_368 = lean_ctor_get(x_366, 1); -lean_inc(x_368); -lean_dec(x_366); -x_369 = lean_box(0); -x_370 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_370, 0, x_367); -lean_ctor_set(x_370, 1, x_369); -x_371 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__10; -x_372 = l_Lean_Expr_const___override(x_371, x_370); -x_373 = l_Lean_mkApp3(x_372, x_363, x_365, x_3); -x_374 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_373, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_368); -return x_374; +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; +x_364 = lean_ctor_get(x_363, 0); +lean_inc(x_364); +x_365 = lean_ctor_get(x_363, 1); +lean_inc(x_365); +lean_dec(x_363); +x_366 = lean_box(0); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_364); +lean_ctor_set(x_367, 1, x_366); +x_368 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__8; +x_369 = l_Lean_Expr_const___override(x_368, x_367); +x_370 = l_Lean_mkApp3(x_369, x_360, x_362, x_3); +x_371 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_370, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_365); +return x_371; } else { -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; -lean_dec(x_365); -lean_dec(x_363); +lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; +lean_dec(x_362); +lean_dec(x_360); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20350,43 +22400,43 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_375 = lean_ctor_get(x_366, 0); -lean_inc(x_375); -x_376 = lean_ctor_get(x_366, 1); -lean_inc(x_376); -if (lean_is_exclusive(x_366)) { - lean_ctor_release(x_366, 0); - lean_ctor_release(x_366, 1); - x_377 = x_366; +x_372 = lean_ctor_get(x_363, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_363, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_363)) { + lean_ctor_release(x_363, 0); + lean_ctor_release(x_363, 1); + x_374 = x_363; } else { - lean_dec_ref(x_366); - x_377 = lean_box(0); + lean_dec_ref(x_363); + x_374 = lean_box(0); } -if (lean_is_scalar(x_377)) { - x_378 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_374)) { + x_375 = lean_alloc_ctor(1, 2, 0); } else { - x_378 = x_377; + x_375 = x_374; } -lean_ctor_set(x_378, 0, x_375); -lean_ctor_set(x_378, 1, x_376); -return x_378; +lean_ctor_set(x_375, 0, x_372); +lean_ctor_set(x_375, 1, x_373); +return x_375; } } } } else { -lean_object* x_379; lean_object* x_380; uint8_t x_381; -lean_dec(x_274); +lean_object* x_376; lean_object* x_377; uint8_t x_378; +lean_dec(x_294); lean_dec(x_4); -x_379 = lean_array_get_size(x_273); -x_380 = lean_unsigned_to_nat(2u); -x_381 = lean_nat_dec_eq(x_379, x_380); -lean_dec(x_379); -if (x_381 == 0) +x_376 = lean_array_get_size(x_293); +x_377 = lean_unsigned_to_nat(2u); +x_378 = lean_nat_dec_eq(x_376, x_377); +lean_dec(x_376); +if (x_378 == 0) { -lean_object* x_382; lean_object* x_383; lean_object* x_384; -lean_dec(x_273); +lean_object* x_379; lean_object* x_380; lean_object* x_381; +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20395,28 +22445,128 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_382 = lean_unsigned_to_nat(0u); -x_383 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_383, 0, x_2); -lean_ctor_set(x_383, 1, x_382); -x_384 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_384, 0, x_383); -lean_ctor_set(x_384, 1, x_13); -return x_384; +x_379 = lean_unsigned_to_nat(0u); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_2); +lean_ctor_set(x_380, 1, x_379); +x_381 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_381, 0, x_380); +lean_ctor_set(x_381, 1, x_13); +return x_381; } else { -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; -x_385 = lean_unsigned_to_nat(0u); -x_386 = lean_array_fget(x_273, x_385); -x_387 = lean_unsigned_to_nat(1u); -x_388 = lean_array_fget(x_273, x_387); -lean_dec(x_273); -x_389 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__13; -lean_inc(x_3); +lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; +x_382 = lean_unsigned_to_nat(0u); +x_383 = lean_array_fget(x_293, x_382); +x_384 = lean_unsigned_to_nat(1u); +x_385 = lean_array_fget(x_293, x_384); +lean_dec(x_293); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_383); +x_386 = l_Lean_Meta_getLevel(x_383, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_386) == 0) +{ +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; +x_387 = lean_ctor_get(x_386, 0); +lean_inc(x_387); +x_388 = lean_ctor_get(x_386, 1); lean_inc(x_388); -lean_inc(x_386); -x_390 = l_Lean_mkApp3(x_389, x_386, x_388, x_3); +lean_dec(x_386); +x_389 = lean_box(0); +x_390 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_390, 0, x_387); +lean_ctor_set(x_390, 1, x_389); +x_391 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__10; +x_392 = l_Lean_Expr_const___override(x_391, x_390); +x_393 = l_Lean_mkApp3(x_392, x_383, x_385, x_3); +x_394 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_393, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_388); +return x_394; +} +else +{ +lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +lean_dec(x_385); +lean_dec(x_383); +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_6); +lean_dec(x_3); +lean_dec(x_2); +x_395 = lean_ctor_get(x_386, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_386, 1); +lean_inc(x_396); +if (lean_is_exclusive(x_386)) { + lean_ctor_release(x_386, 0); + lean_ctor_release(x_386, 1); + x_397 = x_386; +} else { + lean_dec_ref(x_386); + x_397 = lean_box(0); +} +if (lean_is_scalar(x_397)) { + x_398 = lean_alloc_ctor(1, 2, 0); +} else { + x_398 = x_397; +} +lean_ctor_set(x_398, 0, x_395); +lean_ctor_set(x_398, 1, x_396); +return x_398; +} +} +} +} +else +{ +lean_object* x_399; lean_object* x_400; uint8_t x_401; +lean_dec(x_294); +lean_dec(x_4); +x_399 = lean_array_get_size(x_293); +x_400 = lean_unsigned_to_nat(2u); +x_401 = lean_nat_dec_eq(x_399, x_400); +lean_dec(x_399); +if (x_401 == 0) +{ +lean_object* x_402; lean_object* x_403; lean_object* x_404; +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_402 = lean_unsigned_to_nat(0u); +x_403 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_403, 0, x_2); +lean_ctor_set(x_403, 1, x_402); +x_404 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_13); +return x_404; +} +else +{ +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; +x_405 = lean_unsigned_to_nat(0u); +x_406 = lean_array_fget(x_293, x_405); +x_407 = lean_unsigned_to_nat(1u); +x_408 = lean_array_fget(x_293, x_407); +lean_dec(x_293); +x_409 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__13; +lean_inc(x_3); +lean_inc(x_408); +lean_inc(x_406); +x_410 = l_Lean_mkApp3(x_409, x_406, x_408, x_3); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -20424,145 +22574,100 @@ lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_391 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_390, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_391) == 0) +x_411 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_410, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_411) == 0) { -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_392 = lean_ctor_get(x_391, 0); -lean_inc(x_392); -x_393 = lean_ctor_get(x_391, 1); -lean_inc(x_393); -lean_dec(x_391); -x_394 = lean_ctor_get(x_392, 0); -lean_inc(x_394); -x_395 = lean_ctor_get(x_392, 1); -lean_inc(x_395); -lean_dec(x_392); -x_396 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__16; -x_397 = l_Lean_mkApp3(x_396, x_386, x_388, x_3); -x_398 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_394, x_397, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_393); -if (lean_obj_tag(x_398) == 0) -{ -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; -x_399 = lean_ctor_get(x_398, 0); -lean_inc(x_399); -x_400 = lean_ctor_get(x_398, 1); -lean_inc(x_400); -if (lean_is_exclusive(x_398)) { - lean_ctor_release(x_398, 0); - lean_ctor_release(x_398, 1); - x_401 = x_398; -} else { - lean_dec_ref(x_398); - x_401 = lean_box(0); -} -x_402 = lean_ctor_get(x_399, 0); -lean_inc(x_402); -x_403 = lean_ctor_get(x_399, 1); -lean_inc(x_403); -if (lean_is_exclusive(x_399)) { - lean_ctor_release(x_399, 0); - lean_ctor_release(x_399, 1); - x_404 = x_399; -} else { - lean_dec_ref(x_399); - x_404 = lean_box(0); -} -x_405 = lean_nat_add(x_395, x_403); -lean_dec(x_403); -lean_dec(x_395); -if (lean_is_scalar(x_404)) { - x_406 = lean_alloc_ctor(0, 2, 0); -} else { - x_406 = x_404; -} -lean_ctor_set(x_406, 0, x_402); -lean_ctor_set(x_406, 1, x_405); -if (lean_is_scalar(x_401)) { - x_407 = lean_alloc_ctor(0, 2, 0); -} else { - x_407 = x_401; -} -lean_ctor_set(x_407, 0, x_406); -lean_ctor_set(x_407, 1, x_400); -return x_407; -} -else -{ -lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -lean_dec(x_395); -x_408 = lean_ctor_get(x_398, 0); -lean_inc(x_408); -x_409 = lean_ctor_get(x_398, 1); -lean_inc(x_409); -if (lean_is_exclusive(x_398)) { - lean_ctor_release(x_398, 0); - lean_ctor_release(x_398, 1); - x_410 = x_398; -} else { - lean_dec_ref(x_398); - x_410 = lean_box(0); -} -if (lean_is_scalar(x_410)) { - x_411 = lean_alloc_ctor(1, 2, 0); -} else { - x_411 = x_410; -} -lean_ctor_set(x_411, 0, x_408); -lean_ctor_set(x_411, 1, x_409); -return x_411; -} -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; -lean_dec(x_388); -lean_dec(x_386); -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_6); -lean_dec(x_3); -x_412 = lean_ctor_get(x_391, 0); +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; +x_412 = lean_ctor_get(x_411, 0); lean_inc(x_412); -x_413 = lean_ctor_get(x_391, 1); +x_413 = lean_ctor_get(x_411, 1); lean_inc(x_413); -if (lean_is_exclusive(x_391)) { - lean_ctor_release(x_391, 0); - lean_ctor_release(x_391, 1); - x_414 = x_391; +lean_dec(x_411); +x_414 = lean_ctor_get(x_412, 0); +lean_inc(x_414); +x_415 = lean_ctor_get(x_412, 1); +lean_inc(x_415); +lean_dec(x_412); +x_416 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__16; +x_417 = l_Lean_mkApp3(x_416, x_406, x_408, x_3); +x_418 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_414, x_417, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_413); +if (lean_obj_tag(x_418) == 0) +{ +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; +x_419 = lean_ctor_get(x_418, 0); +lean_inc(x_419); +x_420 = lean_ctor_get(x_418, 1); +lean_inc(x_420); +if (lean_is_exclusive(x_418)) { + lean_ctor_release(x_418, 0); + lean_ctor_release(x_418, 1); + x_421 = x_418; } else { - lean_dec_ref(x_391); - x_414 = lean_box(0); + lean_dec_ref(x_418); + x_421 = lean_box(0); } -if (lean_is_scalar(x_414)) { - x_415 = lean_alloc_ctor(1, 2, 0); +x_422 = lean_ctor_get(x_419, 0); +lean_inc(x_422); +x_423 = lean_ctor_get(x_419, 1); +lean_inc(x_423); +if (lean_is_exclusive(x_419)) { + lean_ctor_release(x_419, 0); + lean_ctor_release(x_419, 1); + x_424 = x_419; } else { - x_415 = x_414; + lean_dec_ref(x_419); + x_424 = lean_box(0); } -lean_ctor_set(x_415, 0, x_412); -lean_ctor_set(x_415, 1, x_413); -return x_415; +x_425 = lean_nat_add(x_415, x_423); +lean_dec(x_423); +lean_dec(x_415); +if (lean_is_scalar(x_424)) { + x_426 = lean_alloc_ctor(0, 2, 0); +} else { + x_426 = x_424; } +lean_ctor_set(x_426, 0, x_422); +lean_ctor_set(x_426, 1, x_425); +if (lean_is_scalar(x_421)) { + x_427 = lean_alloc_ctor(0, 2, 0); +} else { + x_427 = x_421; } +lean_ctor_set(x_427, 0, x_426); +lean_ctor_set(x_427, 1, x_420); +return x_427; +} +else +{ +lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_dec(x_415); +x_428 = lean_ctor_get(x_418, 0); +lean_inc(x_428); +x_429 = lean_ctor_get(x_418, 1); +lean_inc(x_429); +if (lean_is_exclusive(x_418)) { + lean_ctor_release(x_418, 0); + lean_ctor_release(x_418, 1); + x_430 = x_418; +} else { + lean_dec_ref(x_418); + x_430 = lean_box(0); +} +if (lean_is_scalar(x_430)) { + x_431 = lean_alloc_ctor(1, 2, 0); +} else { + x_431 = x_430; +} +lean_ctor_set(x_431, 0, x_428); +lean_ctor_set(x_431, 1, x_429); +return x_431; } } else { -lean_object* x_416; lean_object* x_417; uint8_t x_418; -lean_dec(x_274); -lean_dec(x_4); -x_416 = lean_array_get_size(x_273); -x_417 = lean_unsigned_to_nat(1u); -x_418 = lean_nat_dec_eq(x_416, x_417); -lean_dec(x_416); -if (x_418 == 0) -{ -lean_object* x_419; lean_object* x_420; lean_object* x_421; -lean_dec(x_273); +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; +lean_dec(x_408); +lean_dec(x_406); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20571,34 +22676,79 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_419 = lean_unsigned_to_nat(0u); -x_420 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_420, 0, x_2); -lean_ctor_set(x_420, 1, x_419); -x_421 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_421, 0, x_420); -lean_ctor_set(x_421, 1, x_13); -return x_421; +x_432 = lean_ctor_get(x_411, 0); +lean_inc(x_432); +x_433 = lean_ctor_get(x_411, 1); +lean_inc(x_433); +if (lean_is_exclusive(x_411)) { + lean_ctor_release(x_411, 0); + lean_ctor_release(x_411, 1); + x_434 = x_411; +} else { + lean_dec_ref(x_411); + x_434 = lean_box(0); +} +if (lean_is_scalar(x_434)) { + x_435 = lean_alloc_ctor(1, 2, 0); +} else { + x_435 = x_434; +} +lean_ctor_set(x_435, 0, x_432); +lean_ctor_set(x_435, 1, x_433); +return x_435; +} +} +} } else { -lean_object* x_422; lean_object* x_423; lean_object* x_424; -x_422 = lean_unsigned_to_nat(0u); -x_423 = lean_array_fget(x_273, x_422); -lean_dec(x_273); +lean_object* x_436; lean_object* x_437; uint8_t x_438; +lean_dec(x_294); +lean_dec(x_4); +x_436 = lean_array_get_size(x_293); +x_437 = lean_unsigned_to_nat(1u); +x_438 = lean_nat_dec_eq(x_436, x_437); +lean_dec(x_436); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_439 = lean_unsigned_to_nat(0u); +x_440 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_440, 0, x_2); +lean_ctor_set(x_440, 1, x_439); +x_441 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_441, 0, x_440); +lean_ctor_set(x_441, 1, x_13); +return x_441; +} +else +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; +x_442 = lean_unsigned_to_nat(0u); +x_443 = lean_array_fget(x_293, x_442); +lean_dec(x_293); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_424 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot(x_3, x_423, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_424) == 0) +x_444 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot(x_3, x_443, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_444) == 0) { -lean_object* x_425; -x_425 = lean_ctor_get(x_424, 0); -lean_inc(x_425); -if (lean_obj_tag(x_425) == 0) +lean_object* x_445; +x_445 = lean_ctor_get(x_444, 0); +lean_inc(x_445); +if (lean_obj_tag(x_445) == 0) { -lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; +lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20606,44 +22756,44 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_426 = lean_ctor_get(x_424, 1); -lean_inc(x_426); -if (lean_is_exclusive(x_424)) { - lean_ctor_release(x_424, 0); - lean_ctor_release(x_424, 1); - x_427 = x_424; +x_446 = lean_ctor_get(x_444, 1); +lean_inc(x_446); +if (lean_is_exclusive(x_444)) { + lean_ctor_release(x_444, 0); + lean_ctor_release(x_444, 1); + x_447 = x_444; } else { - lean_dec_ref(x_424); - x_427 = lean_box(0); + lean_dec_ref(x_444); + x_447 = lean_box(0); } -x_428 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_428, 0, x_2); -lean_ctor_set(x_428, 1, x_422); -if (lean_is_scalar(x_427)) { - x_429 = lean_alloc_ctor(0, 2, 0); +x_448 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_448, 0, x_2); +lean_ctor_set(x_448, 1, x_442); +if (lean_is_scalar(x_447)) { + x_449 = lean_alloc_ctor(0, 2, 0); } else { - x_429 = x_427; + x_449 = x_447; } -lean_ctor_set(x_429, 0, x_428); -lean_ctor_set(x_429, 1, x_426); -return x_429; +lean_ctor_set(x_449, 0, x_448); +lean_ctor_set(x_449, 1, x_446); +return x_449; } else { -lean_object* x_430; lean_object* x_431; lean_object* x_432; -x_430 = lean_ctor_get(x_424, 1); -lean_inc(x_430); -lean_dec(x_424); -x_431 = lean_ctor_get(x_425, 0); -lean_inc(x_431); -lean_dec(x_425); -x_432 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_431, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_430); -return x_432; +lean_object* x_450; lean_object* x_451; lean_object* x_452; +x_450 = lean_ctor_get(x_444, 1); +lean_inc(x_450); +lean_dec(x_444); +x_451 = lean_ctor_get(x_445, 0); +lean_inc(x_451); +lean_dec(x_445); +x_452 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_451, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_450); +return x_452; } } else { -lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; +lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20652,133 +22802,43 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_2); -x_433 = lean_ctor_get(x_424, 0); -lean_inc(x_433); -x_434 = lean_ctor_get(x_424, 1); -lean_inc(x_434); -if (lean_is_exclusive(x_424)) { - lean_ctor_release(x_424, 0); - lean_ctor_release(x_424, 1); - x_435 = x_424; +x_453 = lean_ctor_get(x_444, 0); +lean_inc(x_453); +x_454 = lean_ctor_get(x_444, 1); +lean_inc(x_454); +if (lean_is_exclusive(x_444)) { + lean_ctor_release(x_444, 0); + lean_ctor_release(x_444, 1); + x_455 = x_444; } else { - lean_dec_ref(x_424); - x_435 = lean_box(0); + lean_dec_ref(x_444); + x_455 = lean_box(0); } -if (lean_is_scalar(x_435)) { - x_436 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_455)) { + x_456 = lean_alloc_ctor(1, 2, 0); } else { - x_436 = x_435; + x_456 = x_455; } -lean_ctor_set(x_436, 0, x_433); -lean_ctor_set(x_436, 1, x_434); -return x_436; +lean_ctor_set(x_456, 0, x_453); +lean_ctor_set(x_456, 1, x_454); +return x_456; } } } } else { -lean_object* x_437; lean_object* x_438; uint8_t x_439; -lean_dec(x_274); +lean_object* x_457; lean_object* x_458; uint8_t x_459; +lean_dec(x_294); lean_dec(x_4); -x_437 = lean_array_get_size(x_273); -x_438 = lean_unsigned_to_nat(3u); -x_439 = lean_nat_dec_eq(x_437, x_438); -lean_dec(x_437); -if (x_439 == 0) +x_457 = lean_array_get_size(x_293); +x_458 = lean_unsigned_to_nat(3u); +x_459 = lean_nat_dec_eq(x_457, x_458); +lean_dec(x_457); +if (x_459 == 0) { -lean_object* x_440; lean_object* x_441; lean_object* x_442; -lean_dec(x_273); -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_6); -lean_dec(x_3); -x_440 = lean_unsigned_to_nat(0u); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_2); -lean_ctor_set(x_441, 1, x_440); -x_442 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_13); -return x_442; -} -else -{ -lean_object* x_443; lean_object* x_444; -x_443 = lean_unsigned_to_nat(0u); -x_444 = lean_array_fget(x_273, x_443); -if (lean_obj_tag(x_444) == 4) -{ -lean_object* x_445; -x_445 = lean_ctor_get(x_444, 0); -lean_inc(x_445); -if (lean_obj_tag(x_445) == 1) -{ -lean_object* x_446; -x_446 = lean_ctor_get(x_445, 0); -lean_inc(x_446); -if (lean_obj_tag(x_446) == 0) -{ -lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; -x_447 = lean_ctor_get(x_444, 1); -lean_inc(x_447); -lean_dec(x_444); -x_448 = lean_ctor_get(x_445, 1); -lean_inc(x_448); -lean_dec(x_445); -x_449 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_450 = lean_string_dec_eq(x_448, x_449); -if (x_450 == 0) -{ -lean_object* x_451; uint8_t x_452; -x_451 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_452 = lean_string_dec_eq(x_448, x_451); -lean_dec(x_448); -if (x_452 == 0) -{ -lean_object* x_453; lean_object* x_454; -lean_dec(x_447); -lean_dec(x_273); -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_6); -lean_dec(x_3); -x_453 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_453, 0, x_2); -lean_ctor_set(x_453, 1, x_443); -x_454 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_454, 0, x_453); -lean_ctor_set(x_454, 1, x_13); -return x_454; -} -else -{ -if (lean_obj_tag(x_447) == 0) -{ -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; -x_455 = lean_unsigned_to_nat(1u); -x_456 = lean_array_fget(x_273, x_455); -x_457 = lean_unsigned_to_nat(2u); -x_458 = lean_array_fget(x_273, x_457); -lean_dec(x_273); -x_459 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; -x_460 = l_Lean_mkApp3(x_459, x_456, x_458, x_3); -x_461 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_460, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_461; -} -else -{ -lean_object* x_462; lean_object* x_463; -lean_dec(x_447); -lean_dec(x_273); +lean_object* x_460; lean_object* x_461; lean_object* x_462; +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20787,62 +22847,52 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +x_460 = lean_unsigned_to_nat(0u); +x_461 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_461, 0, x_2); +lean_ctor_set(x_461, 1, x_460); x_462 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_462, 0, x_2); -lean_ctor_set(x_462, 1, x_443); -x_463 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_463, 0, x_462); -lean_ctor_set(x_463, 1, x_13); -return x_463; -} -} +lean_ctor_set(x_462, 0, x_461); +lean_ctor_set(x_462, 1, x_13); +return x_462; } else { -lean_dec(x_448); -if (lean_obj_tag(x_447) == 0) +lean_object* x_463; lean_object* x_464; +x_463 = lean_unsigned_to_nat(0u); +x_464 = lean_array_fget(x_293, x_463); +if (lean_obj_tag(x_464) == 4) { -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; -x_464 = lean_unsigned_to_nat(1u); -x_465 = lean_array_fget(x_273, x_464); -x_466 = lean_unsigned_to_nat(2u); -x_467 = lean_array_fget(x_273, x_466); -lean_dec(x_273); -x_468 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__25; -x_469 = l_Lean_mkApp3(x_468, x_465, x_467, x_3); -x_470 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_469, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_470; -} -else +lean_object* x_465; +x_465 = lean_ctor_get(x_464, 0); +lean_inc(x_465); +if (lean_obj_tag(x_465) == 1) { -lean_object* x_471; lean_object* x_472; -lean_dec(x_447); -lean_dec(x_273); -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_6); -lean_dec(x_3); -x_471 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_471, 0, x_2); -lean_ctor_set(x_471, 1, x_443); -x_472 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_472, 0, x_471); -lean_ctor_set(x_472, 1, x_13); -return x_472; -} -} -} -else +lean_object* x_466; +x_466 = lean_ctor_get(x_465, 0); +lean_inc(x_466); +if (lean_obj_tag(x_466) == 0) +{ +lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; +x_467 = lean_ctor_get(x_464, 1); +lean_inc(x_467); +lean_dec(x_464); +x_468 = lean_ctor_get(x_465, 1); +lean_inc(x_468); +lean_dec(x_465); +x_469 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_470 = lean_string_dec_eq(x_468, x_469); +if (x_470 == 0) +{ +lean_object* x_471; uint8_t x_472; +x_471 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_472 = lean_string_dec_eq(x_468, x_471); +lean_dec(x_468); +if (x_472 == 0) { lean_object* x_473; lean_object* x_474; -lean_dec(x_446); -lean_dec(x_445); -lean_dec(x_444); -lean_dec(x_273); +lean_dec(x_467); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20853,19 +22903,32 @@ lean_dec(x_6); lean_dec(x_3); x_473 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_473, 0, x_2); -lean_ctor_set(x_473, 1, x_443); +lean_ctor_set(x_473, 1, x_463); x_474 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_474, 0, x_473); lean_ctor_set(x_474, 1, x_13); return x_474; } +else +{ +if (lean_obj_tag(x_467) == 0) +{ +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; +x_475 = lean_unsigned_to_nat(1u); +x_476 = lean_array_fget(x_293, x_475); +x_477 = lean_unsigned_to_nat(2u); +x_478 = lean_array_fget(x_293, x_477); +lean_dec(x_293); +x_479 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__23; +x_480 = l_Lean_mkApp3(x_479, x_476, x_478, x_3); +x_481 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_480, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_481; } else { -lean_object* x_475; lean_object* x_476; -lean_dec(x_445); -lean_dec(x_444); -lean_dec(x_273); +lean_object* x_482; lean_object* x_483; +lean_dec(x_467); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20874,106 +22937,85 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_475 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_475, 0, x_2); -lean_ctor_set(x_475, 1, x_443); -x_476 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_476, 0, x_475); -lean_ctor_set(x_476, 1, x_13); -return x_476; -} -} -else -{ -lean_object* x_477; lean_object* x_478; -lean_dec(x_444); -lean_dec(x_273); -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_6); -lean_dec(x_3); -x_477 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_477, 0, x_2); -lean_ctor_set(x_477, 1, x_443); -x_478 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_478, 0, x_477); -lean_ctor_set(x_478, 1, x_13); -return x_478; -} -} -} -} -else -{ -lean_object* x_479; lean_object* x_480; uint8_t x_481; -lean_dec(x_274); -lean_dec(x_4); -x_479 = lean_array_get_size(x_273); -x_480 = lean_unsigned_to_nat(3u); -x_481 = lean_nat_dec_eq(x_479, x_480); -lean_dec(x_479); -if (x_481 == 0) -{ -lean_object* x_482; lean_object* x_483; lean_object* x_484; -lean_dec(x_273); -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_6); -lean_dec(x_3); -x_482 = lean_unsigned_to_nat(0u); +x_482 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_482, 0, x_2); +lean_ctor_set(x_482, 1, x_463); x_483 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_483, 0, x_2); -lean_ctor_set(x_483, 1, x_482); -x_484 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_484, 0, x_483); -lean_ctor_set(x_484, 1, x_13); -return x_484; +lean_ctor_set(x_483, 0, x_482); +lean_ctor_set(x_483, 1, x_13); +return x_483; +} +} } else { -lean_object* x_485; lean_object* x_486; -x_485 = lean_unsigned_to_nat(0u); -x_486 = lean_array_fget(x_273, x_485); -if (lean_obj_tag(x_486) == 4) +lean_dec(x_468); +if (lean_obj_tag(x_467) == 0) { -lean_object* x_487; -x_487 = lean_ctor_get(x_486, 0); -lean_inc(x_487); -if (lean_obj_tag(x_487) == 1) +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; +x_484 = lean_unsigned_to_nat(1u); +x_485 = lean_array_fget(x_293, x_484); +x_486 = lean_unsigned_to_nat(2u); +x_487 = lean_array_fget(x_293, x_486); +lean_dec(x_293); +x_488 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__25; +x_489 = l_Lean_mkApp3(x_488, x_485, x_487, x_3); +x_490 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_489, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_490; +} +else { -lean_object* x_488; -x_488 = lean_ctor_get(x_487, 0); -lean_inc(x_488); -if (lean_obj_tag(x_488) == 0) +lean_object* x_491; lean_object* x_492; +lean_dec(x_467); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_491 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_491, 0, x_2); +lean_ctor_set(x_491, 1, x_463); +x_492 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_492, 0, x_491); +lean_ctor_set(x_492, 1, x_13); +return x_492; +} +} +} +else { -lean_object* x_489; lean_object* x_490; lean_object* x_491; uint8_t x_492; -x_489 = lean_ctor_get(x_486, 1); -lean_inc(x_489); -lean_dec(x_486); -x_490 = lean_ctor_get(x_487, 1); -lean_inc(x_490); -lean_dec(x_487); -x_491 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_492 = lean_string_dec_eq(x_490, x_491); -if (x_492 == 0) -{ -lean_object* x_493; uint8_t x_494; -x_493 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_494 = lean_string_dec_eq(x_490, x_493); -lean_dec(x_490); -if (x_494 == 0) +lean_object* x_493; lean_object* x_494; +lean_dec(x_466); +lean_dec(x_465); +lean_dec(x_464); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_493 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_493, 0, x_2); +lean_ctor_set(x_493, 1, x_463); +x_494 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_13); +return x_494; +} +} +else { lean_object* x_495; lean_object* x_496; -lean_dec(x_489); -lean_dec(x_273); +lean_dec(x_465); +lean_dec(x_464); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -20984,32 +23026,18 @@ lean_dec(x_6); lean_dec(x_3); x_495 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_495, 0, x_2); -lean_ctor_set(x_495, 1, x_485); +lean_ctor_set(x_495, 1, x_463); x_496 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_496, 0, x_495); lean_ctor_set(x_496, 1, x_13); return x_496; } -else -{ -if (lean_obj_tag(x_489) == 0) -{ -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; -x_497 = lean_unsigned_to_nat(1u); -x_498 = lean_array_fget(x_273, x_497); -x_499 = lean_unsigned_to_nat(2u); -x_500 = lean_array_fget(x_273, x_499); -lean_dec(x_273); -x_501 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__19; -x_502 = l_Lean_mkApp3(x_501, x_498, x_500, x_3); -x_503 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_502, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_503; } else { -lean_object* x_504; lean_object* x_505; -lean_dec(x_489); -lean_dec(x_273); +lean_object* x_497; lean_object* x_498; +lean_dec(x_464); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21018,134 +23046,257 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +x_497 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_497, 0, x_2); +lean_ctor_set(x_497, 1, x_463); +x_498 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_498, 0, x_497); +lean_ctor_set(x_498, 1, x_13); +return x_498; +} +} +} +} +else +{ +lean_object* x_499; lean_object* x_500; uint8_t x_501; +lean_dec(x_294); +lean_dec(x_4); +x_499 = lean_array_get_size(x_293); +x_500 = lean_unsigned_to_nat(3u); +x_501 = lean_nat_dec_eq(x_499, x_500); +lean_dec(x_499); +if (x_501 == 0) +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_502 = lean_unsigned_to_nat(0u); +x_503 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_503, 0, x_2); +lean_ctor_set(x_503, 1, x_502); x_504 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_504, 0, x_2); -lean_ctor_set(x_504, 1, x_485); -x_505 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_505, 0, x_504); -lean_ctor_set(x_505, 1, x_13); -return x_505; -} -} +lean_ctor_set(x_504, 0, x_503); +lean_ctor_set(x_504, 1, x_13); +return x_504; } else { -lean_dec(x_490); -if (lean_obj_tag(x_489) == 0) +lean_object* x_505; lean_object* x_506; +x_505 = lean_unsigned_to_nat(0u); +x_506 = lean_array_fget(x_293, x_505); +switch (lean_obj_tag(x_506)) { +case 4: { -lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; -x_506 = lean_unsigned_to_nat(1u); -x_507 = lean_array_fget(x_273, x_506); -x_508 = lean_unsigned_to_nat(2u); -x_509 = lean_array_fget(x_273, x_508); -lean_dec(x_273); +lean_object* x_507; +x_507 = lean_ctor_get(x_506, 0); +lean_inc(x_507); +if (lean_obj_tag(x_507) == 1) +{ +lean_object* x_508; +x_508 = lean_ctor_get(x_507, 0); +lean_inc(x_508); +if (lean_obj_tag(x_508) == 0) +{ +lean_object* x_509; lean_object* x_510; lean_object* x_511; uint8_t x_512; +x_509 = lean_ctor_get(x_506, 1); lean_inc(x_509); -x_510 = l_Lean_Expr_int_x3f(x_509); -if (lean_obj_tag(x_510) == 0) +lean_dec(x_506); +x_510 = lean_ctor_get(x_507, 1); +lean_inc(x_510); +lean_dec(x_507); +x_511 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_512 = lean_string_dec_eq(x_510, x_511); +if (x_512 == 0) { -lean_object* x_511; lean_object* x_512; lean_object* x_513; -x_511 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; -x_512 = l_Lean_mkApp3(x_511, x_507, x_509, x_3); -x_513 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_512, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_513; -} -else -{ -lean_object* x_514; lean_object* x_515; uint8_t x_516; -x_514 = lean_ctor_get(x_510, 0); -lean_inc(x_514); +lean_object* x_513; uint8_t x_514; +x_513 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_514 = lean_string_dec_eq(x_510, x_513); lean_dec(x_510); -x_515 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; -x_516 = lean_int_dec_lt(x_514, x_515); -if (x_516 == 0) +if (x_514 == 0) { -lean_object* x_517; uint8_t x_518; -x_517 = lean_nat_abs(x_514); -lean_dec(x_514); -x_518 = lean_nat_dec_eq(x_517, x_485); -lean_dec(x_517); -if (x_518 == 0) -{ -lean_object* x_519; lean_object* x_520; lean_object* x_521; -x_519 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; -x_520 = l_Lean_mkApp3(x_519, x_507, x_509, x_3); -x_521 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_520, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_521; -} -else -{ -lean_object* x_522; +lean_object* x_515; lean_object* x_516; lean_dec(x_509); -x_522 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality(x_2, x_3, x_507, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_522) == 0) -{ -lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; -x_523 = lean_ctor_get(x_522, 0); -lean_inc(x_523); -x_524 = lean_ctor_get(x_522, 1); -lean_inc(x_524); -if (lean_is_exclusive(x_522)) { - lean_ctor_release(x_522, 0); - lean_ctor_release(x_522, 1); - x_525 = x_522; -} else { - lean_dec_ref(x_522); - x_525 = lean_box(0); -} -x_526 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_526, 0, x_523); -lean_ctor_set(x_526, 1, x_506); -if (lean_is_scalar(x_525)) { - x_527 = lean_alloc_ctor(0, 2, 0); -} else { - x_527 = x_525; -} -lean_ctor_set(x_527, 0, x_526); -lean_ctor_set(x_527, 1, x_524); -return x_527; +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_2); +lean_ctor_set(x_515, 1, x_505); +x_516 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_516, 0, x_515); +lean_ctor_set(x_516, 1, x_13); +return x_516; } else { -lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; -x_528 = lean_ctor_get(x_522, 0); -lean_inc(x_528); -x_529 = lean_ctor_get(x_522, 1); +if (lean_obj_tag(x_509) == 0) +{ +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; +x_517 = lean_unsigned_to_nat(1u); +x_518 = lean_array_fget(x_293, x_517); +x_519 = lean_unsigned_to_nat(2u); +x_520 = lean_array_fget(x_293, x_519); +lean_dec(x_293); +x_521 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__19; +x_522 = l_Lean_mkApp3(x_521, x_518, x_520, x_3); +x_523 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_522, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_523; +} +else +{ +lean_object* x_524; lean_object* x_525; +lean_dec(x_509); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_524 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_524, 0, x_2); +lean_ctor_set(x_524, 1, x_505); +x_525 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_525, 0, x_524); +lean_ctor_set(x_525, 1, x_13); +return x_525; +} +} +} +else +{ +lean_dec(x_510); +if (lean_obj_tag(x_509) == 0) +{ +lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; +x_526 = lean_unsigned_to_nat(1u); +x_527 = lean_array_fget(x_293, x_526); +x_528 = lean_unsigned_to_nat(2u); +x_529 = lean_array_fget(x_293, x_528); +lean_dec(x_293); lean_inc(x_529); -if (lean_is_exclusive(x_522)) { - lean_ctor_release(x_522, 0); - lean_ctor_release(x_522, 1); - x_530 = x_522; +x_530 = l_Lean_Expr_int_x3f(x_529); +if (lean_obj_tag(x_530) == 0) +{ +lean_object* x_531; lean_object* x_532; lean_object* x_533; +x_531 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; +x_532 = l_Lean_mkApp3(x_531, x_527, x_529, x_3); +x_533 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_532, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_533; +} +else +{ +lean_object* x_534; lean_object* x_535; uint8_t x_536; +x_534 = lean_ctor_get(x_530, 0); +lean_inc(x_534); +lean_dec(x_530); +x_535 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_536 = lean_int_dec_lt(x_534, x_535); +if (x_536 == 0) +{ +lean_object* x_537; uint8_t x_538; +x_537 = lean_nat_abs(x_534); +lean_dec(x_534); +x_538 = lean_nat_dec_eq(x_537, x_505); +lean_dec(x_537); +if (x_538 == 0) +{ +lean_object* x_539; lean_object* x_540; lean_object* x_541; +x_539 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; +x_540 = l_Lean_mkApp3(x_539, x_527, x_529, x_3); +x_541 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_540, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_541; +} +else +{ +lean_object* x_542; +lean_dec(x_529); +x_542 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntEquality(x_2, x_3, x_527, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_542) == 0) +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; +x_543 = lean_ctor_get(x_542, 0); +lean_inc(x_543); +x_544 = lean_ctor_get(x_542, 1); +lean_inc(x_544); +if (lean_is_exclusive(x_542)) { + lean_ctor_release(x_542, 0); + lean_ctor_release(x_542, 1); + x_545 = x_542; } else { - lean_dec_ref(x_522); - x_530 = lean_box(0); + lean_dec_ref(x_542); + x_545 = lean_box(0); } -if (lean_is_scalar(x_530)) { - x_531 = lean_alloc_ctor(1, 2, 0); +x_546 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_546, 0, x_543); +lean_ctor_set(x_546, 1, x_526); +if (lean_is_scalar(x_545)) { + x_547 = lean_alloc_ctor(0, 2, 0); } else { - x_531 = x_530; + x_547 = x_545; } -lean_ctor_set(x_531, 0, x_528); -lean_ctor_set(x_531, 1, x_529); -return x_531; +lean_ctor_set(x_547, 0, x_546); +lean_ctor_set(x_547, 1, x_544); +return x_547; +} +else +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; +x_548 = lean_ctor_get(x_542, 0); +lean_inc(x_548); +x_549 = lean_ctor_get(x_542, 1); +lean_inc(x_549); +if (lean_is_exclusive(x_542)) { + lean_ctor_release(x_542, 0); + lean_ctor_release(x_542, 1); + x_550 = x_542; +} else { + lean_dec_ref(x_542); + x_550 = lean_box(0); +} +if (lean_is_scalar(x_550)) { + x_551 = lean_alloc_ctor(1, 2, 0); +} else { + x_551 = x_550; +} +lean_ctor_set(x_551, 0, x_548); +lean_ctor_set(x_551, 1, x_549); +return x_551; } } } else { -lean_object* x_532; lean_object* x_533; lean_object* x_534; -lean_dec(x_514); -x_532 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; -x_533 = l_Lean_mkApp3(x_532, x_507, x_509, x_3); -x_534 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_533, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_534; +lean_object* x_552; lean_object* x_553; lean_object* x_554; +lean_dec(x_534); +x_552 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__22; +x_553 = l_Lean_mkApp3(x_552, x_527, x_529, x_3); +x_554 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_553, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_554; } } } else { -lean_object* x_535; lean_object* x_536; -lean_dec(x_489); -lean_dec(x_273); +lean_object* x_555; lean_object* x_556; +lean_dec(x_509); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21154,23 +23305,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_535 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_535, 0, x_2); -lean_ctor_set(x_535, 1, x_485); -x_536 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_536, 0, x_535); -lean_ctor_set(x_536, 1, x_13); -return x_536; +x_555 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_555, 0, x_2); +lean_ctor_set(x_555, 1, x_505); +x_556 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_556, 0, x_555); +lean_ctor_set(x_556, 1, x_13); +return x_556; } } } else { -lean_object* x_537; lean_object* x_538; -lean_dec(x_488); -lean_dec(x_487); -lean_dec(x_486); -lean_dec(x_273); +lean_object* x_557; lean_object* x_558; +lean_dec(x_508); +lean_dec(x_507); +lean_dec(x_506); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21179,21 +23330,21 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_537 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_537, 0, x_2); -lean_ctor_set(x_537, 1, x_485); -x_538 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_538, 0, x_537); -lean_ctor_set(x_538, 1, x_13); -return x_538; +x_557 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_557, 0, x_2); +lean_ctor_set(x_557, 1, x_505); +x_558 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_558, 0, x_557); +lean_ctor_set(x_558, 1, x_13); +return x_558; } } else { -lean_object* x_539; lean_object* x_540; -lean_dec(x_487); -lean_dec(x_486); -lean_dec(x_273); +lean_object* x_559; lean_object* x_560; +lean_dec(x_507); +lean_dec(x_506); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21202,20 +23353,51 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_539 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_539, 0, x_2); -lean_ctor_set(x_539, 1, x_485); -x_540 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_13); -return x_540; +x_559 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_559, 0, x_2); +lean_ctor_set(x_559, 1, x_505); +x_560 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_560, 0, x_559); +lean_ctor_set(x_560, 1, x_13); +return x_560; } } -else +case 5: { -lean_object* x_541; lean_object* x_542; -lean_dec(x_486); -lean_dec(x_273); +lean_object* x_561; +x_561 = lean_ctor_get(x_506, 0); +lean_inc(x_561); +if (lean_obj_tag(x_561) == 4) +{ +lean_object* x_562; +x_562 = lean_ctor_get(x_561, 0); +lean_inc(x_562); +if (lean_obj_tag(x_562) == 1) +{ +lean_object* x_563; +x_563 = lean_ctor_get(x_562, 0); +lean_inc(x_563); +if (lean_obj_tag(x_563) == 0) +{ +lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; uint8_t x_568; +x_564 = lean_ctor_get(x_506, 1); +lean_inc(x_564); +lean_dec(x_506); +x_565 = lean_ctor_get(x_561, 1); +lean_inc(x_565); +lean_dec(x_561); +x_566 = lean_ctor_get(x_562, 1); +lean_inc(x_566); +lean_dec(x_562); +x_567 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_568 = lean_string_dec_eq(x_566, x_567); +lean_dec(x_566); +if (x_568 == 0) +{ +lean_object* x_569; lean_object* x_570; +lean_dec(x_565); +lean_dec(x_564); +lean_dec(x_293); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21224,13 +23406,146 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_541 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_541, 0, x_2); -lean_ctor_set(x_541, 1, x_485); -x_542 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_542, 0, x_541); -lean_ctor_set(x_542, 1, x_13); -return x_542; +x_569 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_569, 0, x_2); +lean_ctor_set(x_569, 1, x_505); +x_570 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_570, 0, x_569); +lean_ctor_set(x_570, 1, x_13); +return x_570; +} +else +{ +if (lean_obj_tag(x_565) == 0) +{ +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; +x_571 = lean_unsigned_to_nat(1u); +x_572 = lean_array_fget(x_293, x_571); +x_573 = lean_unsigned_to_nat(2u); +x_574 = lean_array_fget(x_293, x_573); +lean_dec(x_293); +x_575 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__25; +x_576 = l_Lean_mkApp4(x_575, x_564, x_572, x_574, x_3); +x_577 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_576, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_577; +} +else +{ +lean_object* x_578; lean_object* x_579; +lean_dec(x_565); +lean_dec(x_564); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_578 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_578, 0, x_2); +lean_ctor_set(x_578, 1, x_505); +x_579 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_579, 0, x_578); +lean_ctor_set(x_579, 1, x_13); +return x_579; +} +} +} +else +{ +lean_object* x_580; lean_object* x_581; +lean_dec(x_563); +lean_dec(x_562); +lean_dec(x_561); +lean_dec(x_506); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_580 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_580, 0, x_2); +lean_ctor_set(x_580, 1, x_505); +x_581 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_581, 0, x_580); +lean_ctor_set(x_581, 1, x_13); +return x_581; +} +} +else +{ +lean_object* x_582; lean_object* x_583; +lean_dec(x_562); +lean_dec(x_561); +lean_dec(x_506); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_582 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_582, 0, x_2); +lean_ctor_set(x_582, 1, x_505); +x_583 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_583, 0, x_582); +lean_ctor_set(x_583, 1, x_13); +return x_583; +} +} +else +{ +lean_object* x_584; lean_object* x_585; +lean_dec(x_561); +lean_dec(x_506); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_584 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_584, 0, x_2); +lean_ctor_set(x_584, 1, x_505); +x_585 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_585, 0, x_584); +lean_ctor_set(x_585, 1, x_13); +return x_585; +} +} +default: +{ +lean_object* x_586; lean_object* x_587; +lean_dec(x_506); +lean_dec(x_293); +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_6); +lean_dec(x_3); +x_586 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_586, 0, x_2); +lean_ctor_set(x_586, 1, x_505); +x_587 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_587, 0, x_586); +lean_ctor_set(x_587, 1, x_13); +return x_587; +} } } } @@ -21238,337 +23553,59 @@ return x_542; } case 1: { -lean_object* x_543; +lean_object* x_588; lean_dec(x_4); -x_543 = lean_ctor_get(x_16, 0); -lean_inc(x_543); -if (lean_obj_tag(x_543) == 0) +x_588 = lean_ctor_get(x_16, 0); +lean_inc(x_588); +if (lean_obj_tag(x_588) == 0) { -uint8_t x_544; -x_544 = !lean_is_exclusive(x_14); -if (x_544 == 0) +uint8_t x_589; +x_589 = !lean_is_exclusive(x_14); +if (x_589 == 0) { -lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; uint8_t x_550; -x_545 = lean_ctor_get(x_14, 1); -x_546 = lean_ctor_get(x_14, 0); -lean_dec(x_546); -x_547 = lean_ctor_get(x_15, 1); -lean_inc(x_547); +lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; uint8_t x_595; +x_590 = lean_ctor_get(x_14, 1); +x_591 = lean_ctor_get(x_14, 0); +lean_dec(x_591); +x_592 = lean_ctor_get(x_15, 1); +lean_inc(x_592); lean_dec(x_15); -x_548 = lean_ctor_get(x_16, 1); -lean_inc(x_548); +x_593 = lean_ctor_get(x_16, 1); +lean_inc(x_593); lean_dec(x_16); -x_549 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; -x_550 = lean_string_dec_eq(x_548, x_549); -if (x_550 == 0) +x_594 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; +x_595 = lean_string_dec_eq(x_593, x_594); +if (x_595 == 0) { -lean_object* x_551; uint8_t x_552; -x_551 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; -x_552 = lean_string_dec_eq(x_548, x_551); -if (x_552 == 0) +lean_object* x_596; uint8_t x_597; +x_596 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; +x_597 = lean_string_dec_eq(x_593, x_596); +if (x_597 == 0) { -lean_object* x_553; uint8_t x_554; -x_553 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__23; -x_554 = lean_string_dec_eq(x_548, x_553); -if (x_554 == 0) +lean_object* x_598; uint8_t x_599; +x_598 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__26; +x_599 = lean_string_dec_eq(x_593, x_598); +if (x_599 == 0) { -lean_object* x_555; uint8_t x_556; -x_555 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__24; -x_556 = lean_string_dec_eq(x_548, x_555); -if (x_556 == 0) -{ -lean_object* x_557; uint8_t x_558; -x_557 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_558 = lean_string_dec_eq(x_548, x_557); -if (x_558 == 0) -{ -lean_object* x_559; uint8_t x_560; -x_559 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; -x_560 = lean_string_dec_eq(x_548, x_559); -lean_dec(x_548); -if (x_560 == 0) -{ -lean_object* x_561; lean_object* x_562; -lean_dec(x_547); -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_561 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_561); -lean_ctor_set(x_14, 0, x_2); -x_562 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_562, 0, x_14); -lean_ctor_set(x_562, 1, x_13); -return x_562; -} -else -{ -lean_object* x_563; uint8_t x_564; -x_563 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; -x_564 = lean_string_dec_eq(x_547, x_563); -lean_dec(x_547); -if (x_564 == 0) -{ -lean_object* x_565; lean_object* x_566; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_565 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_565); -lean_ctor_set(x_14, 0, x_2); -x_566 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_566, 0, x_14); -lean_ctor_set(x_566, 1, x_13); -return x_566; -} -else -{ -lean_object* x_567; lean_object* x_568; uint8_t x_569; -x_567 = lean_array_get_size(x_545); -x_568 = lean_unsigned_to_nat(4u); -x_569 = lean_nat_dec_eq(x_567, x_568); -lean_dec(x_567); -if (x_569 == 0) -{ -lean_object* x_570; lean_object* x_571; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_570 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_570); -lean_ctor_set(x_14, 0, x_2); -x_571 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_571, 0, x_14); -lean_ctor_set(x_571, 1, x_13); -return x_571; -} -else -{ -lean_object* x_572; lean_object* x_573; -x_572 = lean_unsigned_to_nat(0u); -x_573 = lean_array_fget(x_545, x_572); -if (lean_obj_tag(x_573) == 4) -{ -lean_object* x_574; -x_574 = lean_ctor_get(x_573, 0); -lean_inc(x_574); -if (lean_obj_tag(x_574) == 1) -{ -lean_object* x_575; -x_575 = lean_ctor_get(x_574, 0); -lean_inc(x_575); -if (lean_obj_tag(x_575) == 0) -{ -lean_object* x_576; lean_object* x_577; lean_object* x_578; uint8_t x_579; -x_576 = lean_ctor_get(x_573, 1); -lean_inc(x_576); -lean_dec(x_573); -x_577 = lean_ctor_get(x_574, 1); -lean_inc(x_577); -lean_dec(x_574); -x_578 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_579 = lean_string_dec_eq(x_577, x_578); -if (x_579 == 0) -{ -lean_object* x_580; uint8_t x_581; -x_580 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_581 = lean_string_dec_eq(x_577, x_580); -lean_dec(x_577); -if (x_581 == 0) -{ -lean_object* x_582; -lean_dec(x_576); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_582 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_582, 0, x_14); -lean_ctor_set(x_582, 1, x_13); -return x_582; -} -else -{ -if (lean_obj_tag(x_576) == 0) -{ -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_free_object(x_14); -x_583 = lean_unsigned_to_nat(2u); -x_584 = lean_array_fget(x_545, x_583); -x_585 = lean_unsigned_to_nat(3u); -x_586 = lean_array_fget(x_545, x_585); -lean_dec(x_545); -x_587 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; -x_588 = l_Lean_mkApp3(x_587, x_584, x_586, x_3); -x_589 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_588, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_589; -} -else -{ -lean_object* x_590; -lean_dec(x_576); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_590 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_590, 0, x_14); -lean_ctor_set(x_590, 1, x_13); -return x_590; -} -} -} -else -{ -lean_dec(x_577); -if (lean_obj_tag(x_576) == 0) -{ -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_free_object(x_14); -x_591 = lean_unsigned_to_nat(2u); -x_592 = lean_array_fget(x_545, x_591); -x_593 = lean_unsigned_to_nat(3u); -x_594 = lean_array_fget(x_545, x_593); -lean_dec(x_545); -x_595 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__30; -x_596 = l_Lean_mkApp3(x_595, x_592, x_594, x_3); -x_597 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_596, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_597; -} -else -{ -lean_object* x_598; -lean_dec(x_576); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_598 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_598, 0, x_14); -lean_ctor_set(x_598, 1, x_13); -return x_598; -} -} -} -else -{ -lean_object* x_599; -lean_dec(x_575); -lean_dec(x_574); -lean_dec(x_573); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_599 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_599, 0, x_14); -lean_ctor_set(x_599, 1, x_13); -return x_599; -} -} -else -{ -lean_object* x_600; -lean_dec(x_574); -lean_dec(x_573); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_600 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_600, 0, x_14); -lean_ctor_set(x_600, 1, x_13); -return x_600; -} -} -else -{ -lean_object* x_601; -lean_dec(x_573); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_572); -lean_ctor_set(x_14, 0, x_2); -x_601 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_601, 0, x_14); -lean_ctor_set(x_601, 1, x_13); -return x_601; -} -} -} -} -} -else +lean_object* x_600; uint8_t x_601; +x_600 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; +x_601 = lean_string_dec_eq(x_593, x_600); +if (x_601 == 0) { lean_object* x_602; uint8_t x_603; -lean_dec(x_548); -lean_dec(x_545); -x_602 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; -x_603 = lean_string_dec_eq(x_547, x_602); -lean_dec(x_547); +x_602 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_603 = lean_string_dec_eq(x_593, x_602); if (x_603 == 0) { -lean_object* x_604; lean_object* x_605; +lean_object* x_604; uint8_t x_605; +x_604 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; +x_605 = lean_string_dec_eq(x_593, x_604); +lean_dec(x_593); +if (x_605 == 0) +{ +lean_object* x_606; lean_object* x_607; +lean_dec(x_592); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21577,40 +23614,24 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_604 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_604); +x_606 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_606); lean_ctor_set(x_14, 0, x_2); -x_605 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_605, 0, x_14); -lean_ctor_set(x_605, 1, x_13); -return x_605; +x_607 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_607, 0, x_14); +lean_ctor_set(x_607, 1, x_13); +return x_607; } else { -lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; -lean_free_object(x_14); -x_606 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_607 = lean_array_push(x_606, x_3); -x_608 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32; -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -x_609 = l_Lean_Meta_mkAppM(x_608, x_607, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_609) == 0) +lean_object* x_608; uint8_t x_609; +x_608 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; +x_609 = lean_string_dec_eq(x_592, x_608); +lean_dec(x_592); +if (x_609 == 0) { -lean_object* x_610; lean_object* x_611; lean_object* x_612; -x_610 = lean_ctor_get(x_609, 0); -lean_inc(x_610); -x_611 = lean_ctor_get(x_609, 1); -lean_inc(x_611); -lean_dec(x_609); -x_612 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_610, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_611); -return x_612; -} -else -{ -uint8_t x_613; +lean_object* x_610; lean_object* x_611; +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21618,67 +23639,79 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_2); -x_613 = !lean_is_exclusive(x_609); -if (x_613 == 0) -{ -return x_609; +lean_dec(x_3); +x_610 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_610); +lean_ctor_set(x_14, 0, x_2); +x_611 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_611, 0, x_14); +lean_ctor_set(x_611, 1, x_13); +return x_611; } else { -lean_object* x_614; lean_object* x_615; lean_object* x_616; -x_614 = lean_ctor_get(x_609, 0); -x_615 = lean_ctor_get(x_609, 1); -lean_inc(x_615); -lean_inc(x_614); -lean_dec(x_609); -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_614); -lean_ctor_set(x_616, 1, x_615); +lean_object* x_612; lean_object* x_613; uint8_t x_614; +x_612 = lean_array_get_size(x_590); +x_613 = lean_unsigned_to_nat(4u); +x_614 = lean_nat_dec_eq(x_612, x_613); +lean_dec(x_612); +if (x_614 == 0) +{ +lean_object* x_615; lean_object* x_616; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_615 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_615); +lean_ctor_set(x_14, 0, x_2); +x_616 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_616, 0, x_14); +lean_ctor_set(x_616, 1, x_13); return x_616; } -} -} -} -} else { -lean_object* x_617; uint8_t x_618; -lean_dec(x_548); -x_617 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33; -x_618 = lean_string_dec_eq(x_547, x_617); -lean_dec(x_547); -if (x_618 == 0) +lean_object* x_617; lean_object* x_618; +x_617 = lean_unsigned_to_nat(0u); +x_618 = lean_array_fget(x_590, x_617); +if (lean_obj_tag(x_618) == 4) { -lean_object* x_619; lean_object* x_620; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_619 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_619); -lean_ctor_set(x_14, 0, x_2); -x_620 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_620, 0, x_14); -lean_ctor_set(x_620, 1, x_13); -return x_620; -} -else +lean_object* x_619; +x_619 = lean_ctor_get(x_618, 0); +lean_inc(x_619); +if (lean_obj_tag(x_619) == 1) { -lean_object* x_621; lean_object* x_622; uint8_t x_623; -x_621 = lean_array_get_size(x_545); -x_622 = lean_unsigned_to_nat(4u); -x_623 = lean_nat_dec_eq(x_621, x_622); +lean_object* x_620; +x_620 = lean_ctor_get(x_619, 0); +lean_inc(x_620); +if (lean_obj_tag(x_620) == 0) +{ +lean_object* x_621; lean_object* x_622; lean_object* x_623; uint8_t x_624; +x_621 = lean_ctor_get(x_618, 1); +lean_inc(x_621); +lean_dec(x_618); +x_622 = lean_ctor_get(x_619, 1); +lean_inc(x_622); +lean_dec(x_619); +x_623 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_624 = lean_string_dec_eq(x_622, x_623); +if (x_624 == 0) +{ +lean_object* x_625; uint8_t x_626; +x_625 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_626 = lean_string_dec_eq(x_622, x_625); +lean_dec(x_622); +if (x_626 == 0) +{ +lean_object* x_627; lean_dec(x_621); -if (x_623 == 0) -{ -lean_object* x_624; lean_object* x_625; -lean_dec(x_545); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21687,87 +23720,97 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_624 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_624); +lean_ctor_set(x_14, 1, x_617); lean_ctor_set(x_14, 0, x_2); -x_625 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_625, 0, x_14); -lean_ctor_set(x_625, 1, x_13); -return x_625; +x_627 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_627, 0, x_14); +lean_ctor_set(x_627, 1, x_13); +return x_627; } else { -lean_object* x_626; lean_object* x_627; -x_626 = lean_unsigned_to_nat(0u); -x_627 = lean_array_fget(x_545, x_626); -if (lean_obj_tag(x_627) == 4) +if (lean_obj_tag(x_621) == 0) { -lean_object* x_628; -x_628 = lean_ctor_get(x_627, 0); -lean_inc(x_628); -if (lean_obj_tag(x_628) == 1) -{ -lean_object* x_629; -x_629 = lean_ctor_get(x_628, 0); -lean_inc(x_629); -if (lean_obj_tag(x_629) == 0) -{ -lean_object* x_630; lean_object* x_631; lean_object* x_632; uint8_t x_633; -x_630 = lean_ctor_get(x_627, 1); -lean_inc(x_630); -lean_dec(x_627); -x_631 = lean_ctor_get(x_628, 1); -lean_inc(x_631); -lean_dec(x_628); -x_632 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_633 = lean_string_dec_eq(x_631, x_632); -if (x_633 == 0) -{ -lean_object* x_634; uint8_t x_635; -x_634 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_635 = lean_string_dec_eq(x_631, x_634); -lean_dec(x_631); -if (x_635 == 0) -{ -lean_object* x_636; -lean_dec(x_630); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); -lean_ctor_set(x_14, 0, x_2); -x_636 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_636, 0, x_14); -lean_ctor_set(x_636, 1, x_13); -return x_636; -} -else -{ -if (lean_obj_tag(x_630) == 0) -{ -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_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_free_object(x_14); -x_637 = lean_unsigned_to_nat(2u); -x_638 = lean_array_fget(x_545, x_637); -x_639 = lean_unsigned_to_nat(3u); -x_640 = lean_array_fget(x_545, x_639); -lean_dec(x_545); -x_641 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36; -x_642 = l_Lean_mkApp3(x_641, x_638, x_640, x_3); -x_643 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_642, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_628 = lean_unsigned_to_nat(2u); +x_629 = lean_array_fget(x_590, x_628); +x_630 = lean_unsigned_to_nat(3u); +x_631 = lean_array_fget(x_590, x_630); +lean_dec(x_590); +x_632 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__30; +x_633 = l_Lean_mkApp3(x_632, x_629, x_631, x_3); +x_634 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_633, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_634; +} +else +{ +lean_object* x_635; +lean_dec(x_621); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_617); +lean_ctor_set(x_14, 0, x_2); +x_635 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_635, 0, x_14); +lean_ctor_set(x_635, 1, x_13); +return x_635; +} +} +} +else +{ +lean_dec(x_622); +if (lean_obj_tag(x_621) == 0) +{ +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_free_object(x_14); +x_636 = lean_unsigned_to_nat(2u); +x_637 = lean_array_fget(x_590, x_636); +x_638 = lean_unsigned_to_nat(3u); +x_639 = lean_array_fget(x_590, x_638); +lean_dec(x_590); +x_640 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33; +x_641 = l_Lean_mkApp3(x_640, x_637, x_639, x_3); +x_642 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_641, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_642; +} +else +{ +lean_object* x_643; +lean_dec(x_621); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_617); +lean_ctor_set(x_14, 0, x_2); +x_643 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_643, 0, x_14); +lean_ctor_set(x_643, 1, x_13); return x_643; } +} +} else { lean_object* x_644; -lean_dec(x_630); -lean_dec(x_545); +lean_dec(x_620); +lean_dec(x_619); +lean_dec(x_618); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -21776,7 +23819,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); +lean_ctor_set(x_14, 1, x_617); lean_ctor_set(x_14, 0, x_2); x_644 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_644, 0, x_14); @@ -21784,1345 +23827,105 @@ lean_ctor_set(x_644, 1, x_13); return x_644; } } +else +{ +lean_object* x_645; +lean_dec(x_619); +lean_dec(x_618); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_617); +lean_ctor_set(x_14, 0, x_2); +x_645 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_645, 0, x_14); +lean_ctor_set(x_645, 1, x_13); +return x_645; +} } else { -lean_dec(x_631); -if (lean_obj_tag(x_630) == 0) +lean_object* x_646; +lean_dec(x_618); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_617); +lean_ctor_set(x_14, 0, x_2); +x_646 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_646, 0, x_14); +lean_ctor_set(x_646, 1, x_13); +return x_646; +} +} +} +} +} +else { -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_647; uint8_t x_648; +lean_dec(x_593); +lean_dec(x_590); +x_647 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; +x_648 = lean_string_dec_eq(x_592, x_647); +lean_dec(x_592); +if (x_648 == 0) +{ +lean_object* x_649; lean_object* x_650; +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_6); +lean_dec(x_3); +x_649 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_649); +lean_ctor_set(x_14, 0, x_2); +x_650 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_650, 0, x_14); +lean_ctor_set(x_650, 1, x_13); +return x_650; +} +else +{ +lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_free_object(x_14); -x_645 = lean_unsigned_to_nat(2u); -x_646 = lean_array_fget(x_545, x_645); -x_647 = lean_unsigned_to_nat(3u); -x_648 = lean_array_fget(x_545, x_647); -lean_dec(x_545); -x_649 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__38; -x_650 = l_Lean_mkApp3(x_649, x_646, x_648, x_3); -x_651 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_650, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_651; -} -else -{ -lean_object* x_652; -lean_dec(x_630); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); -lean_ctor_set(x_14, 0, x_2); -x_652 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_652, 0, x_14); -lean_ctor_set(x_652, 1, x_13); -return x_652; -} -} -} -else -{ -lean_object* x_653; -lean_dec(x_629); -lean_dec(x_628); -lean_dec(x_627); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); -lean_ctor_set(x_14, 0, x_2); -x_653 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_653, 0, x_14); -lean_ctor_set(x_653, 1, x_13); -return x_653; -} -} -else -{ -lean_object* x_654; -lean_dec(x_628); -lean_dec(x_627); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); -lean_ctor_set(x_14, 0, x_2); -x_654 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_654, 0, x_14); -lean_ctor_set(x_654, 1, x_13); -return x_654; -} -} -else -{ -lean_object* x_655; -lean_dec(x_627); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_626); -lean_ctor_set(x_14, 0, x_2); -x_655 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_655, 0, x_14); -lean_ctor_set(x_655, 1, x_13); -return x_655; -} -} -} -} -} -else -{ -lean_object* x_656; uint8_t x_657; -lean_dec(x_548); -x_656 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39; -x_657 = lean_string_dec_eq(x_547, x_656); -lean_dec(x_547); -if (x_657 == 0) -{ -lean_object* x_658; lean_object* x_659; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_658 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_658); -lean_ctor_set(x_14, 0, x_2); -x_659 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_659, 0, x_14); -lean_ctor_set(x_659, 1, x_13); -return x_659; -} -else -{ -lean_object* x_660; lean_object* x_661; uint8_t x_662; -x_660 = lean_array_get_size(x_545); -x_661 = lean_unsigned_to_nat(4u); -x_662 = lean_nat_dec_eq(x_660, x_661); -lean_dec(x_660); -if (x_662 == 0) -{ -lean_object* x_663; lean_object* x_664; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_663 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_663); -lean_ctor_set(x_14, 0, x_2); -x_664 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_664, 0, x_14); -lean_ctor_set(x_664, 1, x_13); -return x_664; -} -else -{ -lean_object* x_665; lean_object* x_666; -x_665 = lean_unsigned_to_nat(0u); -x_666 = lean_array_fget(x_545, x_665); -if (lean_obj_tag(x_666) == 4) -{ -lean_object* x_667; -x_667 = lean_ctor_get(x_666, 0); -lean_inc(x_667); -if (lean_obj_tag(x_667) == 1) -{ -lean_object* x_668; -x_668 = lean_ctor_get(x_667, 0); -lean_inc(x_668); -if (lean_obj_tag(x_668) == 0) -{ -lean_object* x_669; lean_object* x_670; lean_object* x_671; uint8_t x_672; -x_669 = lean_ctor_get(x_666, 1); -lean_inc(x_669); -lean_dec(x_666); -x_670 = lean_ctor_get(x_667, 1); -lean_inc(x_670); -lean_dec(x_667); -x_671 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_672 = lean_string_dec_eq(x_670, x_671); -if (x_672 == 0) -{ -lean_object* x_673; uint8_t x_674; -x_673 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_674 = lean_string_dec_eq(x_670, x_673); -lean_dec(x_670); -if (x_674 == 0) -{ -lean_object* x_675; -lean_dec(x_669); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_675 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_675, 0, x_14); -lean_ctor_set(x_675, 1, x_13); -return x_675; -} -else -{ -if (lean_obj_tag(x_669) == 0) -{ -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_free_object(x_14); -x_676 = lean_unsigned_to_nat(2u); -x_677 = lean_array_fget(x_545, x_676); -x_678 = lean_unsigned_to_nat(3u); -x_679 = lean_array_fget(x_545, x_678); -lean_dec(x_545); -x_680 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__42; -x_681 = l_Lean_mkApp3(x_680, x_677, x_679, x_3); -x_682 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_681, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_682; -} -else -{ -lean_object* x_683; -lean_dec(x_669); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_683 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_683, 0, x_14); -lean_ctor_set(x_683, 1, x_13); -return x_683; -} -} -} -else -{ -lean_dec(x_670); -if (lean_obj_tag(x_669) == 0) -{ -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_free_object(x_14); -x_684 = lean_unsigned_to_nat(2u); -x_685 = lean_array_fget(x_545, x_684); -x_686 = lean_unsigned_to_nat(3u); -x_687 = lean_array_fget(x_545, x_686); -lean_dec(x_545); -x_688 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; -x_689 = l_Lean_mkApp3(x_688, x_685, x_687, x_3); -x_690 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_689, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_690; -} -else -{ -lean_object* x_691; -lean_dec(x_669); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_691 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_691, 0, x_14); -lean_ctor_set(x_691, 1, x_13); -return x_691; -} -} -} -else -{ -lean_object* x_692; -lean_dec(x_668); -lean_dec(x_667); -lean_dec(x_666); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_692 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_692, 0, x_14); -lean_ctor_set(x_692, 1, x_13); -return x_692; -} -} -else -{ -lean_object* x_693; -lean_dec(x_667); -lean_dec(x_666); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_693 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_693, 0, x_14); -lean_ctor_set(x_693, 1, x_13); -return x_693; -} -} -else -{ -lean_object* x_694; -lean_dec(x_666); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_665); -lean_ctor_set(x_14, 0, x_2); -x_694 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_694, 0, x_14); -lean_ctor_set(x_694, 1, x_13); -return x_694; -} -} -} -} -} -else -{ -lean_object* x_695; uint8_t x_696; -lean_dec(x_548); -x_695 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; -x_696 = lean_string_dec_eq(x_547, x_695); -lean_dec(x_547); -if (x_696 == 0) -{ -lean_object* x_697; lean_object* x_698; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_697 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_697); -lean_ctor_set(x_14, 0, x_2); -x_698 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_698, 0, x_14); -lean_ctor_set(x_698, 1, x_13); -return x_698; -} -else -{ -lean_object* x_699; lean_object* x_700; uint8_t x_701; -x_699 = lean_array_get_size(x_545); -x_700 = lean_unsigned_to_nat(4u); -x_701 = lean_nat_dec_eq(x_699, x_700); -lean_dec(x_699); -if (x_701 == 0) -{ -lean_object* x_702; lean_object* x_703; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_702 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_702); -lean_ctor_set(x_14, 0, x_2); -x_703 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_703, 0, x_14); -lean_ctor_set(x_703, 1, x_13); -return x_703; -} -else -{ -lean_object* x_704; lean_object* x_705; -x_704 = lean_unsigned_to_nat(0u); -x_705 = lean_array_fget(x_545, x_704); -if (lean_obj_tag(x_705) == 4) -{ -lean_object* x_706; -x_706 = lean_ctor_get(x_705, 0); -lean_inc(x_706); -if (lean_obj_tag(x_706) == 1) -{ -lean_object* x_707; -x_707 = lean_ctor_get(x_706, 0); -lean_inc(x_707); -if (lean_obj_tag(x_707) == 0) -{ -lean_object* x_708; lean_object* x_709; lean_object* x_710; uint8_t x_711; -x_708 = lean_ctor_get(x_705, 1); -lean_inc(x_708); -lean_dec(x_705); -x_709 = lean_ctor_get(x_706, 1); -lean_inc(x_709); -lean_dec(x_706); -x_710 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_711 = lean_string_dec_eq(x_709, x_710); -if (x_711 == 0) -{ -lean_object* x_712; uint8_t x_713; -x_712 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_713 = lean_string_dec_eq(x_709, x_712); -lean_dec(x_709); -if (x_713 == 0) -{ -lean_object* x_714; -lean_dec(x_708); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_714 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_714, 0, x_14); -lean_ctor_set(x_714, 1, x_13); -return x_714; -} -else -{ -if (lean_obj_tag(x_708) == 0) -{ -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_free_object(x_14); -x_715 = lean_unsigned_to_nat(2u); -x_716 = lean_array_fget(x_545, x_715); -x_717 = lean_unsigned_to_nat(3u); -x_718 = lean_array_fget(x_545, x_717); -lean_dec(x_545); -x_719 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__47; -x_720 = l_Lean_mkApp3(x_719, x_716, x_718, x_3); -x_721 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_720, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_721; -} -else -{ -lean_object* x_722; -lean_dec(x_708); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_722 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_722, 0, x_14); -lean_ctor_set(x_722, 1, x_13); -return x_722; -} -} -} -else -{ -lean_dec(x_709); -if (lean_obj_tag(x_708) == 0) -{ -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_free_object(x_14); -x_723 = lean_unsigned_to_nat(2u); -x_724 = lean_array_fget(x_545, x_723); -x_725 = lean_unsigned_to_nat(3u); -x_726 = lean_array_fget(x_545, x_725); -lean_dec(x_545); -x_727 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50; -x_728 = l_Lean_mkApp3(x_727, x_724, x_726, x_3); -x_729 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_728, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_729; -} -else -{ -lean_object* x_730; -lean_dec(x_708); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_730 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_730, 0, x_14); -lean_ctor_set(x_730, 1, x_13); -return x_730; -} -} -} -else -{ -lean_object* x_731; -lean_dec(x_707); -lean_dec(x_706); -lean_dec(x_705); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_731 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_731, 0, x_14); -lean_ctor_set(x_731, 1, x_13); -return x_731; -} -} -else -{ -lean_object* x_732; -lean_dec(x_706); -lean_dec(x_705); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_732 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_732, 0, x_14); -lean_ctor_set(x_732, 1, x_13); -return x_732; -} -} -else -{ -lean_object* x_733; -lean_dec(x_705); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_704); -lean_ctor_set(x_14, 0, x_2); -x_733 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_733, 0, x_14); -lean_ctor_set(x_733, 1, x_13); -return x_733; -} -} -} -} -} -else -{ -lean_object* x_734; uint8_t x_735; -lean_dec(x_548); -x_734 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; -x_735 = lean_string_dec_eq(x_547, x_734); -lean_dec(x_547); -if (x_735 == 0) -{ -lean_object* x_736; lean_object* x_737; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_736 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_736); -lean_ctor_set(x_14, 0, x_2); -x_737 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_737, 0, x_14); -lean_ctor_set(x_737, 1, x_13); -return x_737; -} -else -{ -lean_object* x_738; lean_object* x_739; uint8_t x_740; -x_738 = lean_array_get_size(x_545); -x_739 = lean_unsigned_to_nat(4u); -x_740 = lean_nat_dec_eq(x_738, x_739); -lean_dec(x_738); -if (x_740 == 0) -{ -lean_object* x_741; lean_object* x_742; -lean_dec(x_545); -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_6); -lean_dec(x_3); -x_741 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_741); -lean_ctor_set(x_14, 0, x_2); -x_742 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_742, 0, x_14); -lean_ctor_set(x_742, 1, x_13); -return x_742; -} -else -{ -lean_object* x_743; lean_object* x_744; -x_743 = lean_unsigned_to_nat(0u); -x_744 = lean_array_fget(x_545, x_743); -if (lean_obj_tag(x_744) == 4) -{ -lean_object* x_745; -x_745 = lean_ctor_get(x_744, 0); -lean_inc(x_745); -if (lean_obj_tag(x_745) == 1) -{ -lean_object* x_746; -x_746 = lean_ctor_get(x_745, 0); -lean_inc(x_746); -if (lean_obj_tag(x_746) == 0) -{ -lean_object* x_747; lean_object* x_748; lean_object* x_749; uint8_t x_750; -x_747 = lean_ctor_get(x_744, 1); -lean_inc(x_747); -lean_dec(x_744); -x_748 = lean_ctor_get(x_745, 1); -lean_inc(x_748); -lean_dec(x_745); -x_749 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_750 = lean_string_dec_eq(x_748, x_749); -if (x_750 == 0) -{ -lean_object* x_751; uint8_t x_752; -x_751 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_752 = lean_string_dec_eq(x_748, x_751); -lean_dec(x_748); -if (x_752 == 0) -{ -lean_object* x_753; -lean_dec(x_747); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_753 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_753, 0, x_14); -lean_ctor_set(x_753, 1, x_13); -return x_753; -} -else -{ -if (lean_obj_tag(x_747) == 0) -{ -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_free_object(x_14); -x_754 = lean_unsigned_to_nat(2u); -x_755 = lean_array_fget(x_545, x_754); -x_756 = lean_unsigned_to_nat(3u); -x_757 = lean_array_fget(x_545, x_756); -lean_dec(x_545); -x_758 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53; -x_759 = l_Lean_mkApp3(x_758, x_755, x_757, x_3); -x_760 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_759, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_760; -} -else -{ -lean_object* x_761; -lean_dec(x_747); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_761 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_761, 0, x_14); -lean_ctor_set(x_761, 1, x_13); -return x_761; -} -} -} -else -{ -lean_dec(x_748); -if (lean_obj_tag(x_747) == 0) -{ -lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; -x_762 = lean_unsigned_to_nat(2u); -x_763 = lean_array_fget(x_545, x_762); -x_764 = lean_unsigned_to_nat(3u); -x_765 = lean_array_fget(x_545, x_764); -lean_dec(x_545); -lean_inc(x_763); -x_766 = l_Lean_Expr_int_x3f(x_763); -if (lean_obj_tag(x_766) == 0) -{ -lean_object* x_767; lean_object* x_768; lean_object* x_769; -lean_free_object(x_14); -x_767 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_768 = l_Lean_mkApp3(x_767, x_765, x_763, x_3); -x_769 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_768, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_769; -} -else -{ -lean_object* x_770; lean_object* x_771; uint8_t x_772; -x_770 = lean_ctor_get(x_766, 0); -lean_inc(x_770); -lean_dec(x_766); -x_771 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; -x_772 = lean_int_dec_lt(x_770, x_771); -if (x_772 == 0) -{ -lean_object* x_773; uint8_t x_774; -x_773 = lean_nat_abs(x_770); -lean_dec(x_770); -x_774 = lean_nat_dec_eq(x_773, x_743); -lean_dec(x_773); -if (x_774 == 0) -{ -lean_object* x_775; lean_object* x_776; lean_object* x_777; -lean_free_object(x_14); -x_775 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_776 = l_Lean_mkApp3(x_775, x_765, x_763, x_3); -x_777 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_776, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_777; -} -else -{ -lean_object* x_778; -lean_dec(x_763); -x_778 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality(x_2, x_3, x_765, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_778) == 0) -{ -uint8_t x_779; -x_779 = !lean_is_exclusive(x_778); -if (x_779 == 0) -{ -lean_object* x_780; lean_object* x_781; -x_780 = lean_ctor_get(x_778, 0); -x_781 = lean_unsigned_to_nat(1u); -lean_ctor_set(x_14, 1, x_781); -lean_ctor_set(x_14, 0, x_780); -lean_ctor_set(x_778, 0, x_14); -return x_778; -} -else -{ -lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; -x_782 = lean_ctor_get(x_778, 0); -x_783 = lean_ctor_get(x_778, 1); -lean_inc(x_783); -lean_inc(x_782); -lean_dec(x_778); -x_784 = lean_unsigned_to_nat(1u); -lean_ctor_set(x_14, 1, x_784); -lean_ctor_set(x_14, 0, x_782); -x_785 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_785, 0, x_14); -lean_ctor_set(x_785, 1, x_783); -return x_785; -} -} -else -{ -uint8_t x_786; -lean_free_object(x_14); -x_786 = !lean_is_exclusive(x_778); -if (x_786 == 0) -{ -return x_778; -} -else -{ -lean_object* x_787; lean_object* x_788; lean_object* x_789; -x_787 = lean_ctor_get(x_778, 0); -x_788 = lean_ctor_get(x_778, 1); -lean_inc(x_788); -lean_inc(x_787); -lean_dec(x_778); -x_789 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_789, 0, x_787); -lean_ctor_set(x_789, 1, x_788); -return x_789; -} -} -} -} -else -{ -lean_object* x_790; lean_object* x_791; lean_object* x_792; -lean_dec(x_770); -lean_free_object(x_14); -x_790 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_791 = l_Lean_mkApp3(x_790, x_765, x_763, x_3); -x_792 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_791, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_792; -} -} -} -else -{ -lean_object* x_793; -lean_dec(x_747); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_793 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_793, 0, x_14); -lean_ctor_set(x_793, 1, x_13); -return x_793; -} -} -} -else -{ -lean_object* x_794; -lean_dec(x_746); -lean_dec(x_745); -lean_dec(x_744); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_794 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_794, 0, x_14); -lean_ctor_set(x_794, 1, x_13); -return x_794; -} -} -else -{ -lean_object* x_795; -lean_dec(x_745); -lean_dec(x_744); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_795 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_795, 0, x_14); -lean_ctor_set(x_795, 1, x_13); -return x_795; -} -} -else -{ -lean_object* x_796; -lean_dec(x_744); -lean_dec(x_545); -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_6); -lean_dec(x_3); -lean_ctor_set(x_14, 1, x_743); -lean_ctor_set(x_14, 0, x_2); -x_796 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_796, 0, x_14); -lean_ctor_set(x_796, 1, x_13); -return x_796; -} -} -} -} -} -else -{ -lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; uint8_t x_801; -x_797 = lean_ctor_get(x_14, 1); -lean_inc(x_797); -lean_dec(x_14); -x_798 = lean_ctor_get(x_15, 1); -lean_inc(x_798); -lean_dec(x_15); -x_799 = lean_ctor_get(x_16, 1); -lean_inc(x_799); -lean_dec(x_16); -x_800 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__27; -x_801 = lean_string_dec_eq(x_799, x_800); -if (x_801 == 0) -{ -lean_object* x_802; uint8_t x_803; -x_802 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__26; -x_803 = lean_string_dec_eq(x_799, x_802); -if (x_803 == 0) -{ -lean_object* x_804; uint8_t x_805; -x_804 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__23; -x_805 = lean_string_dec_eq(x_799, x_804); -if (x_805 == 0) -{ -lean_object* x_806; uint8_t x_807; -x_806 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__24; -x_807 = lean_string_dec_eq(x_799, x_806); -if (x_807 == 0) -{ -lean_object* x_808; uint8_t x_809; -x_808 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__10; -x_809 = lean_string_dec_eq(x_799, x_808); -if (x_809 == 0) -{ -lean_object* x_810; uint8_t x_811; -x_810 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; -x_811 = lean_string_dec_eq(x_799, x_810); -lean_dec(x_799); -if (x_811 == 0) -{ -lean_object* x_812; lean_object* x_813; lean_object* x_814; -lean_dec(x_798); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_812 = lean_unsigned_to_nat(0u); -x_813 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_813, 0, x_2); -lean_ctor_set(x_813, 1, x_812); -x_814 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_814, 0, x_813); -lean_ctor_set(x_814, 1, x_13); -return x_814; -} -else -{ -lean_object* x_815; uint8_t x_816; -x_815 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; -x_816 = lean_string_dec_eq(x_798, x_815); -lean_dec(x_798); -if (x_816 == 0) -{ -lean_object* x_817; lean_object* x_818; lean_object* x_819; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_817 = lean_unsigned_to_nat(0u); -x_818 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_818, 0, x_2); -lean_ctor_set(x_818, 1, x_817); -x_819 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_819, 0, x_818); -lean_ctor_set(x_819, 1, x_13); -return x_819; -} -else -{ -lean_object* x_820; lean_object* x_821; uint8_t x_822; -x_820 = lean_array_get_size(x_797); -x_821 = lean_unsigned_to_nat(4u); -x_822 = lean_nat_dec_eq(x_820, x_821); -lean_dec(x_820); -if (x_822 == 0) -{ -lean_object* x_823; lean_object* x_824; lean_object* x_825; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_823 = lean_unsigned_to_nat(0u); -x_824 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_824, 0, x_2); -lean_ctor_set(x_824, 1, x_823); -x_825 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_825, 0, x_824); -lean_ctor_set(x_825, 1, x_13); -return x_825; -} -else -{ -lean_object* x_826; lean_object* x_827; -x_826 = lean_unsigned_to_nat(0u); -x_827 = lean_array_fget(x_797, x_826); -if (lean_obj_tag(x_827) == 4) -{ -lean_object* x_828; -x_828 = lean_ctor_get(x_827, 0); -lean_inc(x_828); -if (lean_obj_tag(x_828) == 1) -{ -lean_object* x_829; -x_829 = lean_ctor_get(x_828, 0); -lean_inc(x_829); -if (lean_obj_tag(x_829) == 0) -{ -lean_object* x_830; lean_object* x_831; lean_object* x_832; uint8_t x_833; -x_830 = lean_ctor_get(x_827, 1); -lean_inc(x_830); -lean_dec(x_827); -x_831 = lean_ctor_get(x_828, 1); -lean_inc(x_831); -lean_dec(x_828); -x_832 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_833 = lean_string_dec_eq(x_831, x_832); -if (x_833 == 0) -{ -lean_object* x_834; uint8_t x_835; -x_834 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_835 = lean_string_dec_eq(x_831, x_834); -lean_dec(x_831); -if (x_835 == 0) -{ -lean_object* x_836; lean_object* x_837; -lean_dec(x_830); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_836 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_836, 0, x_2); -lean_ctor_set(x_836, 1, x_826); -x_837 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_837, 0, x_836); -lean_ctor_set(x_837, 1, x_13); -return x_837; -} -else -{ -if (lean_obj_tag(x_830) == 0) -{ -lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; -x_838 = lean_unsigned_to_nat(2u); -x_839 = lean_array_fget(x_797, x_838); -x_840 = lean_unsigned_to_nat(3u); -x_841 = lean_array_fget(x_797, x_840); -lean_dec(x_797); -x_842 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; -x_843 = l_Lean_mkApp3(x_842, x_839, x_841, x_3); -x_844 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_843, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_844; -} -else -{ -lean_object* x_845; lean_object* x_846; -lean_dec(x_830); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_845 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_845, 0, x_2); -lean_ctor_set(x_845, 1, x_826); -x_846 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_846, 0, x_845); -lean_ctor_set(x_846, 1, x_13); -return x_846; -} -} -} -else -{ -lean_dec(x_831); -if (lean_obj_tag(x_830) == 0) -{ -lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; -x_847 = lean_unsigned_to_nat(2u); -x_848 = lean_array_fget(x_797, x_847); -x_849 = lean_unsigned_to_nat(3u); -x_850 = lean_array_fget(x_797, x_849); -lean_dec(x_797); -x_851 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__30; -x_852 = l_Lean_mkApp3(x_851, x_848, x_850, x_3); -x_853 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_852, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_853; -} -else -{ -lean_object* x_854; lean_object* x_855; -lean_dec(x_830); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_854 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_854, 0, x_2); -lean_ctor_set(x_854, 1, x_826); -x_855 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_855, 0, x_854); -lean_ctor_set(x_855, 1, x_13); -return x_855; -} -} -} -else -{ -lean_object* x_856; lean_object* x_857; -lean_dec(x_829); -lean_dec(x_828); -lean_dec(x_827); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_856 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_856, 0, x_2); -lean_ctor_set(x_856, 1, x_826); -x_857 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_857, 0, x_856); -lean_ctor_set(x_857, 1, x_13); -return x_857; -} -} -else -{ -lean_object* x_858; lean_object* x_859; -lean_dec(x_828); -lean_dec(x_827); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_858 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_858, 0, x_2); -lean_ctor_set(x_858, 1, x_826); -x_859 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_859, 0, x_858); -lean_ctor_set(x_859, 1, x_13); -return x_859; -} -} -else -{ -lean_object* x_860; lean_object* x_861; -lean_dec(x_827); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_860 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_860, 0, x_2); -lean_ctor_set(x_860, 1, x_826); -x_861 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_861, 0, x_860); -lean_ctor_set(x_861, 1, x_13); -return x_861; -} -} -} -} -} -else -{ -lean_object* x_862; uint8_t x_863; -lean_dec(x_799); -lean_dec(x_797); -x_862 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__35; -x_863 = lean_string_dec_eq(x_798, x_862); -lean_dec(x_798); -if (x_863 == 0) -{ -lean_object* x_864; lean_object* x_865; lean_object* x_866; -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_6); -lean_dec(x_3); -x_864 = lean_unsigned_to_nat(0u); -x_865 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_865, 0, x_2); -lean_ctor_set(x_865, 1, x_864); -x_866 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_866, 0, x_865); -lean_ctor_set(x_866, 1, x_13); -return x_866; -} -else -{ -lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; -x_867 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; -x_868 = lean_array_push(x_867, x_3); -x_869 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__32; +x_651 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_652 = lean_array_push(x_651, x_3); +x_653 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__35; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_870 = l_Lean_Meta_mkAppM(x_869, x_868, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_870) == 0) +x_654 = l_Lean_Meta_mkAppM(x_653, x_652, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_654) == 0) { -lean_object* x_871; lean_object* x_872; lean_object* x_873; -x_871 = lean_ctor_get(x_870, 0); -lean_inc(x_871); -x_872 = lean_ctor_get(x_870, 1); -lean_inc(x_872); -lean_dec(x_870); -x_873 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_871, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_872); -return x_873; +lean_object* x_655; lean_object* x_656; lean_object* x_657; +x_655 = lean_ctor_get(x_654, 0); +lean_inc(x_655); +x_656 = lean_ctor_get(x_654, 1); +lean_inc(x_656); +lean_dec(x_654); +x_657 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_655, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_656); +return x_657; } else { -lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; +uint8_t x_658; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23131,41 +23934,39 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_2); -x_874 = lean_ctor_get(x_870, 0); -lean_inc(x_874); -x_875 = lean_ctor_get(x_870, 1); -lean_inc(x_875); -if (lean_is_exclusive(x_870)) { - lean_ctor_release(x_870, 0); - lean_ctor_release(x_870, 1); - x_876 = x_870; -} else { - lean_dec_ref(x_870); - x_876 = lean_box(0); +x_658 = !lean_is_exclusive(x_654); +if (x_658 == 0) +{ +return x_654; } -if (lean_is_scalar(x_876)) { - x_877 = lean_alloc_ctor(1, 2, 0); -} else { - x_877 = x_876; +else +{ +lean_object* x_659; lean_object* x_660; lean_object* x_661; +x_659 = lean_ctor_get(x_654, 0); +x_660 = lean_ctor_get(x_654, 1); +lean_inc(x_660); +lean_inc(x_659); +lean_dec(x_654); +x_661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_661, 0, x_659); +lean_ctor_set(x_661, 1, x_660); +return x_661; } -lean_ctor_set(x_877, 0, x_874); -lean_ctor_set(x_877, 1, x_875); -return x_877; } } } } else { -lean_object* x_878; uint8_t x_879; -lean_dec(x_799); -x_878 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33; -x_879 = lean_string_dec_eq(x_798, x_878); -lean_dec(x_798); -if (x_879 == 0) +lean_object* x_662; uint8_t x_663; +lean_dec(x_593); +x_662 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36; +x_663 = lean_string_dec_eq(x_592, x_662); +lean_dec(x_592); +if (x_663 == 0) { -lean_object* x_880; lean_object* x_881; lean_object* x_882; -lean_dec(x_797); +lean_object* x_664; lean_object* x_665; +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23174,80 +23975,1495 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_880 = lean_unsigned_to_nat(0u); -x_881 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_881, 0, x_2); -lean_ctor_set(x_881, 1, x_880); -x_882 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_882, 0, x_881); -lean_ctor_set(x_882, 1, x_13); +x_664 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_664); +lean_ctor_set(x_14, 0, x_2); +x_665 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_665, 0, x_14); +lean_ctor_set(x_665, 1, x_13); +return x_665; +} +else +{ +lean_object* x_666; lean_object* x_667; uint8_t x_668; +x_666 = lean_array_get_size(x_590); +x_667 = lean_unsigned_to_nat(4u); +x_668 = lean_nat_dec_eq(x_666, x_667); +lean_dec(x_666); +if (x_668 == 0) +{ +lean_object* x_669; lean_object* x_670; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_669 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_669); +lean_ctor_set(x_14, 0, x_2); +x_670 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_670, 0, x_14); +lean_ctor_set(x_670, 1, x_13); +return x_670; +} +else +{ +lean_object* x_671; lean_object* x_672; +x_671 = lean_unsigned_to_nat(0u); +x_672 = lean_array_fget(x_590, x_671); +switch (lean_obj_tag(x_672)) { +case 4: +{ +lean_object* x_673; +x_673 = lean_ctor_get(x_672, 0); +lean_inc(x_673); +if (lean_obj_tag(x_673) == 1) +{ +lean_object* x_674; +x_674 = lean_ctor_get(x_673, 0); +lean_inc(x_674); +if (lean_obj_tag(x_674) == 0) +{ +lean_object* x_675; lean_object* x_676; lean_object* x_677; uint8_t x_678; +x_675 = lean_ctor_get(x_672, 1); +lean_inc(x_675); +lean_dec(x_672); +x_676 = lean_ctor_get(x_673, 1); +lean_inc(x_676); +lean_dec(x_673); +x_677 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_678 = lean_string_dec_eq(x_676, x_677); +if (x_678 == 0) +{ +lean_object* x_679; uint8_t x_680; +x_679 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_680 = lean_string_dec_eq(x_676, x_679); +lean_dec(x_676); +if (x_680 == 0) +{ +lean_object* x_681; +lean_dec(x_675); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_681 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_681, 0, x_14); +lean_ctor_set(x_681, 1, x_13); +return x_681; +} +else +{ +if (lean_obj_tag(x_675) == 0) +{ +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_free_object(x_14); +x_682 = lean_unsigned_to_nat(2u); +x_683 = lean_array_fget(x_590, x_682); +x_684 = lean_unsigned_to_nat(3u); +x_685 = lean_array_fget(x_590, x_684); +lean_dec(x_590); +x_686 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39; +x_687 = l_Lean_mkApp3(x_686, x_683, x_685, x_3); +x_688 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_687, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_688; +} +else +{ +lean_object* x_689; +lean_dec(x_675); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_689 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_689, 0, x_14); +lean_ctor_set(x_689, 1, x_13); +return x_689; +} +} +} +else +{ +lean_dec(x_676); +if (lean_obj_tag(x_675) == 0) +{ +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_free_object(x_14); +x_690 = lean_unsigned_to_nat(2u); +x_691 = lean_array_fget(x_590, x_690); +x_692 = lean_unsigned_to_nat(3u); +x_693 = lean_array_fget(x_590, x_692); +lean_dec(x_590); +x_694 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41; +x_695 = l_Lean_mkApp3(x_694, x_691, x_693, x_3); +x_696 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_695, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_696; +} +else +{ +lean_object* x_697; +lean_dec(x_675); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_697 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_697, 0, x_14); +lean_ctor_set(x_697, 1, x_13); +return x_697; +} +} +} +else +{ +lean_object* x_698; +lean_dec(x_674); +lean_dec(x_673); +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_698 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_698, 0, x_14); +lean_ctor_set(x_698, 1, x_13); +return x_698; +} +} +else +{ +lean_object* x_699; +lean_dec(x_673); +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_699 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_699, 0, x_14); +lean_ctor_set(x_699, 1, x_13); +return x_699; +} +} +case 5: +{ +lean_object* x_700; +x_700 = lean_ctor_get(x_672, 0); +lean_inc(x_700); +if (lean_obj_tag(x_700) == 4) +{ +lean_object* x_701; +x_701 = lean_ctor_get(x_700, 0); +lean_inc(x_701); +if (lean_obj_tag(x_701) == 1) +{ +lean_object* x_702; +x_702 = lean_ctor_get(x_701, 0); +lean_inc(x_702); +if (lean_obj_tag(x_702) == 0) +{ +lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; uint8_t x_707; +x_703 = lean_ctor_get(x_672, 1); +lean_inc(x_703); +lean_dec(x_672); +x_704 = lean_ctor_get(x_700, 1); +lean_inc(x_704); +lean_dec(x_700); +x_705 = lean_ctor_get(x_701, 1); +lean_inc(x_705); +lean_dec(x_701); +x_706 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_707 = lean_string_dec_eq(x_705, x_706); +lean_dec(x_705); +if (x_707 == 0) +{ +lean_object* x_708; +lean_dec(x_704); +lean_dec(x_703); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_708 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_708, 0, x_14); +lean_ctor_set(x_708, 1, x_13); +return x_708; +} +else +{ +if (lean_obj_tag(x_704) == 0) +{ +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_free_object(x_14); +x_709 = lean_unsigned_to_nat(2u); +x_710 = lean_array_fget(x_590, x_709); +x_711 = lean_unsigned_to_nat(3u); +x_712 = lean_array_fget(x_590, x_711); +lean_dec(x_590); +x_713 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; +x_714 = l_Lean_mkApp4(x_713, x_703, x_710, x_712, x_3); +x_715 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_714, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_715; +} +else +{ +lean_object* x_716; +lean_dec(x_704); +lean_dec(x_703); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_716 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_716, 0, x_14); +lean_ctor_set(x_716, 1, x_13); +return x_716; +} +} +} +else +{ +lean_object* x_717; +lean_dec(x_702); +lean_dec(x_701); +lean_dec(x_700); +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_717 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_717, 0, x_14); +lean_ctor_set(x_717, 1, x_13); +return x_717; +} +} +else +{ +lean_object* x_718; +lean_dec(x_701); +lean_dec(x_700); +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_718 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_718, 0, x_14); +lean_ctor_set(x_718, 1, x_13); +return x_718; +} +} +else +{ +lean_object* x_719; +lean_dec(x_700); +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_719 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_719, 0, x_14); +lean_ctor_set(x_719, 1, x_13); +return x_719; +} +} +default: +{ +lean_object* x_720; +lean_dec(x_672); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_671); +lean_ctor_set(x_14, 0, x_2); +x_720 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_720, 0, x_14); +lean_ctor_set(x_720, 1, x_13); +return x_720; +} +} +} +} +} +} +else +{ +lean_object* x_721; uint8_t x_722; +lean_dec(x_593); +x_721 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__45; +x_722 = lean_string_dec_eq(x_592, x_721); +lean_dec(x_592); +if (x_722 == 0) +{ +lean_object* x_723; lean_object* x_724; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_723 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_723); +lean_ctor_set(x_14, 0, x_2); +x_724 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_724, 0, x_14); +lean_ctor_set(x_724, 1, x_13); +return x_724; +} +else +{ +lean_object* x_725; lean_object* x_726; uint8_t x_727; +x_725 = lean_array_get_size(x_590); +x_726 = lean_unsigned_to_nat(4u); +x_727 = lean_nat_dec_eq(x_725, x_726); +lean_dec(x_725); +if (x_727 == 0) +{ +lean_object* x_728; lean_object* x_729; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_728 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_728); +lean_ctor_set(x_14, 0, x_2); +x_729 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_729, 0, x_14); +lean_ctor_set(x_729, 1, x_13); +return x_729; +} +else +{ +lean_object* x_730; lean_object* x_731; +x_730 = lean_unsigned_to_nat(0u); +x_731 = lean_array_fget(x_590, x_730); +switch (lean_obj_tag(x_731)) { +case 4: +{ +lean_object* x_732; +x_732 = lean_ctor_get(x_731, 0); +lean_inc(x_732); +if (lean_obj_tag(x_732) == 1) +{ +lean_object* x_733; +x_733 = lean_ctor_get(x_732, 0); +lean_inc(x_733); +if (lean_obj_tag(x_733) == 0) +{ +lean_object* x_734; lean_object* x_735; lean_object* x_736; uint8_t x_737; +x_734 = lean_ctor_get(x_731, 1); +lean_inc(x_734); +lean_dec(x_731); +x_735 = lean_ctor_get(x_732, 1); +lean_inc(x_735); +lean_dec(x_732); +x_736 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_737 = lean_string_dec_eq(x_735, x_736); +if (x_737 == 0) +{ +lean_object* x_738; uint8_t x_739; +x_738 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_739 = lean_string_dec_eq(x_735, x_738); +lean_dec(x_735); +if (x_739 == 0) +{ +lean_object* x_740; +lean_dec(x_734); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_740 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_740, 0, x_14); +lean_ctor_set(x_740, 1, x_13); +return x_740; +} +else +{ +if (lean_obj_tag(x_734) == 0) +{ +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_free_object(x_14); +x_741 = lean_unsigned_to_nat(2u); +x_742 = lean_array_fget(x_590, x_741); +x_743 = lean_unsigned_to_nat(3u); +x_744 = lean_array_fget(x_590, x_743); +lean_dec(x_590); +x_745 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48; +x_746 = l_Lean_mkApp3(x_745, x_742, x_744, x_3); +x_747 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_746, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_747; +} +else +{ +lean_object* x_748; +lean_dec(x_734); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_748 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_748, 0, x_14); +lean_ctor_set(x_748, 1, x_13); +return x_748; +} +} +} +else +{ +lean_dec(x_735); +if (lean_obj_tag(x_734) == 0) +{ +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_free_object(x_14); +x_749 = lean_unsigned_to_nat(2u); +x_750 = lean_array_fget(x_590, x_749); +x_751 = lean_unsigned_to_nat(3u); +x_752 = lean_array_fget(x_590, x_751); +lean_dec(x_590); +x_753 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50; +x_754 = l_Lean_mkApp3(x_753, x_750, x_752, x_3); +x_755 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_754, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_755; +} +else +{ +lean_object* x_756; +lean_dec(x_734); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_756 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_756, 0, x_14); +lean_ctor_set(x_756, 1, x_13); +return x_756; +} +} +} +else +{ +lean_object* x_757; +lean_dec(x_733); +lean_dec(x_732); +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_757 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_757, 0, x_14); +lean_ctor_set(x_757, 1, x_13); +return x_757; +} +} +else +{ +lean_object* x_758; +lean_dec(x_732); +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_758 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_758, 0, x_14); +lean_ctor_set(x_758, 1, x_13); +return x_758; +} +} +case 5: +{ +lean_object* x_759; +x_759 = lean_ctor_get(x_731, 0); +lean_inc(x_759); +if (lean_obj_tag(x_759) == 4) +{ +lean_object* x_760; +x_760 = lean_ctor_get(x_759, 0); +lean_inc(x_760); +if (lean_obj_tag(x_760) == 1) +{ +lean_object* x_761; +x_761 = lean_ctor_get(x_760, 0); +lean_inc(x_761); +if (lean_obj_tag(x_761) == 0) +{ +lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; uint8_t x_766; +x_762 = lean_ctor_get(x_731, 1); +lean_inc(x_762); +lean_dec(x_731); +x_763 = lean_ctor_get(x_759, 1); +lean_inc(x_763); +lean_dec(x_759); +x_764 = lean_ctor_get(x_760, 1); +lean_inc(x_764); +lean_dec(x_760); +x_765 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_766 = lean_string_dec_eq(x_764, x_765); +lean_dec(x_764); +if (x_766 == 0) +{ +lean_object* x_767; +lean_dec(x_763); +lean_dec(x_762); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_767 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_767, 0, x_14); +lean_ctor_set(x_767, 1, x_13); +return x_767; +} +else +{ +if (lean_obj_tag(x_763) == 0) +{ +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_free_object(x_14); +x_768 = lean_unsigned_to_nat(2u); +x_769 = lean_array_fget(x_590, x_768); +x_770 = lean_unsigned_to_nat(3u); +x_771 = lean_array_fget(x_590, x_770); +lean_dec(x_590); +x_772 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53; +x_773 = l_Lean_mkApp4(x_772, x_762, x_769, x_771, x_3); +x_774 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_773, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_774; +} +else +{ +lean_object* x_775; +lean_dec(x_763); +lean_dec(x_762); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_775 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_775, 0, x_14); +lean_ctor_set(x_775, 1, x_13); +return x_775; +} +} +} +else +{ +lean_object* x_776; +lean_dec(x_761); +lean_dec(x_760); +lean_dec(x_759); +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_776 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_776, 0, x_14); +lean_ctor_set(x_776, 1, x_13); +return x_776; +} +} +else +{ +lean_object* x_777; +lean_dec(x_760); +lean_dec(x_759); +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_777 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_777, 0, x_14); +lean_ctor_set(x_777, 1, x_13); +return x_777; +} +} +else +{ +lean_object* x_778; +lean_dec(x_759); +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_778 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_778, 0, x_14); +lean_ctor_set(x_778, 1, x_13); +return x_778; +} +} +default: +{ +lean_object* x_779; +lean_dec(x_731); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_730); +lean_ctor_set(x_14, 0, x_2); +x_779 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_779, 0, x_14); +lean_ctor_set(x_779, 1, x_13); +return x_779; +} +} +} +} +} +} +else +{ +lean_object* x_780; uint8_t x_781; +lean_dec(x_593); +x_780 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48; +x_781 = lean_string_dec_eq(x_592, x_780); +lean_dec(x_592); +if (x_781 == 0) +{ +lean_object* x_782; lean_object* x_783; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_782 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_782); +lean_ctor_set(x_14, 0, x_2); +x_783 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_783, 0, x_14); +lean_ctor_set(x_783, 1, x_13); +return x_783; +} +else +{ +lean_object* x_784; lean_object* x_785; uint8_t x_786; +x_784 = lean_array_get_size(x_590); +x_785 = lean_unsigned_to_nat(4u); +x_786 = lean_nat_dec_eq(x_784, x_785); +lean_dec(x_784); +if (x_786 == 0) +{ +lean_object* x_787; lean_object* x_788; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_787 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_787); +lean_ctor_set(x_14, 0, x_2); +x_788 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_788, 0, x_14); +lean_ctor_set(x_788, 1, x_13); +return x_788; +} +else +{ +lean_object* x_789; lean_object* x_790; +x_789 = lean_unsigned_to_nat(0u); +x_790 = lean_array_fget(x_590, x_789); +switch (lean_obj_tag(x_790)) { +case 4: +{ +lean_object* x_791; +x_791 = lean_ctor_get(x_790, 0); +lean_inc(x_791); +if (lean_obj_tag(x_791) == 1) +{ +lean_object* x_792; +x_792 = lean_ctor_get(x_791, 0); +lean_inc(x_792); +if (lean_obj_tag(x_792) == 0) +{ +lean_object* x_793; lean_object* x_794; lean_object* x_795; uint8_t x_796; +x_793 = lean_ctor_get(x_790, 1); +lean_inc(x_793); +lean_dec(x_790); +x_794 = lean_ctor_get(x_791, 1); +lean_inc(x_794); +lean_dec(x_791); +x_795 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_796 = lean_string_dec_eq(x_794, x_795); +if (x_796 == 0) +{ +lean_object* x_797; uint8_t x_798; +x_797 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_798 = lean_string_dec_eq(x_794, x_797); +lean_dec(x_794); +if (x_798 == 0) +{ +lean_object* x_799; +lean_dec(x_793); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_799 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_799, 0, x_14); +lean_ctor_set(x_799, 1, x_13); +return x_799; +} +else +{ +if (lean_obj_tag(x_793) == 0) +{ +lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; +lean_free_object(x_14); +x_800 = lean_unsigned_to_nat(2u); +x_801 = lean_array_fget(x_590, x_800); +x_802 = lean_unsigned_to_nat(3u); +x_803 = lean_array_fget(x_590, x_802); +lean_dec(x_590); +x_804 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; +x_805 = l_Lean_mkApp3(x_804, x_801, x_803, x_3); +x_806 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_805, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_806; +} +else +{ +lean_object* x_807; +lean_dec(x_793); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_807 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_807, 0, x_14); +lean_ctor_set(x_807, 1, x_13); +return x_807; +} +} +} +else +{ +lean_dec(x_794); +if (lean_obj_tag(x_793) == 0) +{ +lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; +lean_free_object(x_14); +x_808 = lean_unsigned_to_nat(2u); +x_809 = lean_array_fget(x_590, x_808); +x_810 = lean_unsigned_to_nat(3u); +x_811 = lean_array_fget(x_590, x_810); +lean_dec(x_590); +x_812 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59; +x_813 = l_Lean_mkApp3(x_812, x_809, x_811, x_3); +x_814 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_813, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_814; +} +else +{ +lean_object* x_815; +lean_dec(x_793); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_815 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_815, 0, x_14); +lean_ctor_set(x_815, 1, x_13); +return x_815; +} +} +} +else +{ +lean_object* x_816; +lean_dec(x_792); +lean_dec(x_791); +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_816 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_816, 0, x_14); +lean_ctor_set(x_816, 1, x_13); +return x_816; +} +} +else +{ +lean_object* x_817; +lean_dec(x_791); +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_817 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_817, 0, x_14); +lean_ctor_set(x_817, 1, x_13); +return x_817; +} +} +case 5: +{ +lean_object* x_818; +x_818 = lean_ctor_get(x_790, 0); +lean_inc(x_818); +if (lean_obj_tag(x_818) == 4) +{ +lean_object* x_819; +x_819 = lean_ctor_get(x_818, 0); +lean_inc(x_819); +if (lean_obj_tag(x_819) == 1) +{ +lean_object* x_820; +x_820 = lean_ctor_get(x_819, 0); +lean_inc(x_820); +if (lean_obj_tag(x_820) == 0) +{ +lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; uint8_t x_825; +x_821 = lean_ctor_get(x_790, 1); +lean_inc(x_821); +lean_dec(x_790); +x_822 = lean_ctor_get(x_818, 1); +lean_inc(x_822); +lean_dec(x_818); +x_823 = lean_ctor_get(x_819, 1); +lean_inc(x_823); +lean_dec(x_819); +x_824 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_825 = lean_string_dec_eq(x_823, x_824); +lean_dec(x_823); +if (x_825 == 0) +{ +lean_object* x_826; +lean_dec(x_822); +lean_dec(x_821); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_826 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_826, 0, x_14); +lean_ctor_set(x_826, 1, x_13); +return x_826; +} +else +{ +if (lean_obj_tag(x_822) == 0) +{ +lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; +lean_free_object(x_14); +x_827 = lean_unsigned_to_nat(2u); +x_828 = lean_array_fget(x_590, x_827); +x_829 = lean_unsigned_to_nat(3u); +x_830 = lean_array_fget(x_590, x_829); +lean_dec(x_590); +x_831 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62; +x_832 = l_Lean_mkApp4(x_831, x_821, x_828, x_830, x_3); +x_833 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_832, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_833; +} +else +{ +lean_object* x_834; +lean_dec(x_822); +lean_dec(x_821); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_834 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_834, 0, x_14); +lean_ctor_set(x_834, 1, x_13); +return x_834; +} +} +} +else +{ +lean_object* x_835; +lean_dec(x_820); +lean_dec(x_819); +lean_dec(x_818); +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_835 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_835, 0, x_14); +lean_ctor_set(x_835, 1, x_13); +return x_835; +} +} +else +{ +lean_object* x_836; +lean_dec(x_819); +lean_dec(x_818); +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_836 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_836, 0, x_14); +lean_ctor_set(x_836, 1, x_13); +return x_836; +} +} +else +{ +lean_object* x_837; +lean_dec(x_818); +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_837 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_837, 0, x_14); +lean_ctor_set(x_837, 1, x_13); +return x_837; +} +} +default: +{ +lean_object* x_838; +lean_dec(x_790); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_789); +lean_ctor_set(x_14, 0, x_2); +x_838 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_838, 0, x_14); +lean_ctor_set(x_838, 1, x_13); +return x_838; +} +} +} +} +} +} +else +{ +lean_object* x_839; uint8_t x_840; +lean_dec(x_593); +x_839 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; +x_840 = lean_string_dec_eq(x_592, x_839); +lean_dec(x_592); +if (x_840 == 0) +{ +lean_object* x_841; lean_object* x_842; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_841 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_841); +lean_ctor_set(x_14, 0, x_2); +x_842 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_842, 0, x_14); +lean_ctor_set(x_842, 1, x_13); +return x_842; +} +else +{ +lean_object* x_843; lean_object* x_844; uint8_t x_845; +x_843 = lean_array_get_size(x_590); +x_844 = lean_unsigned_to_nat(4u); +x_845 = lean_nat_dec_eq(x_843, x_844); +lean_dec(x_843); +if (x_845 == 0) +{ +lean_object* x_846; lean_object* x_847; +lean_dec(x_590); +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_6); +lean_dec(x_3); +x_846 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_846); +lean_ctor_set(x_14, 0, x_2); +x_847 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_847, 0, x_14); +lean_ctor_set(x_847, 1, x_13); +return x_847; +} +else +{ +lean_object* x_848; lean_object* x_849; +x_848 = lean_unsigned_to_nat(0u); +x_849 = lean_array_fget(x_590, x_848); +switch (lean_obj_tag(x_849)) { +case 4: +{ +lean_object* x_850; +x_850 = lean_ctor_get(x_849, 0); +lean_inc(x_850); +if (lean_obj_tag(x_850) == 1) +{ +lean_object* x_851; +x_851 = lean_ctor_get(x_850, 0); +lean_inc(x_851); +if (lean_obj_tag(x_851) == 0) +{ +lean_object* x_852; lean_object* x_853; lean_object* x_854; uint8_t x_855; +x_852 = lean_ctor_get(x_849, 1); +lean_inc(x_852); +lean_dec(x_849); +x_853 = lean_ctor_get(x_850, 1); +lean_inc(x_853); +lean_dec(x_850); +x_854 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_855 = lean_string_dec_eq(x_853, x_854); +if (x_855 == 0) +{ +lean_object* x_856; uint8_t x_857; +x_856 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_857 = lean_string_dec_eq(x_853, x_856); +lean_dec(x_853); +if (x_857 == 0) +{ +lean_object* x_858; +lean_dec(x_852); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); +x_858 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_858, 0, x_14); +lean_ctor_set(x_858, 1, x_13); +return x_858; +} +else +{ +if (lean_obj_tag(x_852) == 0) +{ +lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; +lean_free_object(x_14); +x_859 = lean_unsigned_to_nat(2u); +x_860 = lean_array_fget(x_590, x_859); +x_861 = lean_unsigned_to_nat(3u); +x_862 = lean_array_fget(x_590, x_861); +lean_dec(x_590); +x_863 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65; +x_864 = l_Lean_mkApp3(x_863, x_860, x_862, x_3); +x_865 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_864, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_865; +} +else +{ +lean_object* x_866; +lean_dec(x_852); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); +x_866 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_866, 0, x_14); +lean_ctor_set(x_866, 1, x_13); +return x_866; +} +} +} +else +{ +lean_dec(x_853); +if (lean_obj_tag(x_852) == 0) +{ +lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; +x_867 = lean_unsigned_to_nat(2u); +x_868 = lean_array_fget(x_590, x_867); +x_869 = lean_unsigned_to_nat(3u); +x_870 = lean_array_fget(x_590, x_869); +lean_dec(x_590); +lean_inc(x_868); +x_871 = l_Lean_Expr_int_x3f(x_868); +if (lean_obj_tag(x_871) == 0) +{ +lean_object* x_872; lean_object* x_873; lean_object* x_874; +lean_free_object(x_14); +x_872 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_873 = l_Lean_mkApp3(x_872, x_870, x_868, x_3); +x_874 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_873, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_874; +} +else +{ +lean_object* x_875; lean_object* x_876; uint8_t x_877; +x_875 = lean_ctor_get(x_871, 0); +lean_inc(x_875); +lean_dec(x_871); +x_876 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_877 = lean_int_dec_lt(x_875, x_876); +if (x_877 == 0) +{ +lean_object* x_878; uint8_t x_879; +x_878 = lean_nat_abs(x_875); +lean_dec(x_875); +x_879 = lean_nat_dec_eq(x_878, x_848); +lean_dec(x_878); +if (x_879 == 0) +{ +lean_object* x_880; lean_object* x_881; lean_object* x_882; +lean_free_object(x_14); +x_880 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_881 = l_Lean_mkApp3(x_880, x_870, x_868, x_3); +x_882 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_881, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_882; } else { -lean_object* x_883; lean_object* x_884; uint8_t x_885; -x_883 = lean_array_get_size(x_797); -x_884 = lean_unsigned_to_nat(4u); -x_885 = lean_nat_dec_eq(x_883, x_884); -lean_dec(x_883); -if (x_885 == 0) +lean_object* x_883; +lean_dec(x_868); +x_883 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality(x_2, x_3, x_870, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_883) == 0) { -lean_object* x_886; lean_object* x_887; lean_object* x_888; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_886 = lean_unsigned_to_nat(0u); -x_887 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_887, 0, x_2); -lean_ctor_set(x_887, 1, x_886); -x_888 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_888, 0, x_887); -lean_ctor_set(x_888, 1, x_13); -return x_888; +uint8_t x_884; +x_884 = !lean_is_exclusive(x_883); +if (x_884 == 0) +{ +lean_object* x_885; lean_object* x_886; +x_885 = lean_ctor_get(x_883, 0); +x_886 = lean_unsigned_to_nat(1u); +lean_ctor_set(x_14, 1, x_886); +lean_ctor_set(x_14, 0, x_885); +lean_ctor_set(x_883, 0, x_14); +return x_883; } else { -lean_object* x_889; lean_object* x_890; -x_889 = lean_unsigned_to_nat(0u); -x_890 = lean_array_fget(x_797, x_889); -if (lean_obj_tag(x_890) == 4) +lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; +x_887 = lean_ctor_get(x_883, 0); +x_888 = lean_ctor_get(x_883, 1); +lean_inc(x_888); +lean_inc(x_887); +lean_dec(x_883); +x_889 = lean_unsigned_to_nat(1u); +lean_ctor_set(x_14, 1, x_889); +lean_ctor_set(x_14, 0, x_887); +x_890 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_890, 0, x_14); +lean_ctor_set(x_890, 1, x_888); +return x_890; +} +} +else { -lean_object* x_891; -x_891 = lean_ctor_get(x_890, 0); -lean_inc(x_891); -if (lean_obj_tag(x_891) == 1) +uint8_t x_891; +lean_free_object(x_14); +x_891 = !lean_is_exclusive(x_883); +if (x_891 == 0) { -lean_object* x_892; -x_892 = lean_ctor_get(x_891, 0); -lean_inc(x_892); -if (lean_obj_tag(x_892) == 0) +return x_883; +} +else { -lean_object* x_893; lean_object* x_894; lean_object* x_895; uint8_t x_896; -x_893 = lean_ctor_get(x_890, 1); +lean_object* x_892; lean_object* x_893; lean_object* x_894; +x_892 = lean_ctor_get(x_883, 0); +x_893 = lean_ctor_get(x_883, 1); lean_inc(x_893); -lean_dec(x_890); -x_894 = lean_ctor_get(x_891, 1); -lean_inc(x_894); -lean_dec(x_891); -x_895 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_896 = lean_string_dec_eq(x_894, x_895); -if (x_896 == 0) +lean_inc(x_892); +lean_dec(x_883); +x_894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_894, 0, x_892); +lean_ctor_set(x_894, 1, x_893); +return x_894; +} +} +} +} +else { -lean_object* x_897; uint8_t x_898; -x_897 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_898 = lean_string_dec_eq(x_894, x_897); -lean_dec(x_894); -if (x_898 == 0) +lean_object* x_895; lean_object* x_896; lean_object* x_897; +lean_dec(x_875); +lean_free_object(x_14); +x_895 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_896 = l_Lean_mkApp3(x_895, x_870, x_868, x_3); +x_897 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_896, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_897; +} +} +} +else { -lean_object* x_899; lean_object* x_900; -lean_dec(x_893); -lean_dec(x_797); +lean_object* x_898; +lean_dec(x_852); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23256,34 +25472,96 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); +x_898 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_898, 0, x_14); +lean_ctor_set(x_898, 1, x_13); +return x_898; +} +} +} +else +{ +lean_object* x_899; +lean_dec(x_851); +lean_dec(x_850); +lean_dec(x_849); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_899 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_899, 0, x_2); -lean_ctor_set(x_899, 1, x_889); +lean_ctor_set(x_899, 0, x_14); +lean_ctor_set(x_899, 1, x_13); +return x_899; +} +} +else +{ +lean_object* x_900; +lean_dec(x_850); +lean_dec(x_849); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_900 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_900, 0, x_899); +lean_ctor_set(x_900, 0, x_14); lean_ctor_set(x_900, 1, x_13); return x_900; } -else -{ -if (lean_obj_tag(x_893) == 0) -{ -lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; -x_901 = lean_unsigned_to_nat(2u); -x_902 = lean_array_fget(x_797, x_901); -x_903 = lean_unsigned_to_nat(3u); -x_904 = lean_array_fget(x_797, x_903); -lean_dec(x_797); -x_905 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36; -x_906 = l_Lean_mkApp3(x_905, x_902, x_904, x_3); -x_907 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_906, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_907; } -else +case 5: { -lean_object* x_908; lean_object* x_909; -lean_dec(x_893); -lean_dec(x_797); +lean_object* x_901; +x_901 = lean_ctor_get(x_849, 0); +lean_inc(x_901); +if (lean_obj_tag(x_901) == 4) +{ +lean_object* x_902; +x_902 = lean_ctor_get(x_901, 0); +lean_inc(x_902); +if (lean_obj_tag(x_902) == 1) +{ +lean_object* x_903; +x_903 = lean_ctor_get(x_902, 0); +lean_inc(x_903); +if (lean_obj_tag(x_903) == 0) +{ +lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; uint8_t x_908; +x_904 = lean_ctor_get(x_849, 1); +lean_inc(x_904); +lean_dec(x_849); +x_905 = lean_ctor_get(x_901, 1); +lean_inc(x_905); +lean_dec(x_901); +x_906 = lean_ctor_get(x_902, 1); +lean_inc(x_906); +lean_dec(x_902); +x_907 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_908 = lean_string_dec_eq(x_906, x_907); +lean_dec(x_906); +if (x_908 == 0) +{ +lean_object* x_909; +lean_dec(x_905); +lean_dec(x_904); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23292,37 +25570,35 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_908 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_908, 0, x_2); -lean_ctor_set(x_908, 1, x_889); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_909 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_909, 0, x_908); +lean_ctor_set(x_909, 0, x_14); lean_ctor_set(x_909, 1, x_13); return x_909; } -} -} else { -lean_dec(x_894); -if (lean_obj_tag(x_893) == 0) +if (lean_obj_tag(x_905) == 0) { lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; +lean_free_object(x_14); x_910 = lean_unsigned_to_nat(2u); -x_911 = lean_array_fget(x_797, x_910); +x_911 = lean_array_fget(x_590, x_910); x_912 = lean_unsigned_to_nat(3u); -x_913 = lean_array_fget(x_797, x_912); -lean_dec(x_797); -x_914 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__38; -x_915 = l_Lean_mkApp3(x_914, x_911, x_913, x_3); +x_913 = lean_array_fget(x_590, x_912); +lean_dec(x_590); +x_914 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71; +x_915 = l_Lean_mkApp4(x_914, x_904, x_911, x_913, x_3); x_916 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_915, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_916; } else { -lean_object* x_917; lean_object* x_918; -lean_dec(x_893); -lean_dec(x_797); +lean_object* x_917; +lean_dec(x_905); +lean_dec(x_904); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23331,23 +25607,46 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_917 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_917, 0, x_2); -lean_ctor_set(x_917, 1, x_889); +lean_ctor_set(x_917, 0, x_14); +lean_ctor_set(x_917, 1, x_13); +return x_917; +} +} +} +else +{ +lean_object* x_918; +lean_dec(x_903); +lean_dec(x_902); +lean_dec(x_901); +lean_dec(x_849); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_918 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_918, 0, x_917); +lean_ctor_set(x_918, 0, x_14); lean_ctor_set(x_918, 1, x_13); return x_918; } } -} else { -lean_object* x_919; lean_object* x_920; -lean_dec(x_892); -lean_dec(x_891); -lean_dec(x_890); -lean_dec(x_797); +lean_object* x_919; +lean_dec(x_902); +lean_dec(x_901); +lean_dec(x_849); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23356,21 +25655,41 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_919 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_919, 0, x_2); -lean_ctor_set(x_919, 1, x_889); +lean_ctor_set(x_919, 0, x_14); +lean_ctor_set(x_919, 1, x_13); +return x_919; +} +} +else +{ +lean_object* x_920; +lean_dec(x_901); +lean_dec(x_849); +lean_dec(x_590); +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_6); +lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_920 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_920, 0, x_919); +lean_ctor_set(x_920, 0, x_14); lean_ctor_set(x_920, 1, x_13); return x_920; } } -else +default: { -lean_object* x_921; lean_object* x_922; -lean_dec(x_891); -lean_dec(x_890); -lean_dec(x_797); +lean_object* x_921; +lean_dec(x_849); +lean_dec(x_590); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23379,79 +25698,63 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); +lean_ctor_set(x_14, 1, x_848); +lean_ctor_set(x_14, 0, x_2); x_921 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_921, 0, x_2); -lean_ctor_set(x_921, 1, x_889); -x_922 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_922, 0, x_921); -lean_ctor_set(x_922, 1, x_13); -return x_922; +lean_ctor_set(x_921, 0, x_14); +lean_ctor_set(x_921, 1, x_13); +return x_921; } } -else -{ -lean_object* x_923; lean_object* x_924; -lean_dec(x_890); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_923 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_923, 0, x_2); -lean_ctor_set(x_923, 1, x_889); -x_924 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_13); -return x_924; -} } } } } else { -lean_object* x_925; uint8_t x_926; -lean_dec(x_799); -x_925 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39; -x_926 = lean_string_dec_eq(x_798, x_925); -lean_dec(x_798); +lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; uint8_t x_926; +x_922 = lean_ctor_get(x_14, 1); +lean_inc(x_922); +lean_dec(x_14); +x_923 = lean_ctor_get(x_15, 1); +lean_inc(x_923); +lean_dec(x_15); +x_924 = lean_ctor_get(x_16, 1); +lean_inc(x_924); +lean_dec(x_16); +x_925 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__29; +x_926 = lean_string_dec_eq(x_924, x_925); if (x_926 == 0) { -lean_object* x_927; lean_object* x_928; lean_object* x_929; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_927 = lean_unsigned_to_nat(0u); -x_928 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_928, 0, x_2); -lean_ctor_set(x_928, 1, x_927); -x_929 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_929, 0, x_928); -lean_ctor_set(x_929, 1, x_13); -return x_929; -} -else +lean_object* x_927; uint8_t x_928; +x_927 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__28; +x_928 = lean_string_dec_eq(x_924, x_927); +if (x_928 == 0) { -lean_object* x_930; lean_object* x_931; uint8_t x_932; -x_930 = lean_array_get_size(x_797); -x_931 = lean_unsigned_to_nat(4u); -x_932 = lean_nat_dec_eq(x_930, x_931); -lean_dec(x_930); +lean_object* x_929; uint8_t x_930; +x_929 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__26; +x_930 = lean_string_dec_eq(x_924, x_929); +if (x_930 == 0) +{ +lean_object* x_931; uint8_t x_932; +x_931 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__27; +x_932 = lean_string_dec_eq(x_924, x_931); if (x_932 == 0) { -lean_object* x_933; lean_object* x_934; lean_object* x_935; -lean_dec(x_797); +lean_object* x_933; uint8_t x_934; +x_933 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; +x_934 = lean_string_dec_eq(x_924, x_933); +if (x_934 == 0) +{ +lean_object* x_935; uint8_t x_936; +x_935 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__30; +x_936 = lean_string_dec_eq(x_924, x_935); +lean_dec(x_924); +if (x_936 == 0) +{ +lean_object* x_937; lean_object* x_938; lean_object* x_939; +lean_dec(x_923); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23460,52 +25763,25 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_933 = lean_unsigned_to_nat(0u); -x_934 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_934, 0, x_2); -lean_ctor_set(x_934, 1, x_933); -x_935 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_935, 0, x_934); -lean_ctor_set(x_935, 1, x_13); -return x_935; +x_937 = lean_unsigned_to_nat(0u); +x_938 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_938, 0, x_2); +lean_ctor_set(x_938, 1, x_937); +x_939 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_939, 0, x_938); +lean_ctor_set(x_939, 1, x_13); +return x_939; } else { -lean_object* x_936; lean_object* x_937; -x_936 = lean_unsigned_to_nat(0u); -x_937 = lean_array_fget(x_797, x_936); -if (lean_obj_tag(x_937) == 4) +lean_object* x_940; uint8_t x_941; +x_940 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__31; +x_941 = lean_string_dec_eq(x_923, x_940); +lean_dec(x_923); +if (x_941 == 0) { -lean_object* x_938; -x_938 = lean_ctor_get(x_937, 0); -lean_inc(x_938); -if (lean_obj_tag(x_938) == 1) -{ -lean_object* x_939; -x_939 = lean_ctor_get(x_938, 0); -lean_inc(x_939); -if (lean_obj_tag(x_939) == 0) -{ -lean_object* x_940; lean_object* x_941; lean_object* x_942; uint8_t x_943; -x_940 = lean_ctor_get(x_937, 1); -lean_inc(x_940); -lean_dec(x_937); -x_941 = lean_ctor_get(x_938, 1); -lean_inc(x_941); -lean_dec(x_938); -x_942 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_943 = lean_string_dec_eq(x_941, x_942); -if (x_943 == 0) -{ -lean_object* x_944; uint8_t x_945; -x_944 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_945 = lean_string_dec_eq(x_941, x_944); -lean_dec(x_941); -if (x_945 == 0) -{ -lean_object* x_946; lean_object* x_947; -lean_dec(x_940); -lean_dec(x_797); +lean_object* x_942; lean_object* x_943; lean_object* x_944; +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23514,34 +25790,26 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_946 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_946, 0, x_2); -lean_ctor_set(x_946, 1, x_936); -x_947 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_947, 0, x_946); -lean_ctor_set(x_947, 1, x_13); -return x_947; +x_942 = lean_unsigned_to_nat(0u); +x_943 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_943, 0, x_2); +lean_ctor_set(x_943, 1, x_942); +x_944 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_944, 0, x_943); +lean_ctor_set(x_944, 1, x_13); +return x_944; } else { -if (lean_obj_tag(x_940) == 0) +lean_object* x_945; lean_object* x_946; uint8_t x_947; +x_945 = lean_array_get_size(x_922); +x_946 = lean_unsigned_to_nat(4u); +x_947 = lean_nat_dec_eq(x_945, x_946); +lean_dec(x_945); +if (x_947 == 0) { -lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; -x_948 = lean_unsigned_to_nat(2u); -x_949 = lean_array_fget(x_797, x_948); -x_950 = lean_unsigned_to_nat(3u); -x_951 = lean_array_fget(x_797, x_950); -lean_dec(x_797); -x_952 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__42; -x_953 = l_Lean_mkApp3(x_952, x_949, x_951, x_3); -x_954 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_953, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_954; -} -else -{ -lean_object* x_955; lean_object* x_956; -lean_dec(x_940); -lean_dec(x_797); +lean_object* x_948; lean_object* x_949; lean_object* x_950; +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23550,37 +25818,52 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_955 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_955, 0, x_2); -lean_ctor_set(x_955, 1, x_936); -x_956 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_956, 0, x_955); -lean_ctor_set(x_956, 1, x_13); -return x_956; -} -} +x_948 = lean_unsigned_to_nat(0u); +x_949 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_949, 0, x_2); +lean_ctor_set(x_949, 1, x_948); +x_950 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_950, 0, x_949); +lean_ctor_set(x_950, 1, x_13); +return x_950; } else { -lean_dec(x_941); -if (lean_obj_tag(x_940) == 0) +lean_object* x_951; lean_object* x_952; +x_951 = lean_unsigned_to_nat(0u); +x_952 = lean_array_fget(x_922, x_951); +if (lean_obj_tag(x_952) == 4) { -lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; -x_957 = lean_unsigned_to_nat(2u); -x_958 = lean_array_fget(x_797, x_957); -x_959 = lean_unsigned_to_nat(3u); -x_960 = lean_array_fget(x_797, x_959); -lean_dec(x_797); -x_961 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; -x_962 = l_Lean_mkApp3(x_961, x_958, x_960, x_3); -x_963 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_962, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_963; -} -else +lean_object* x_953; +x_953 = lean_ctor_get(x_952, 0); +lean_inc(x_953); +if (lean_obj_tag(x_953) == 1) { -lean_object* x_964; lean_object* x_965; -lean_dec(x_940); -lean_dec(x_797); +lean_object* x_954; +x_954 = lean_ctor_get(x_953, 0); +lean_inc(x_954); +if (lean_obj_tag(x_954) == 0) +{ +lean_object* x_955; lean_object* x_956; lean_object* x_957; uint8_t x_958; +x_955 = lean_ctor_get(x_952, 1); +lean_inc(x_955); +lean_dec(x_952); +x_956 = lean_ctor_get(x_953, 1); +lean_inc(x_956); +lean_dec(x_953); +x_957 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_958 = lean_string_dec_eq(x_956, x_957); +if (x_958 == 0) +{ +lean_object* x_959; uint8_t x_960; +x_959 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_960 = lean_string_dec_eq(x_956, x_959); +lean_dec(x_956); +if (x_960 == 0) +{ +lean_object* x_961; lean_object* x_962; +lean_dec(x_955); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23589,68 +25872,34 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_964 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_964, 0, x_2); -lean_ctor_set(x_964, 1, x_936); -x_965 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_965, 0, x_964); -lean_ctor_set(x_965, 1, x_13); -return x_965; -} -} +x_961 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_961, 0, x_2); +lean_ctor_set(x_961, 1, x_951); +x_962 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_962, 0, x_961); +lean_ctor_set(x_962, 1, x_13); +return x_962; } else { -lean_object* x_966; lean_object* x_967; -lean_dec(x_939); -lean_dec(x_938); -lean_dec(x_937); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_966 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_966, 0, x_2); -lean_ctor_set(x_966, 1, x_936); -x_967 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_967, 0, x_966); -lean_ctor_set(x_967, 1, x_13); -return x_967; -} -} -else +if (lean_obj_tag(x_955) == 0) { -lean_object* x_968; lean_object* x_969; -lean_dec(x_938); -lean_dec(x_937); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_968 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_968, 0, x_2); -lean_ctor_set(x_968, 1, x_936); -x_969 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_969, 0, x_968); -lean_ctor_set(x_969, 1, x_13); +lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; +x_963 = lean_unsigned_to_nat(2u); +x_964 = lean_array_fget(x_922, x_963); +x_965 = lean_unsigned_to_nat(3u); +x_966 = lean_array_fget(x_922, x_965); +lean_dec(x_922); +x_967 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__30; +x_968 = l_Lean_mkApp3(x_967, x_964, x_966, x_3); +x_969 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_968, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_969; } -} else { lean_object* x_970; lean_object* x_971; -lean_dec(x_937); -lean_dec(x_797); +lean_dec(x_955); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23661,7 +25910,7 @@ lean_dec(x_6); lean_dec(x_3); x_970 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_970, 0, x_2); -lean_ctor_set(x_970, 1, x_936); +lean_ctor_set(x_970, 1, x_951); x_971 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_971, 0, x_970); lean_ctor_set(x_971, 1, x_13); @@ -23669,19 +25918,27 @@ return x_971; } } } -} +else +{ +lean_dec(x_956); +if (lean_obj_tag(x_955) == 0) +{ +lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; +x_972 = lean_unsigned_to_nat(2u); +x_973 = lean_array_fget(x_922, x_972); +x_974 = lean_unsigned_to_nat(3u); +x_975 = lean_array_fget(x_922, x_974); +lean_dec(x_922); +x_976 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__33; +x_977 = l_Lean_mkApp3(x_976, x_973, x_975, x_3); +x_978 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_977, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_978; } else { -lean_object* x_972; uint8_t x_973; -lean_dec(x_799); -x_972 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__44; -x_973 = lean_string_dec_eq(x_798, x_972); -lean_dec(x_798); -if (x_973 == 0) -{ -lean_object* x_974; lean_object* x_975; lean_object* x_976; -lean_dec(x_797); +lean_object* x_979; lean_object* x_980; +lean_dec(x_955); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23690,26 +25947,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_974 = lean_unsigned_to_nat(0u); -x_975 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_975, 0, x_2); -lean_ctor_set(x_975, 1, x_974); -x_976 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_976, 0, x_975); -lean_ctor_set(x_976, 1, x_13); -return x_976; +x_979 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_979, 0, x_2); +lean_ctor_set(x_979, 1, x_951); +x_980 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_980, 0, x_979); +lean_ctor_set(x_980, 1, x_13); +return x_980; +} +} } else { -lean_object* x_977; lean_object* x_978; uint8_t x_979; -x_977 = lean_array_get_size(x_797); -x_978 = lean_unsigned_to_nat(4u); -x_979 = lean_nat_dec_eq(x_977, x_978); -lean_dec(x_977); -if (x_979 == 0) -{ -lean_object* x_980; lean_object* x_981; lean_object* x_982; -lean_dec(x_797); +lean_object* x_981; lean_object* x_982; +lean_dec(x_954); +lean_dec(x_953); +lean_dec(x_952); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23718,52 +25972,21 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_980 = lean_unsigned_to_nat(0u); x_981 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_981, 0, x_2); -lean_ctor_set(x_981, 1, x_980); +lean_ctor_set(x_981, 1, x_951); x_982 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_982, 0, x_981); lean_ctor_set(x_982, 1, x_13); return x_982; } +} else { lean_object* x_983; lean_object* x_984; -x_983 = lean_unsigned_to_nat(0u); -x_984 = lean_array_fget(x_797, x_983); -if (lean_obj_tag(x_984) == 4) -{ -lean_object* x_985; -x_985 = lean_ctor_get(x_984, 0); -lean_inc(x_985); -if (lean_obj_tag(x_985) == 1) -{ -lean_object* x_986; -x_986 = lean_ctor_get(x_985, 0); -lean_inc(x_986); -if (lean_obj_tag(x_986) == 0) -{ -lean_object* x_987; lean_object* x_988; lean_object* x_989; uint8_t x_990; -x_987 = lean_ctor_get(x_984, 1); -lean_inc(x_987); -lean_dec(x_984); -x_988 = lean_ctor_get(x_985, 1); -lean_inc(x_988); -lean_dec(x_985); -x_989 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_990 = lean_string_dec_eq(x_988, x_989); -if (x_990 == 0) -{ -lean_object* x_991; uint8_t x_992; -x_991 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_992 = lean_string_dec_eq(x_988, x_991); -lean_dec(x_988); -if (x_992 == 0) -{ -lean_object* x_993; lean_object* x_994; -lean_dec(x_987); -lean_dec(x_797); +lean_dec(x_953); +lean_dec(x_952); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23772,34 +25995,20 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_993 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_993, 0, x_2); -lean_ctor_set(x_993, 1, x_983); -x_994 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_994, 0, x_993); -lean_ctor_set(x_994, 1, x_13); -return x_994; +x_983 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_983, 0, x_2); +lean_ctor_set(x_983, 1, x_951); +x_984 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_984, 0, x_983); +lean_ctor_set(x_984, 1, x_13); +return x_984; +} } else { -if (lean_obj_tag(x_987) == 0) -{ -lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; -x_995 = lean_unsigned_to_nat(2u); -x_996 = lean_array_fget(x_797, x_995); -x_997 = lean_unsigned_to_nat(3u); -x_998 = lean_array_fget(x_797, x_997); -lean_dec(x_797); -x_999 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__47; -x_1000 = l_Lean_mkApp3(x_999, x_996, x_998, x_3); -x_1001 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1000, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_1001; -} -else -{ -lean_object* x_1002; lean_object* x_1003; -lean_dec(x_987); -lean_dec(x_797); +lean_object* x_985; lean_object* x_986; +lean_dec(x_952); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23808,37 +26017,29 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1002 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1002, 0, x_2); -lean_ctor_set(x_1002, 1, x_983); -x_1003 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1003, 0, x_1002); -lean_ctor_set(x_1003, 1, x_13); -return x_1003; +x_985 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_985, 0, x_2); +lean_ctor_set(x_985, 1, x_951); +x_986 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_986, 0, x_985); +lean_ctor_set(x_986, 1, x_13); +return x_986; +} +} } } } else { -lean_dec(x_988); -if (lean_obj_tag(x_987) == 0) +lean_object* x_987; uint8_t x_988; +lean_dec(x_924); +lean_dec(x_922); +x_987 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__37; +x_988 = lean_string_dec_eq(x_923, x_987); +lean_dec(x_923); +if (x_988 == 0) { -lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; -x_1004 = lean_unsigned_to_nat(2u); -x_1005 = lean_array_fget(x_797, x_1004); -x_1006 = lean_unsigned_to_nat(3u); -x_1007 = lean_array_fget(x_797, x_1006); -lean_dec(x_797); -x_1008 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50; -x_1009 = l_Lean_mkApp3(x_1008, x_1005, x_1007, x_3); -x_1010 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1009, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_1010; -} -else -{ -lean_object* x_1011; lean_object* x_1012; -lean_dec(x_987); -lean_dec(x_797); +lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23847,46 +26048,166 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1011 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1011, 0, x_2); -lean_ctor_set(x_1011, 1, x_983); +x_989 = lean_unsigned_to_nat(0u); +x_990 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_990, 0, x_2); +lean_ctor_set(x_990, 1, x_989); +x_991 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_991, 0, x_990); +lean_ctor_set(x_991, 1, x_13); +return x_991; +} +else +{ +lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; +x_992 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__5___closed__6; +x_993 = lean_array_push(x_992, x_3); +x_994 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__35; +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_995 = l_Lean_Meta_mkAppM(x_994, x_993, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_995) == 0) +{ +lean_object* x_996; lean_object* x_997; lean_object* x_998; +x_996 = lean_ctor_get(x_995, 0); +lean_inc(x_996); +x_997 = lean_ctor_get(x_995, 1); +lean_inc(x_997); +lean_dec(x_995); +x_998 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_996, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_997); +return x_998; +} +else +{ +lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; +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_6); +lean_dec(x_2); +x_999 = lean_ctor_get(x_995, 0); +lean_inc(x_999); +x_1000 = lean_ctor_get(x_995, 1); +lean_inc(x_1000); +if (lean_is_exclusive(x_995)) { + lean_ctor_release(x_995, 0); + lean_ctor_release(x_995, 1); + x_1001 = x_995; +} else { + lean_dec_ref(x_995); + x_1001 = lean_box(0); +} +if (lean_is_scalar(x_1001)) { + x_1002 = lean_alloc_ctor(1, 2, 0); +} else { + x_1002 = x_1001; +} +lean_ctor_set(x_1002, 0, x_999); +lean_ctor_set(x_1002, 1, x_1000); +return x_1002; +} +} +} +} +else +{ +lean_object* x_1003; uint8_t x_1004; +lean_dec(x_924); +x_1003 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__36; +x_1004 = lean_string_dec_eq(x_923, x_1003); +lean_dec(x_923); +if (x_1004 == 0) +{ +lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1005 = lean_unsigned_to_nat(0u); +x_1006 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1006, 0, x_2); +lean_ctor_set(x_1006, 1, x_1005); +x_1007 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1007, 0, x_1006); +lean_ctor_set(x_1007, 1, x_13); +return x_1007; +} +else +{ +lean_object* x_1008; lean_object* x_1009; uint8_t x_1010; +x_1008 = lean_array_get_size(x_922); +x_1009 = lean_unsigned_to_nat(4u); +x_1010 = lean_nat_dec_eq(x_1008, x_1009); +lean_dec(x_1008); +if (x_1010 == 0) +{ +lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1011 = lean_unsigned_to_nat(0u); x_1012 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1012, 0, x_1011); -lean_ctor_set(x_1012, 1, x_13); -return x_1012; -} -} -} -else -{ -lean_object* x_1013; lean_object* x_1014; -lean_dec(x_986); -lean_dec(x_985); -lean_dec(x_984); -lean_dec(x_797); -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_6); -lean_dec(x_3); +lean_ctor_set(x_1012, 0, x_2); +lean_ctor_set(x_1012, 1, x_1011); x_1013 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1013, 0, x_2); -lean_ctor_set(x_1013, 1, x_983); -x_1014 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1014, 0, x_1013); -lean_ctor_set(x_1014, 1, x_13); -return x_1014; -} +lean_ctor_set(x_1013, 0, x_1012); +lean_ctor_set(x_1013, 1, x_13); +return x_1013; } else { -lean_object* x_1015; lean_object* x_1016; -lean_dec(x_985); -lean_dec(x_984); -lean_dec(x_797); +lean_object* x_1014; lean_object* x_1015; +x_1014 = lean_unsigned_to_nat(0u); +x_1015 = lean_array_fget(x_922, x_1014); +switch (lean_obj_tag(x_1015)) { +case 4: +{ +lean_object* x_1016; +x_1016 = lean_ctor_get(x_1015, 0); +lean_inc(x_1016); +if (lean_obj_tag(x_1016) == 1) +{ +lean_object* x_1017; +x_1017 = lean_ctor_get(x_1016, 0); +lean_inc(x_1017); +if (lean_obj_tag(x_1017) == 0) +{ +lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; uint8_t x_1021; +x_1018 = lean_ctor_get(x_1015, 1); +lean_inc(x_1018); +lean_dec(x_1015); +x_1019 = lean_ctor_get(x_1016, 1); +lean_inc(x_1019); +lean_dec(x_1016); +x_1020 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1021 = lean_string_dec_eq(x_1019, x_1020); +if (x_1021 == 0) +{ +lean_object* x_1022; uint8_t x_1023; +x_1022 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1023 = lean_string_dec_eq(x_1019, x_1022); +lean_dec(x_1019); +if (x_1023 == 0) +{ +lean_object* x_1024; lean_object* x_1025; +lean_dec(x_1018); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23895,20 +26216,34 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1015 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1015, 0, x_2); -lean_ctor_set(x_1015, 1, x_983); -x_1016 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1016, 0, x_1015); -lean_ctor_set(x_1016, 1, x_13); -return x_1016; -} +x_1024 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1024, 0, x_2); +lean_ctor_set(x_1024, 1, x_1014); +x_1025 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1025, 0, x_1024); +lean_ctor_set(x_1025, 1, x_13); +return x_1025; } else { -lean_object* x_1017; lean_object* x_1018; -lean_dec(x_984); -lean_dec(x_797); +if (lean_obj_tag(x_1018) == 0) +{ +lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; +x_1026 = lean_unsigned_to_nat(2u); +x_1027 = lean_array_fget(x_922, x_1026); +x_1028 = lean_unsigned_to_nat(3u); +x_1029 = lean_array_fget(x_922, x_1028); +lean_dec(x_922); +x_1030 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__39; +x_1031 = l_Lean_mkApp3(x_1030, x_1027, x_1029, x_3); +x_1032 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1031, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1032; +} +else +{ +lean_object* x_1033; lean_object* x_1034; +lean_dec(x_1018); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -23917,147 +26252,37 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1017 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1017, 0, x_2); -lean_ctor_set(x_1017, 1, x_983); -x_1018 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1018, 0, x_1017); -lean_ctor_set(x_1018, 1, x_13); -return x_1018; -} -} +x_1033 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1033, 0, x_2); +lean_ctor_set(x_1033, 1, x_1014); +x_1034 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1034, 0, x_1033); +lean_ctor_set(x_1034, 1, x_13); +return x_1034; } } } else { -lean_object* x_1019; uint8_t x_1020; -lean_dec(x_799); -x_1019 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__38; -x_1020 = lean_string_dec_eq(x_798, x_1019); -lean_dec(x_798); -if (x_1020 == 0) +lean_dec(x_1019); +if (lean_obj_tag(x_1018) == 0) { -lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_1021 = lean_unsigned_to_nat(0u); -x_1022 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1022, 0, x_2); -lean_ctor_set(x_1022, 1, x_1021); -x_1023 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1023, 0, x_1022); -lean_ctor_set(x_1023, 1, x_13); -return x_1023; -} -else -{ -lean_object* x_1024; lean_object* x_1025; uint8_t x_1026; -x_1024 = lean_array_get_size(x_797); -x_1025 = lean_unsigned_to_nat(4u); -x_1026 = lean_nat_dec_eq(x_1024, x_1025); -lean_dec(x_1024); -if (x_1026 == 0) -{ -lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_1027 = lean_unsigned_to_nat(0u); -x_1028 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1028, 0, x_2); -lean_ctor_set(x_1028, 1, x_1027); -x_1029 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1029, 0, x_1028); -lean_ctor_set(x_1029, 1, x_13); -return x_1029; -} -else -{ -lean_object* x_1030; lean_object* x_1031; -x_1030 = lean_unsigned_to_nat(0u); -x_1031 = lean_array_fget(x_797, x_1030); -if (lean_obj_tag(x_1031) == 4) -{ -lean_object* x_1032; -x_1032 = lean_ctor_get(x_1031, 0); -lean_inc(x_1032); -if (lean_obj_tag(x_1032) == 1) -{ -lean_object* x_1033; -x_1033 = lean_ctor_get(x_1032, 0); -lean_inc(x_1033); -if (lean_obj_tag(x_1033) == 0) -{ -lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; uint8_t x_1037; -x_1034 = lean_ctor_get(x_1031, 1); -lean_inc(x_1034); -lean_dec(x_1031); -x_1035 = lean_ctor_get(x_1032, 1); -lean_inc(x_1035); -lean_dec(x_1032); -x_1036 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__8; -x_1037 = lean_string_dec_eq(x_1035, x_1036); -if (x_1037 == 0) -{ -lean_object* x_1038; uint8_t x_1039; -x_1038 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__9; -x_1039 = lean_string_dec_eq(x_1035, x_1038); -lean_dec(x_1035); -if (x_1039 == 0) -{ -lean_object* x_1040; lean_object* x_1041; -lean_dec(x_1034); -lean_dec(x_797); -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_6); -lean_dec(x_3); -x_1040 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1040, 0, x_2); -lean_ctor_set(x_1040, 1, x_1030); -x_1041 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1041, 0, x_1040); -lean_ctor_set(x_1041, 1, x_13); +lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; +x_1035 = lean_unsigned_to_nat(2u); +x_1036 = lean_array_fget(x_922, x_1035); +x_1037 = lean_unsigned_to_nat(3u); +x_1038 = lean_array_fget(x_922, x_1037); +lean_dec(x_922); +x_1039 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__41; +x_1040 = l_Lean_mkApp3(x_1039, x_1036, x_1038, x_3); +x_1041 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1040, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_1041; } else { -if (lean_obj_tag(x_1034) == 0) -{ -lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; -x_1042 = lean_unsigned_to_nat(2u); -x_1043 = lean_array_fget(x_797, x_1042); -x_1044 = lean_unsigned_to_nat(3u); -x_1045 = lean_array_fget(x_797, x_1044); -lean_dec(x_797); -x_1046 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53; -x_1047 = l_Lean_mkApp3(x_1046, x_1043, x_1045, x_3); -x_1048 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1047, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_1048; -} -else -{ -lean_object* x_1049; lean_object* x_1050; -lean_dec(x_1034); -lean_dec(x_797); +lean_object* x_1042; lean_object* x_1043; +lean_dec(x_1018); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24066,135 +26291,231 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1049 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1049, 0, x_2); -lean_ctor_set(x_1049, 1, x_1030); -x_1050 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1050, 0, x_1049); -lean_ctor_set(x_1050, 1, x_13); -return x_1050; +x_1042 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1042, 0, x_2); +lean_ctor_set(x_1042, 1, x_1014); +x_1043 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1043, 0, x_1042); +lean_ctor_set(x_1043, 1, x_13); +return x_1043; } } } else { -lean_dec(x_1035); -if (lean_obj_tag(x_1034) == 0) +lean_object* x_1044; lean_object* x_1045; +lean_dec(x_1017); +lean_dec(x_1016); +lean_dec(x_1015); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1044 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1044, 0, x_2); +lean_ctor_set(x_1044, 1, x_1014); +x_1045 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1045, 0, x_1044); +lean_ctor_set(x_1045, 1, x_13); +return x_1045; +} +} +else { -lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; -x_1051 = lean_unsigned_to_nat(2u); -x_1052 = lean_array_fget(x_797, x_1051); -x_1053 = lean_unsigned_to_nat(3u); -x_1054 = lean_array_fget(x_797, x_1053); -lean_dec(x_797); +lean_object* x_1046; lean_object* x_1047; +lean_dec(x_1016); +lean_dec(x_1015); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1046 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1046, 0, x_2); +lean_ctor_set(x_1046, 1, x_1014); +x_1047 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1047, 0, x_1046); +lean_ctor_set(x_1047, 1, x_13); +return x_1047; +} +} +case 5: +{ +lean_object* x_1048; +x_1048 = lean_ctor_get(x_1015, 0); +lean_inc(x_1048); +if (lean_obj_tag(x_1048) == 4) +{ +lean_object* x_1049; +x_1049 = lean_ctor_get(x_1048, 0); +lean_inc(x_1049); +if (lean_obj_tag(x_1049) == 1) +{ +lean_object* x_1050; +x_1050 = lean_ctor_get(x_1049, 0); +lean_inc(x_1050); +if (lean_obj_tag(x_1050) == 0) +{ +lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; uint8_t x_1055; +x_1051 = lean_ctor_get(x_1015, 1); +lean_inc(x_1051); +lean_dec(x_1015); +x_1052 = lean_ctor_get(x_1048, 1); lean_inc(x_1052); -x_1055 = l_Lean_Expr_int_x3f(x_1052); -if (lean_obj_tag(x_1055) == 0) +lean_dec(x_1048); +x_1053 = lean_ctor_get(x_1049, 1); +lean_inc(x_1053); +lean_dec(x_1049); +x_1054 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_1055 = lean_string_dec_eq(x_1053, x_1054); +lean_dec(x_1053); +if (x_1055 == 0) { -lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; -x_1056 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_1057 = l_Lean_mkApp3(x_1056, x_1054, x_1052, x_3); -x_1058 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1057, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_1058; +lean_object* x_1056; lean_object* x_1057; +lean_dec(x_1052); +lean_dec(x_1051); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1056 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1056, 0, x_2); +lean_ctor_set(x_1056, 1, x_1014); +x_1057 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1057, 0, x_1056); +lean_ctor_set(x_1057, 1, x_13); +return x_1057; } else { -lean_object* x_1059; lean_object* x_1060; uint8_t x_1061; -x_1059 = lean_ctor_get(x_1055, 0); -lean_inc(x_1059); -lean_dec(x_1055); -x_1060 = l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21; -x_1061 = lean_int_dec_lt(x_1059, x_1060); -if (x_1061 == 0) +if (lean_obj_tag(x_1052) == 0) { -lean_object* x_1062; uint8_t x_1063; -x_1062 = lean_nat_abs(x_1059); -lean_dec(x_1059); -x_1063 = lean_nat_dec_eq(x_1062, x_1030); -lean_dec(x_1062); -if (x_1063 == 0) +lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; +x_1058 = lean_unsigned_to_nat(2u); +x_1059 = lean_array_fget(x_922, x_1058); +x_1060 = lean_unsigned_to_nat(3u); +x_1061 = lean_array_fget(x_922, x_1060); +lean_dec(x_922); +x_1062 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__44; +x_1063 = l_Lean_mkApp4(x_1062, x_1051, x_1059, x_1061, x_3); +x_1064 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1063, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1064; +} +else { -lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; -x_1064 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_1065 = l_Lean_mkApp3(x_1064, x_1054, x_1052, x_3); -x_1066 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1065, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_object* x_1065; lean_object* x_1066; +lean_dec(x_1052); +lean_dec(x_1051); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1065 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1065, 0, x_2); +lean_ctor_set(x_1065, 1, x_1014); +x_1066 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1066, 0, x_1065); +lean_ctor_set(x_1066, 1, x_13); return x_1066; } +} +} else { -lean_object* x_1067; -lean_dec(x_1052); -x_1067 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality(x_2, x_3, x_1054, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_1067) == 0) -{ -lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; -x_1068 = lean_ctor_get(x_1067, 0); -lean_inc(x_1068); -x_1069 = lean_ctor_get(x_1067, 1); -lean_inc(x_1069); -if (lean_is_exclusive(x_1067)) { - lean_ctor_release(x_1067, 0); - lean_ctor_release(x_1067, 1); - x_1070 = x_1067; -} else { - lean_dec_ref(x_1067); - x_1070 = lean_box(0); +lean_object* x_1067; lean_object* x_1068; +lean_dec(x_1050); +lean_dec(x_1049); +lean_dec(x_1048); +lean_dec(x_1015); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1067 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1067, 0, x_2); +lean_ctor_set(x_1067, 1, x_1014); +x_1068 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1068, 0, x_1067); +lean_ctor_set(x_1068, 1, x_13); +return x_1068; } -x_1071 = lean_unsigned_to_nat(1u); +} +else +{ +lean_object* x_1069; lean_object* x_1070; +lean_dec(x_1049); +lean_dec(x_1048); +lean_dec(x_1015); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1069 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1069, 0, x_2); +lean_ctor_set(x_1069, 1, x_1014); +x_1070 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1070, 0, x_1069); +lean_ctor_set(x_1070, 1, x_13); +return x_1070; +} +} +else +{ +lean_object* x_1071; lean_object* x_1072; +lean_dec(x_1048); +lean_dec(x_1015); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1071 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1071, 0, x_2); +lean_ctor_set(x_1071, 1, x_1014); x_1072 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1072, 0, x_1068); -lean_ctor_set(x_1072, 1, x_1071); -if (lean_is_scalar(x_1070)) { - x_1073 = lean_alloc_ctor(0, 2, 0); -} else { - x_1073 = x_1070; +lean_ctor_set(x_1072, 0, x_1071); +lean_ctor_set(x_1072, 1, x_13); +return x_1072; } -lean_ctor_set(x_1073, 0, x_1072); -lean_ctor_set(x_1073, 1, x_1069); -return x_1073; } -else +default: { -lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; -x_1074 = lean_ctor_get(x_1067, 0); -lean_inc(x_1074); -x_1075 = lean_ctor_get(x_1067, 1); -lean_inc(x_1075); -if (lean_is_exclusive(x_1067)) { - lean_ctor_release(x_1067, 0); - lean_ctor_release(x_1067, 1); - x_1076 = x_1067; -} else { - lean_dec_ref(x_1067); - x_1076 = lean_box(0); -} -if (lean_is_scalar(x_1076)) { - x_1077 = lean_alloc_ctor(1, 2, 0); -} else { - x_1077 = x_1076; -} -lean_ctor_set(x_1077, 0, x_1074); -lean_ctor_set(x_1077, 1, x_1075); -return x_1077; -} -} -} -else -{ -lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; -lean_dec(x_1059); -x_1078 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; -x_1079 = l_Lean_mkApp3(x_1078, x_1054, x_1052, x_3); -x_1080 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1079, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_1080; -} -} -} -else -{ -lean_object* x_1081; lean_object* x_1082; -lean_dec(x_1034); -lean_dec(x_797); +lean_object* x_1073; lean_object* x_1074; +lean_dec(x_1015); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24203,23 +26524,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1081 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1081, 0, x_2); -lean_ctor_set(x_1081, 1, x_1030); -x_1082 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1082, 0, x_1081); -lean_ctor_set(x_1082, 1, x_13); -return x_1082; +x_1073 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1073, 0, x_2); +lean_ctor_set(x_1073, 1, x_1014); +x_1074 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1074, 0, x_1073); +lean_ctor_set(x_1074, 1, x_13); +return x_1074; +} +} +} } } } else { -lean_object* x_1083; lean_object* x_1084; -lean_dec(x_1033); -lean_dec(x_1032); -lean_dec(x_1031); -lean_dec(x_797); +lean_object* x_1075; uint8_t x_1076; +lean_dec(x_924); +x_1075 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__45; +x_1076 = lean_string_dec_eq(x_923, x_1075); +lean_dec(x_923); +if (x_1076 == 0) +{ +lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24228,43 +26556,81 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1083 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1083, 0, x_2); -lean_ctor_set(x_1083, 1, x_1030); +x_1077 = lean_unsigned_to_nat(0u); +x_1078 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1078, 0, x_2); +lean_ctor_set(x_1078, 1, x_1077); +x_1079 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1079, 0, x_1078); +lean_ctor_set(x_1079, 1, x_13); +return x_1079; +} +else +{ +lean_object* x_1080; lean_object* x_1081; uint8_t x_1082; +x_1080 = lean_array_get_size(x_922); +x_1081 = lean_unsigned_to_nat(4u); +x_1082 = lean_nat_dec_eq(x_1080, x_1081); +lean_dec(x_1080); +if (x_1082 == 0) +{ +lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1083 = lean_unsigned_to_nat(0u); x_1084 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1084, 0, x_1083); -lean_ctor_set(x_1084, 1, x_13); -return x_1084; -} -} -else -{ -lean_object* x_1085; lean_object* x_1086; -lean_dec(x_1032); -lean_dec(x_1031); -lean_dec(x_797); -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_6); -lean_dec(x_3); +lean_ctor_set(x_1084, 0, x_2); +lean_ctor_set(x_1084, 1, x_1083); x_1085 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1085, 0, x_2); -lean_ctor_set(x_1085, 1, x_1030); -x_1086 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1086, 0, x_1085); -lean_ctor_set(x_1086, 1, x_13); -return x_1086; -} +lean_ctor_set(x_1085, 0, x_1084); +lean_ctor_set(x_1085, 1, x_13); +return x_1085; } else { -lean_object* x_1087; lean_object* x_1088; -lean_dec(x_1031); -lean_dec(x_797); +lean_object* x_1086; lean_object* x_1087; +x_1086 = lean_unsigned_to_nat(0u); +x_1087 = lean_array_fget(x_922, x_1086); +switch (lean_obj_tag(x_1087)) { +case 4: +{ +lean_object* x_1088; +x_1088 = lean_ctor_get(x_1087, 0); +lean_inc(x_1088); +if (lean_obj_tag(x_1088) == 1) +{ +lean_object* x_1089; +x_1089 = lean_ctor_get(x_1088, 0); +lean_inc(x_1089); +if (lean_obj_tag(x_1089) == 0) +{ +lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; uint8_t x_1093; +x_1090 = lean_ctor_get(x_1087, 1); +lean_inc(x_1090); +lean_dec(x_1087); +x_1091 = lean_ctor_get(x_1088, 1); +lean_inc(x_1091); +lean_dec(x_1088); +x_1092 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1093 = lean_string_dec_eq(x_1091, x_1092); +if (x_1093 == 0) +{ +lean_object* x_1094; uint8_t x_1095; +x_1094 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1095 = lean_string_dec_eq(x_1091, x_1094); +lean_dec(x_1091); +if (x_1095 == 0) +{ +lean_object* x_1096; lean_object* x_1097; +lean_dec(x_1090); +lean_dec(x_922); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24273,13 +26639,321 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1087 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1087, 0, x_2); -lean_ctor_set(x_1087, 1, x_1030); -x_1088 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1088, 0, x_1087); -lean_ctor_set(x_1088, 1, x_13); -return x_1088; +x_1096 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1096, 0, x_2); +lean_ctor_set(x_1096, 1, x_1086); +x_1097 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1097, 0, x_1096); +lean_ctor_set(x_1097, 1, x_13); +return x_1097; +} +else +{ +if (lean_obj_tag(x_1090) == 0) +{ +lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; +x_1098 = lean_unsigned_to_nat(2u); +x_1099 = lean_array_fget(x_922, x_1098); +x_1100 = lean_unsigned_to_nat(3u); +x_1101 = lean_array_fget(x_922, x_1100); +lean_dec(x_922); +x_1102 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__48; +x_1103 = l_Lean_mkApp3(x_1102, x_1099, x_1101, x_3); +x_1104 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1103, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1104; +} +else +{ +lean_object* x_1105; lean_object* x_1106; +lean_dec(x_1090); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1105, 0, x_2); +lean_ctor_set(x_1105, 1, x_1086); +x_1106 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1106, 0, x_1105); +lean_ctor_set(x_1106, 1, x_13); +return x_1106; +} +} +} +else +{ +lean_dec(x_1091); +if (lean_obj_tag(x_1090) == 0) +{ +lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; +x_1107 = lean_unsigned_to_nat(2u); +x_1108 = lean_array_fget(x_922, x_1107); +x_1109 = lean_unsigned_to_nat(3u); +x_1110 = lean_array_fget(x_922, x_1109); +lean_dec(x_922); +x_1111 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__50; +x_1112 = l_Lean_mkApp3(x_1111, x_1108, x_1110, x_3); +x_1113 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1112, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1113; +} +else +{ +lean_object* x_1114; lean_object* x_1115; +lean_dec(x_1090); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1114, 0, x_2); +lean_ctor_set(x_1114, 1, x_1086); +x_1115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1115, 0, x_1114); +lean_ctor_set(x_1115, 1, x_13); +return x_1115; +} +} +} +else +{ +lean_object* x_1116; lean_object* x_1117; +lean_dec(x_1089); +lean_dec(x_1088); +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1116 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1116, 0, x_2); +lean_ctor_set(x_1116, 1, x_1086); +x_1117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1117, 0, x_1116); +lean_ctor_set(x_1117, 1, x_13); +return x_1117; +} +} +else +{ +lean_object* x_1118; lean_object* x_1119; +lean_dec(x_1088); +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1118 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1118, 0, x_2); +lean_ctor_set(x_1118, 1, x_1086); +x_1119 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1119, 0, x_1118); +lean_ctor_set(x_1119, 1, x_13); +return x_1119; +} +} +case 5: +{ +lean_object* x_1120; +x_1120 = lean_ctor_get(x_1087, 0); +lean_inc(x_1120); +if (lean_obj_tag(x_1120) == 4) +{ +lean_object* x_1121; +x_1121 = lean_ctor_get(x_1120, 0); +lean_inc(x_1121); +if (lean_obj_tag(x_1121) == 1) +{ +lean_object* x_1122; +x_1122 = lean_ctor_get(x_1121, 0); +lean_inc(x_1122); +if (lean_obj_tag(x_1122) == 0) +{ +lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; uint8_t x_1127; +x_1123 = lean_ctor_get(x_1087, 1); +lean_inc(x_1123); +lean_dec(x_1087); +x_1124 = lean_ctor_get(x_1120, 1); +lean_inc(x_1124); +lean_dec(x_1120); +x_1125 = lean_ctor_get(x_1121, 1); +lean_inc(x_1125); +lean_dec(x_1121); +x_1126 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_1127 = lean_string_dec_eq(x_1125, x_1126); +lean_dec(x_1125); +if (x_1127 == 0) +{ +lean_object* x_1128; lean_object* x_1129; +lean_dec(x_1124); +lean_dec(x_1123); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1128, 0, x_2); +lean_ctor_set(x_1128, 1, x_1086); +x_1129 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1129, 0, x_1128); +lean_ctor_set(x_1129, 1, x_13); +return x_1129; +} +else +{ +if (lean_obj_tag(x_1124) == 0) +{ +lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; +x_1130 = lean_unsigned_to_nat(2u); +x_1131 = lean_array_fget(x_922, x_1130); +x_1132 = lean_unsigned_to_nat(3u); +x_1133 = lean_array_fget(x_922, x_1132); +lean_dec(x_922); +x_1134 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__53; +x_1135 = l_Lean_mkApp4(x_1134, x_1123, x_1131, x_1133, x_3); +x_1136 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1135, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1136; +} +else +{ +lean_object* x_1137; lean_object* x_1138; +lean_dec(x_1124); +lean_dec(x_1123); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1137, 0, x_2); +lean_ctor_set(x_1137, 1, x_1086); +x_1138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1138, 0, x_1137); +lean_ctor_set(x_1138, 1, x_13); +return x_1138; +} +} +} +else +{ +lean_object* x_1139; lean_object* x_1140; +lean_dec(x_1122); +lean_dec(x_1121); +lean_dec(x_1120); +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1139, 0, x_2); +lean_ctor_set(x_1139, 1, x_1086); +x_1140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1140, 0, x_1139); +lean_ctor_set(x_1140, 1, x_13); +return x_1140; +} +} +else +{ +lean_object* x_1141; lean_object* x_1142; +lean_dec(x_1121); +lean_dec(x_1120); +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1141, 0, x_2); +lean_ctor_set(x_1141, 1, x_1086); +x_1142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1142, 0, x_1141); +lean_ctor_set(x_1142, 1, x_13); +return x_1142; +} +} +else +{ +lean_object* x_1143; lean_object* x_1144; +lean_dec(x_1120); +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1143, 0, x_2); +lean_ctor_set(x_1143, 1, x_1086); +x_1144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_13); +return x_1144; +} +} +default: +{ +lean_object* x_1145; lean_object* x_1146; +lean_dec(x_1087); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1145, 0, x_2); +lean_ctor_set(x_1145, 1, x_1086); +x_1146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1146, 0, x_1145); +lean_ctor_set(x_1146, 1, x_13); +return x_1146; } } } @@ -24288,8 +26962,953 @@ return x_1088; } else { -uint8_t x_1089; -lean_dec(x_543); +lean_object* x_1147; uint8_t x_1148; +lean_dec(x_924); +x_1147 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__48; +x_1148 = lean_string_dec_eq(x_923, x_1147); +lean_dec(x_923); +if (x_1148 == 0) +{ +lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1149 = lean_unsigned_to_nat(0u); +x_1150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1150, 0, x_2); +lean_ctor_set(x_1150, 1, x_1149); +x_1151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1151, 0, x_1150); +lean_ctor_set(x_1151, 1, x_13); +return x_1151; +} +else +{ +lean_object* x_1152; lean_object* x_1153; uint8_t x_1154; +x_1152 = lean_array_get_size(x_922); +x_1153 = lean_unsigned_to_nat(4u); +x_1154 = lean_nat_dec_eq(x_1152, x_1153); +lean_dec(x_1152); +if (x_1154 == 0) +{ +lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1155 = lean_unsigned_to_nat(0u); +x_1156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1156, 0, x_2); +lean_ctor_set(x_1156, 1, x_1155); +x_1157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1157, 0, x_1156); +lean_ctor_set(x_1157, 1, x_13); +return x_1157; +} +else +{ +lean_object* x_1158; lean_object* x_1159; +x_1158 = lean_unsigned_to_nat(0u); +x_1159 = lean_array_fget(x_922, x_1158); +switch (lean_obj_tag(x_1159)) { +case 4: +{ +lean_object* x_1160; +x_1160 = lean_ctor_get(x_1159, 0); +lean_inc(x_1160); +if (lean_obj_tag(x_1160) == 1) +{ +lean_object* x_1161; +x_1161 = lean_ctor_get(x_1160, 0); +lean_inc(x_1161); +if (lean_obj_tag(x_1161) == 0) +{ +lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; uint8_t x_1165; +x_1162 = lean_ctor_get(x_1159, 1); +lean_inc(x_1162); +lean_dec(x_1159); +x_1163 = lean_ctor_get(x_1160, 1); +lean_inc(x_1163); +lean_dec(x_1160); +x_1164 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1165 = lean_string_dec_eq(x_1163, x_1164); +if (x_1165 == 0) +{ +lean_object* x_1166; uint8_t x_1167; +x_1166 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1167 = lean_string_dec_eq(x_1163, x_1166); +lean_dec(x_1163); +if (x_1167 == 0) +{ +lean_object* x_1168; lean_object* x_1169; +lean_dec(x_1162); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1168 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1168, 0, x_2); +lean_ctor_set(x_1168, 1, x_1158); +x_1169 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1169, 0, x_1168); +lean_ctor_set(x_1169, 1, x_13); +return x_1169; +} +else +{ +if (lean_obj_tag(x_1162) == 0) +{ +lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; +x_1170 = lean_unsigned_to_nat(2u); +x_1171 = lean_array_fget(x_922, x_1170); +x_1172 = lean_unsigned_to_nat(3u); +x_1173 = lean_array_fget(x_922, x_1172); +lean_dec(x_922); +x_1174 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__56; +x_1175 = l_Lean_mkApp3(x_1174, x_1171, x_1173, x_3); +x_1176 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1175, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1176; +} +else +{ +lean_object* x_1177; lean_object* x_1178; +lean_dec(x_1162); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1177 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1177, 0, x_2); +lean_ctor_set(x_1177, 1, x_1158); +x_1178 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1178, 0, x_1177); +lean_ctor_set(x_1178, 1, x_13); +return x_1178; +} +} +} +else +{ +lean_dec(x_1163); +if (lean_obj_tag(x_1162) == 0) +{ +lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; +x_1179 = lean_unsigned_to_nat(2u); +x_1180 = lean_array_fget(x_922, x_1179); +x_1181 = lean_unsigned_to_nat(3u); +x_1182 = lean_array_fget(x_922, x_1181); +lean_dec(x_922); +x_1183 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59; +x_1184 = l_Lean_mkApp3(x_1183, x_1180, x_1182, x_3); +x_1185 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1184, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1185; +} +else +{ +lean_object* x_1186; lean_object* x_1187; +lean_dec(x_1162); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1186 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1186, 0, x_2); +lean_ctor_set(x_1186, 1, x_1158); +x_1187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1187, 0, x_1186); +lean_ctor_set(x_1187, 1, x_13); +return x_1187; +} +} +} +else +{ +lean_object* x_1188; lean_object* x_1189; +lean_dec(x_1161); +lean_dec(x_1160); +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1188, 0, x_2); +lean_ctor_set(x_1188, 1, x_1158); +x_1189 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1189, 0, x_1188); +lean_ctor_set(x_1189, 1, x_13); +return x_1189; +} +} +else +{ +lean_object* x_1190; lean_object* x_1191; +lean_dec(x_1160); +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1190, 0, x_2); +lean_ctor_set(x_1190, 1, x_1158); +x_1191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1191, 0, x_1190); +lean_ctor_set(x_1191, 1, x_13); +return x_1191; +} +} +case 5: +{ +lean_object* x_1192; +x_1192 = lean_ctor_get(x_1159, 0); +lean_inc(x_1192); +if (lean_obj_tag(x_1192) == 4) +{ +lean_object* x_1193; +x_1193 = lean_ctor_get(x_1192, 0); +lean_inc(x_1193); +if (lean_obj_tag(x_1193) == 1) +{ +lean_object* x_1194; +x_1194 = lean_ctor_get(x_1193, 0); +lean_inc(x_1194); +if (lean_obj_tag(x_1194) == 0) +{ +lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; uint8_t x_1199; +x_1195 = lean_ctor_get(x_1159, 1); +lean_inc(x_1195); +lean_dec(x_1159); +x_1196 = lean_ctor_get(x_1192, 1); +lean_inc(x_1196); +lean_dec(x_1192); +x_1197 = lean_ctor_get(x_1193, 1); +lean_inc(x_1197); +lean_dec(x_1193); +x_1198 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_1199 = lean_string_dec_eq(x_1197, x_1198); +lean_dec(x_1197); +if (x_1199 == 0) +{ +lean_object* x_1200; lean_object* x_1201; +lean_dec(x_1196); +lean_dec(x_1195); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1200 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1200, 0, x_2); +lean_ctor_set(x_1200, 1, x_1158); +x_1201 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1201, 0, x_1200); +lean_ctor_set(x_1201, 1, x_13); +return x_1201; +} +else +{ +if (lean_obj_tag(x_1196) == 0) +{ +lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; +x_1202 = lean_unsigned_to_nat(2u); +x_1203 = lean_array_fget(x_922, x_1202); +x_1204 = lean_unsigned_to_nat(3u); +x_1205 = lean_array_fget(x_922, x_1204); +lean_dec(x_922); +x_1206 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62; +x_1207 = l_Lean_mkApp4(x_1206, x_1195, x_1203, x_1205, x_3); +x_1208 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1207, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1208; +} +else +{ +lean_object* x_1209; lean_object* x_1210; +lean_dec(x_1196); +lean_dec(x_1195); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1209, 0, x_2); +lean_ctor_set(x_1209, 1, x_1158); +x_1210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1210, 0, x_1209); +lean_ctor_set(x_1210, 1, x_13); +return x_1210; +} +} +} +else +{ +lean_object* x_1211; lean_object* x_1212; +lean_dec(x_1194); +lean_dec(x_1193); +lean_dec(x_1192); +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1211 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1211, 0, x_2); +lean_ctor_set(x_1211, 1, x_1158); +x_1212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1212, 0, x_1211); +lean_ctor_set(x_1212, 1, x_13); +return x_1212; +} +} +else +{ +lean_object* x_1213; lean_object* x_1214; +lean_dec(x_1193); +lean_dec(x_1192); +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1213 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1213, 0, x_2); +lean_ctor_set(x_1213, 1, x_1158); +x_1214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1214, 0, x_1213); +lean_ctor_set(x_1214, 1, x_13); +return x_1214; +} +} +else +{ +lean_object* x_1215; lean_object* x_1216; +lean_dec(x_1192); +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1215 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1215, 0, x_2); +lean_ctor_set(x_1215, 1, x_1158); +x_1216 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1216, 0, x_1215); +lean_ctor_set(x_1216, 1, x_13); +return x_1216; +} +} +default: +{ +lean_object* x_1217; lean_object* x_1218; +lean_dec(x_1159); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1217, 0, x_2); +lean_ctor_set(x_1217, 1, x_1158); +x_1218 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1218, 0, x_1217); +lean_ctor_set(x_1218, 1, x_13); +return x_1218; +} +} +} +} +} +} +else +{ +lean_object* x_1219; uint8_t x_1220; +lean_dec(x_924); +x_1219 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__40; +x_1220 = lean_string_dec_eq(x_923, x_1219); +lean_dec(x_923); +if (x_1220 == 0) +{ +lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1221 = lean_unsigned_to_nat(0u); +x_1222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1222, 0, x_2); +lean_ctor_set(x_1222, 1, x_1221); +x_1223 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1223, 0, x_1222); +lean_ctor_set(x_1223, 1, x_13); +return x_1223; +} +else +{ +lean_object* x_1224; lean_object* x_1225; uint8_t x_1226; +x_1224 = lean_array_get_size(x_922); +x_1225 = lean_unsigned_to_nat(4u); +x_1226 = lean_nat_dec_eq(x_1224, x_1225); +lean_dec(x_1224); +if (x_1226 == 0) +{ +lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1227 = lean_unsigned_to_nat(0u); +x_1228 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1228, 0, x_2); +lean_ctor_set(x_1228, 1, x_1227); +x_1229 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1229, 0, x_1228); +lean_ctor_set(x_1229, 1, x_13); +return x_1229; +} +else +{ +lean_object* x_1230; lean_object* x_1231; +x_1230 = lean_unsigned_to_nat(0u); +x_1231 = lean_array_fget(x_922, x_1230); +switch (lean_obj_tag(x_1231)) { +case 4: +{ +lean_object* x_1232; +x_1232 = lean_ctor_get(x_1231, 0); +lean_inc(x_1232); +if (lean_obj_tag(x_1232) == 1) +{ +lean_object* x_1233; +x_1233 = lean_ctor_get(x_1232, 0); +lean_inc(x_1233); +if (lean_obj_tag(x_1233) == 0) +{ +lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; uint8_t x_1237; +x_1234 = lean_ctor_get(x_1231, 1); +lean_inc(x_1234); +lean_dec(x_1231); +x_1235 = lean_ctor_get(x_1232, 1); +lean_inc(x_1235); +lean_dec(x_1232); +x_1236 = l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7; +x_1237 = lean_string_dec_eq(x_1235, x_1236); +if (x_1237 == 0) +{ +lean_object* x_1238; uint8_t x_1239; +x_1238 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__8; +x_1239 = lean_string_dec_eq(x_1235, x_1238); +lean_dec(x_1235); +if (x_1239 == 0) +{ +lean_object* x_1240; lean_object* x_1241; +lean_dec(x_1234); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1240, 0, x_2); +lean_ctor_set(x_1240, 1, x_1230); +x_1241 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1241, 0, x_1240); +lean_ctor_set(x_1241, 1, x_13); +return x_1241; +} +else +{ +if (lean_obj_tag(x_1234) == 0) +{ +lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; +x_1242 = lean_unsigned_to_nat(2u); +x_1243 = lean_array_fget(x_922, x_1242); +x_1244 = lean_unsigned_to_nat(3u); +x_1245 = lean_array_fget(x_922, x_1244); +lean_dec(x_922); +x_1246 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65; +x_1247 = l_Lean_mkApp3(x_1246, x_1243, x_1245, x_3); +x_1248 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1247, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1248; +} +else +{ +lean_object* x_1249; lean_object* x_1250; +lean_dec(x_1234); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1249 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1249, 0, x_2); +lean_ctor_set(x_1249, 1, x_1230); +x_1250 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1250, 0, x_1249); +lean_ctor_set(x_1250, 1, x_13); +return x_1250; +} +} +} +else +{ +lean_dec(x_1235); +if (lean_obj_tag(x_1234) == 0) +{ +lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; +x_1251 = lean_unsigned_to_nat(2u); +x_1252 = lean_array_fget(x_922, x_1251); +x_1253 = lean_unsigned_to_nat(3u); +x_1254 = lean_array_fget(x_922, x_1253); +lean_dec(x_922); +lean_inc(x_1252); +x_1255 = l_Lean_Expr_int_x3f(x_1252); +if (lean_obj_tag(x_1255) == 0) +{ +lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; +x_1256 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_1257 = l_Lean_mkApp3(x_1256, x_1254, x_1252, x_3); +x_1258 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1257, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1258; +} +else +{ +lean_object* x_1259; lean_object* x_1260; uint8_t x_1261; +x_1259 = lean_ctor_get(x_1255, 0); +lean_inc(x_1259); +lean_dec(x_1255); +x_1260 = l_Lean_Elab_Tactic_Omega_mkInt___closed__1; +x_1261 = lean_int_dec_lt(x_1259, x_1260); +if (x_1261 == 0) +{ +lean_object* x_1262; uint8_t x_1263; +x_1262 = lean_nat_abs(x_1259); +lean_dec(x_1259); +x_1263 = lean_nat_dec_eq(x_1262, x_1230); +lean_dec(x_1262); +if (x_1263 == 0) +{ +lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; +x_1264 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_1265 = l_Lean_mkApp3(x_1264, x_1254, x_1252, x_3); +x_1266 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1265, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1266; +} +else +{ +lean_object* x_1267; +lean_dec(x_1252); +x_1267 = l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality(x_2, x_3, x_1254, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_1267) == 0) +{ +lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; +x_1268 = lean_ctor_get(x_1267, 0); +lean_inc(x_1268); +x_1269 = lean_ctor_get(x_1267, 1); +lean_inc(x_1269); +if (lean_is_exclusive(x_1267)) { + lean_ctor_release(x_1267, 0); + lean_ctor_release(x_1267, 1); + x_1270 = x_1267; +} else { + lean_dec_ref(x_1267); + x_1270 = lean_box(0); +} +x_1271 = lean_unsigned_to_nat(1u); +x_1272 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1272, 0, x_1268); +lean_ctor_set(x_1272, 1, x_1271); +if (lean_is_scalar(x_1270)) { + x_1273 = lean_alloc_ctor(0, 2, 0); +} else { + x_1273 = x_1270; +} +lean_ctor_set(x_1273, 0, x_1272); +lean_ctor_set(x_1273, 1, x_1269); +return x_1273; +} +else +{ +lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; +x_1274 = lean_ctor_get(x_1267, 0); +lean_inc(x_1274); +x_1275 = lean_ctor_get(x_1267, 1); +lean_inc(x_1275); +if (lean_is_exclusive(x_1267)) { + lean_ctor_release(x_1267, 0); + lean_ctor_release(x_1267, 1); + x_1276 = x_1267; +} else { + lean_dec_ref(x_1267); + x_1276 = lean_box(0); +} +if (lean_is_scalar(x_1276)) { + x_1277 = lean_alloc_ctor(1, 2, 0); +} else { + x_1277 = x_1276; +} +lean_ctor_set(x_1277, 0, x_1274); +lean_ctor_set(x_1277, 1, x_1275); +return x_1277; +} +} +} +else +{ +lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; +lean_dec(x_1259); +x_1278 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68; +x_1279 = l_Lean_mkApp3(x_1278, x_1254, x_1252, x_3); +x_1280 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1279, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1280; +} +} +} +else +{ +lean_object* x_1281; lean_object* x_1282; +lean_dec(x_1234); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1281 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1281, 0, x_2); +lean_ctor_set(x_1281, 1, x_1230); +x_1282 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1282, 0, x_1281); +lean_ctor_set(x_1282, 1, x_13); +return x_1282; +} +} +} +else +{ +lean_object* x_1283; lean_object* x_1284; +lean_dec(x_1233); +lean_dec(x_1232); +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1283 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1283, 0, x_2); +lean_ctor_set(x_1283, 1, x_1230); +x_1284 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1284, 0, x_1283); +lean_ctor_set(x_1284, 1, x_13); +return x_1284; +} +} +else +{ +lean_object* x_1285; lean_object* x_1286; +lean_dec(x_1232); +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1285 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1285, 0, x_2); +lean_ctor_set(x_1285, 1, x_1230); +x_1286 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1286, 0, x_1285); +lean_ctor_set(x_1286, 1, x_13); +return x_1286; +} +} +case 5: +{ +lean_object* x_1287; +x_1287 = lean_ctor_get(x_1231, 0); +lean_inc(x_1287); +if (lean_obj_tag(x_1287) == 4) +{ +lean_object* x_1288; +x_1288 = lean_ctor_get(x_1287, 0); +lean_inc(x_1288); +if (lean_obj_tag(x_1288) == 1) +{ +lean_object* x_1289; +x_1289 = lean_ctor_get(x_1288, 0); +lean_inc(x_1289); +if (lean_obj_tag(x_1289) == 0) +{ +lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; uint8_t x_1294; +x_1290 = lean_ctor_get(x_1231, 1); +lean_inc(x_1290); +lean_dec(x_1231); +x_1291 = lean_ctor_get(x_1287, 1); +lean_inc(x_1291); +lean_dec(x_1287); +x_1292 = lean_ctor_get(x_1288, 1); +lean_inc(x_1292); +lean_dec(x_1288); +x_1293 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4; +x_1294 = lean_string_dec_eq(x_1292, x_1293); +lean_dec(x_1292); +if (x_1294 == 0) +{ +lean_object* x_1295; lean_object* x_1296; +lean_dec(x_1291); +lean_dec(x_1290); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1295 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1295, 0, x_2); +lean_ctor_set(x_1295, 1, x_1230); +x_1296 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1296, 0, x_1295); +lean_ctor_set(x_1296, 1, x_13); +return x_1296; +} +else +{ +if (lean_obj_tag(x_1291) == 0) +{ +lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; +x_1297 = lean_unsigned_to_nat(2u); +x_1298 = lean_array_fget(x_922, x_1297); +x_1299 = lean_unsigned_to_nat(3u); +x_1300 = lean_array_fget(x_922, x_1299); +lean_dec(x_922); +x_1301 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71; +x_1302 = l_Lean_mkApp4(x_1301, x_1290, x_1298, x_1300, x_3); +x_1303 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1302, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_1303; +} +else +{ +lean_object* x_1304; lean_object* x_1305; +lean_dec(x_1291); +lean_dec(x_1290); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1304 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1304, 0, x_2); +lean_ctor_set(x_1304, 1, x_1230); +x_1305 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1305, 0, x_1304); +lean_ctor_set(x_1305, 1, x_13); +return x_1305; +} +} +} +else +{ +lean_object* x_1306; lean_object* x_1307; +lean_dec(x_1289); +lean_dec(x_1288); +lean_dec(x_1287); +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1306 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1306, 0, x_2); +lean_ctor_set(x_1306, 1, x_1230); +x_1307 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1307, 0, x_1306); +lean_ctor_set(x_1307, 1, x_13); +return x_1307; +} +} +else +{ +lean_object* x_1308; lean_object* x_1309; +lean_dec(x_1288); +lean_dec(x_1287); +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1308 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1308, 0, x_2); +lean_ctor_set(x_1308, 1, x_1230); +x_1309 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1309, 0, x_1308); +lean_ctor_set(x_1309, 1, x_13); +return x_1309; +} +} +else +{ +lean_object* x_1310; lean_object* x_1311; +lean_dec(x_1287); +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1310, 0, x_2); +lean_ctor_set(x_1310, 1, x_1230); +x_1311 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1311, 0, x_1310); +lean_ctor_set(x_1311, 1, x_13); +return x_1311; +} +} +default: +{ +lean_object* x_1312; lean_object* x_1313; +lean_dec(x_1231); +lean_dec(x_922); +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_6); +lean_dec(x_3); +x_1312 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1312, 0, x_2); +lean_ctor_set(x_1312, 1, x_1230); +x_1313 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1313, 0, x_1312); +lean_ctor_set(x_1313, 1, x_13); +return x_1313; +} +} +} +} +} +} +} +else +{ +uint8_t x_1314; +lean_dec(x_588); lean_dec(x_16); lean_dec(x_15); lean_dec(x_12); @@ -24300,40 +27919,40 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1089 = !lean_is_exclusive(x_14); -if (x_1089 == 0) +x_1314 = !lean_is_exclusive(x_14); +if (x_1314 == 0) { -lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; -x_1090 = lean_ctor_get(x_14, 1); -lean_dec(x_1090); -x_1091 = lean_ctor_get(x_14, 0); -lean_dec(x_1091); -x_1092 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_1092); +lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; +x_1315 = lean_ctor_get(x_14, 1); +lean_dec(x_1315); +x_1316 = lean_ctor_get(x_14, 0); +lean_dec(x_1316); +x_1317 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_1317); lean_ctor_set(x_14, 0, x_2); -x_1093 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1093, 0, x_14); -lean_ctor_set(x_1093, 1, x_13); -return x_1093; +x_1318 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1318, 0, x_14); +lean_ctor_set(x_1318, 1, x_13); +return x_1318; } else { -lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; +lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_dec(x_14); -x_1094 = lean_unsigned_to_nat(0u); -x_1095 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1095, 0, x_2); -lean_ctor_set(x_1095, 1, x_1094); -x_1096 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1096, 0, x_1095); -lean_ctor_set(x_1096, 1, x_13); -return x_1096; +x_1319 = lean_unsigned_to_nat(0u); +x_1320 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1320, 0, x_2); +lean_ctor_set(x_1320, 1, x_1319); +x_1321 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1321, 0, x_1320); +lean_ctor_set(x_1321, 1, x_13); +return x_1321; } } } default: { -uint8_t x_1097; +uint8_t x_1322; lean_dec(x_16); lean_dec(x_15); lean_dec(x_12); @@ -24345,41 +27964,41 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_1097 = !lean_is_exclusive(x_14); -if (x_1097 == 0) +x_1322 = !lean_is_exclusive(x_14); +if (x_1322 == 0) { -lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; -x_1098 = lean_ctor_get(x_14, 1); -lean_dec(x_1098); -x_1099 = lean_ctor_get(x_14, 0); -lean_dec(x_1099); -x_1100 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_1100); +lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; +x_1323 = lean_ctor_get(x_14, 1); +lean_dec(x_1323); +x_1324 = lean_ctor_get(x_14, 0); +lean_dec(x_1324); +x_1325 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_1325); lean_ctor_set(x_14, 0, x_2); -x_1101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1101, 0, x_14); -lean_ctor_set(x_1101, 1, x_13); -return x_1101; +x_1326 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1326, 0, x_14); +lean_ctor_set(x_1326, 1, x_13); +return x_1326; } else { -lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; +lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_dec(x_14); -x_1102 = lean_unsigned_to_nat(0u); -x_1103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1103, 0, x_2); -lean_ctor_set(x_1103, 1, x_1102); -x_1104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1104, 0, x_1103); -lean_ctor_set(x_1104, 1, x_13); -return x_1104; +x_1327 = lean_unsigned_to_nat(0u); +x_1328 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1328, 0, x_2); +lean_ctor_set(x_1328, 1, x_1327); +x_1329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1329, 0, x_1328); +lean_ctor_set(x_1329, 1, x_13); +return x_1329; } } } } else { -uint8_t x_1105; +uint8_t x_1330; lean_dec(x_15); lean_dec(x_12); lean_dec(x_11); @@ -24390,76 +28009,76 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_1105 = !lean_is_exclusive(x_14); -if (x_1105 == 0) +x_1330 = !lean_is_exclusive(x_14); +if (x_1330 == 0) { -lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; -x_1106 = lean_ctor_get(x_14, 1); -lean_dec(x_1106); -x_1107 = lean_ctor_get(x_14, 0); -lean_dec(x_1107); -x_1108 = lean_unsigned_to_nat(0u); -lean_ctor_set(x_14, 1, x_1108); +lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; +x_1331 = lean_ctor_get(x_14, 1); +lean_dec(x_1331); +x_1332 = lean_ctor_get(x_14, 0); +lean_dec(x_1332); +x_1333 = lean_unsigned_to_nat(0u); +lean_ctor_set(x_14, 1, x_1333); lean_ctor_set(x_14, 0, x_2); -x_1109 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1109, 0, x_14); -lean_ctor_set(x_1109, 1, x_13); -return x_1109; +x_1334 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1334, 0, x_14); +lean_ctor_set(x_1334, 1, x_13); +return x_1334; } else { -lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; +lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_dec(x_14); -x_1110 = lean_unsigned_to_nat(0u); -x_1111 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1111, 0, x_2); -lean_ctor_set(x_1111, 1, x_1110); -x_1112 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1112, 0, x_1111); -lean_ctor_set(x_1112, 1, x_13); -return x_1112; +x_1335 = lean_unsigned_to_nat(0u); +x_1336 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1336, 0, x_2); +lean_ctor_set(x_1336, 1, x_1335); +x_1337 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1337, 0, x_1336); +lean_ctor_set(x_1337, 1, x_13); +return x_1337; } } } case 7: { -lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; +lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_dec(x_4); -x_1113 = lean_ctor_get(x_1, 1); -lean_inc(x_1113); -x_1114 = lean_ctor_get(x_1, 2); -lean_inc(x_1114); +x_1338 = lean_ctor_get(x_1, 1); +lean_inc(x_1338); +x_1339 = lean_ctor_get(x_1, 2); +lean_inc(x_1339); lean_dec(x_1); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -lean_inc(x_1113); -x_1115 = l_Lean_Meta_isProp(x_1113, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_1115) == 0) +lean_inc(x_1338); +x_1340 = l_Lean_Meta_isProp(x_1338, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_1340) == 0) { -lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; -x_1116 = lean_ctor_get(x_1115, 0); -lean_inc(x_1116); -x_1117 = lean_ctor_get(x_1115, 1); -lean_inc(x_1117); -lean_dec(x_1115); +lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; +x_1341 = lean_ctor_get(x_1340, 0); +lean_inc(x_1341); +x_1342 = lean_ctor_get(x_1340, 1); +lean_inc(x_1342); +lean_dec(x_1340); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -lean_inc(x_1114); -x_1118 = l_Lean_Meta_isProp(x_1114, x_9, x_10, x_11, x_12, x_1117); -if (lean_obj_tag(x_1118) == 0) +lean_inc(x_1339); +x_1343 = l_Lean_Meta_isProp(x_1339, x_9, x_10, x_11, x_12, x_1342); +if (lean_obj_tag(x_1343) == 0) { -uint8_t x_1119; -x_1119 = lean_unbox(x_1116); -lean_dec(x_1116); -if (x_1119 == 0) +uint8_t x_1344; +x_1344 = lean_unbox(x_1341); +lean_dec(x_1341); +if (x_1344 == 0) { -uint8_t x_1120; -lean_dec(x_1114); -lean_dec(x_1113); +uint8_t x_1345; +lean_dec(x_1339); +lean_dec(x_1338); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24468,47 +28087,47 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1120 = !lean_is_exclusive(x_1118); -if (x_1120 == 0) +x_1345 = !lean_is_exclusive(x_1343); +if (x_1345 == 0) { -lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; -x_1121 = lean_ctor_get(x_1118, 0); -lean_dec(x_1121); -x_1122 = lean_unsigned_to_nat(0u); -x_1123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1123, 0, x_2); -lean_ctor_set(x_1123, 1, x_1122); -lean_ctor_set(x_1118, 0, x_1123); -return x_1118; +lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; +x_1346 = lean_ctor_get(x_1343, 0); +lean_dec(x_1346); +x_1347 = lean_unsigned_to_nat(0u); +x_1348 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1348, 0, x_2); +lean_ctor_set(x_1348, 1, x_1347); +lean_ctor_set(x_1343, 0, x_1348); +return x_1343; } else { -lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; -x_1124 = lean_ctor_get(x_1118, 1); -lean_inc(x_1124); -lean_dec(x_1118); -x_1125 = lean_unsigned_to_nat(0u); -x_1126 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1126, 0, x_2); -lean_ctor_set(x_1126, 1, x_1125); -x_1127 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1127, 0, x_1126); -lean_ctor_set(x_1127, 1, x_1124); -return x_1127; +lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; +x_1349 = lean_ctor_get(x_1343, 1); +lean_inc(x_1349); +lean_dec(x_1343); +x_1350 = lean_unsigned_to_nat(0u); +x_1351 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1351, 0, x_2); +lean_ctor_set(x_1351, 1, x_1350); +x_1352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1352, 0, x_1351); +lean_ctor_set(x_1352, 1, x_1349); +return x_1352; } } else { -lean_object* x_1128; uint8_t x_1129; -x_1128 = lean_ctor_get(x_1118, 0); -lean_inc(x_1128); -x_1129 = lean_unbox(x_1128); -lean_dec(x_1128); -if (x_1129 == 0) +lean_object* x_1353; uint8_t x_1354; +x_1353 = lean_ctor_get(x_1343, 0); +lean_inc(x_1353); +x_1354 = lean_unbox(x_1353); +lean_dec(x_1353); +if (x_1354 == 0) { -uint8_t x_1130; -lean_dec(x_1114); -lean_dec(x_1113); +uint8_t x_1355; +lean_dec(x_1339); +lean_dec(x_1338); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24517,57 +28136,57 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_1130 = !lean_is_exclusive(x_1118); -if (x_1130 == 0) +x_1355 = !lean_is_exclusive(x_1343); +if (x_1355 == 0) { -lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; -x_1131 = lean_ctor_get(x_1118, 0); -lean_dec(x_1131); -x_1132 = lean_unsigned_to_nat(0u); -x_1133 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1133, 0, x_2); -lean_ctor_set(x_1133, 1, x_1132); -lean_ctor_set(x_1118, 0, x_1133); -return x_1118; +lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; +x_1356 = lean_ctor_get(x_1343, 0); +lean_dec(x_1356); +x_1357 = lean_unsigned_to_nat(0u); +x_1358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1358, 0, x_2); +lean_ctor_set(x_1358, 1, x_1357); +lean_ctor_set(x_1343, 0, x_1358); +return x_1343; } else { -lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; -x_1134 = lean_ctor_get(x_1118, 1); -lean_inc(x_1134); -lean_dec(x_1118); -x_1135 = lean_unsigned_to_nat(0u); -x_1136 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1136, 0, x_2); -lean_ctor_set(x_1136, 1, x_1135); -x_1137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1137, 0, x_1136); -lean_ctor_set(x_1137, 1, x_1134); -return x_1137; +lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; +x_1359 = lean_ctor_get(x_1343, 1); +lean_inc(x_1359); +lean_dec(x_1343); +x_1360 = lean_unsigned_to_nat(0u); +x_1361 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1361, 0, x_2); +lean_ctor_set(x_1361, 1, x_1360); +x_1362 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1362, 0, x_1361); +lean_ctor_set(x_1362, 1, x_1359); +return x_1362; } } else { -lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; -x_1138 = lean_ctor_get(x_1118, 1); -lean_inc(x_1138); -lean_dec(x_1118); -x_1139 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; -lean_inc(x_1113); -x_1140 = l_Lean_Expr_app___override(x_1139, x_1113); -x_1141 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59; -x_1142 = l_Lean_mkApp4(x_1141, x_1113, x_1114, x_1140, x_3); -x_1143 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1142, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_1138); -return x_1143; +lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; +x_1363 = lean_ctor_get(x_1343, 1); +lean_inc(x_1363); +lean_dec(x_1343); +x_1364 = l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__11; +lean_inc(x_1338); +x_1365 = l_Lean_Expr_app___override(x_1364, x_1338); +x_1366 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74; +x_1367 = l_Lean_mkApp4(x_1366, x_1338, x_1339, x_1365, x_3); +x_1368 = l_Lean_Elab_Tactic_Omega_MetaProblem_addFact(x_2, x_1367, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_1363); +return x_1368; } } } else { -uint8_t x_1144; -lean_dec(x_1116); -lean_dec(x_1114); -lean_dec(x_1113); +uint8_t x_1369; +lean_dec(x_1341); +lean_dec(x_1339); +lean_dec(x_1338); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24577,31 +28196,31 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_1144 = !lean_is_exclusive(x_1118); -if (x_1144 == 0) +x_1369 = !lean_is_exclusive(x_1343); +if (x_1369 == 0) { -return x_1118; +return x_1343; } else { -lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; -x_1145 = lean_ctor_get(x_1118, 0); -x_1146 = lean_ctor_get(x_1118, 1); -lean_inc(x_1146); -lean_inc(x_1145); -lean_dec(x_1118); -x_1147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1147, 0, x_1145); -lean_ctor_set(x_1147, 1, x_1146); -return x_1147; +lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; +x_1370 = lean_ctor_get(x_1343, 0); +x_1371 = lean_ctor_get(x_1343, 1); +lean_inc(x_1371); +lean_inc(x_1370); +lean_dec(x_1343); +x_1372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1372, 0, x_1370); +lean_ctor_set(x_1372, 1, x_1371); +return x_1372; } } } else { -uint8_t x_1148; -lean_dec(x_1114); -lean_dec(x_1113); +uint8_t x_1373; +lean_dec(x_1339); +lean_dec(x_1338); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24611,29 +28230,29 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_1148 = !lean_is_exclusive(x_1115); -if (x_1148 == 0) +x_1373 = !lean_is_exclusive(x_1340); +if (x_1373 == 0) { -return x_1115; +return x_1340; } else { -lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; -x_1149 = lean_ctor_get(x_1115, 0); -x_1150 = lean_ctor_get(x_1115, 1); -lean_inc(x_1150); -lean_inc(x_1149); -lean_dec(x_1115); -x_1151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1151, 0, x_1149); -lean_ctor_set(x_1151, 1, x_1150); -return x_1151; +lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; +x_1374 = lean_ctor_get(x_1340, 0); +x_1375 = lean_ctor_get(x_1340, 1); +lean_inc(x_1375); +lean_inc(x_1374); +lean_dec(x_1340); +x_1376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1376, 0, x_1374); +lean_ctor_set(x_1376, 1, x_1375); +return x_1376; } } } default: { -lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; +lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -24644,14 +28263,14 @@ lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_1152 = lean_unsigned_to_nat(0u); -x_1153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1153, 0, x_2); -lean_ctor_set(x_1153, 1, x_1152); -x_1154 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1154, 0, x_1153); -lean_ctor_set(x_1154, 1, x_13); -return x_1154; +x_1377 = lean_unsigned_to_nat(0u); +x_1378 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1378, 0, x_2); +lean_ctor_set(x_1378, 1, x_1377); +x_1379 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1379, 0, x_1378); +lean_ctor_set(x_1379, 1, x_13); +return x_1379; } } } @@ -27378,58 +30997,7 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; uint8_t x_15; -lean_dec(x_4); -lean_inc(x_1); -x_13 = l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_unbox(x_14); -lean_dec(x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -lean_dec(x_1); -x_16 = lean_ctor_get(x_13, 1); -lean_inc(x_16); -lean_dec(x_13); -x_17 = l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___spec__1(x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_16); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_6); -return x_17; -} -else -{ -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; -x_18 = lean_ctor_get(x_13, 1); -lean_inc(x_18); -lean_dec(x_13); -lean_inc(x_3); -x_19 = l_Lean_MessageData_ofExpr(x_3); -x_20 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__9; -x_21 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_19); -x_22 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_20); -x_23 = l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(x_1, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); -x_24 = lean_ctor_get(x_23, 1); -lean_inc(x_24); -lean_dec(x_23); -x_25 = l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___spec__1(x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_24); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_6); -return x_25; -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -27437,16 +31005,16 @@ x_1 = lean_mk_string_from_bytes("omega found a contradiction, proving ", 37); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1; +x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; @@ -27481,64 +31049,67 @@ x_21 = lean_unbox(x_20); lean_dec(x_20); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_object* x_22; lean_object* x_23; +lean_dec(x_2); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_23 = lean_box(0); -x_24 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2(x_2, x_3, x_17, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22); +x_23 = l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___spec__1(x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22); lean_dec(x_11); +lean_dec(x_10); lean_dec(x_9); +lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_5); -return x_24; +return x_23; } else { -lean_object* x_25; lean_object* x_26; -x_25 = lean_ctor_get(x_19, 1); -lean_inc(x_25); +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_19, 1); +lean_inc(x_24); lean_dec(x_19); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_17); -x_26 = lean_infer_type(x_17, x_8, x_9, x_10, x_11, x_25); -if (lean_obj_tag(x_26) == 0) +x_25 = lean_infer_type(x_17, x_8, x_9, x_10, x_11, x_24); +if (lean_obj_tag(x_25) == 0) { -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_27 = lean_ctor_get(x_26, 0); +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; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = l_Lean_MessageData_ofExpr(x_27); -x_30 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2; -x_31 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -x_32 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__9; -x_33 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -lean_inc(x_2); -x_34 = l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(x_2, x_33, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_28); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -x_37 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2(x_2, x_3, x_17, x_35, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36); +lean_dec(x_25); +x_28 = l_Lean_MessageData_ofExpr(x_26); +x_29 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +x_31 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__9; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7(x_2, x_32, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_27); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +lean_dec(x_33); +x_35 = l_Lean_MVarId_assign___at_Lean_Elab_Tactic_Omega_omegaImpl___spec__1(x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_34); lean_dec(x_11); +lean_dec(x_10); lean_dec(x_9); +lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_5); -return x_37; +return x_35; } else { -uint8_t x_38; +uint8_t x_36; lean_dec(x_17); lean_dec(x_11); lean_dec(x_10); @@ -27549,30 +31120,30 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_38 = !lean_is_exclusive(x_26); -if (x_38 == 0) +x_36 = !lean_is_exclusive(x_25); +if (x_36 == 0) { -return x_26; +return x_25; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_26, 0); -x_40 = lean_ctor_get(x_26, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_26); -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_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_25, 0); +x_38 = lean_ctor_get(x_25, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_25); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; } } } } else { -uint8_t x_42; +uint8_t x_40; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -27582,28 +31153,28 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_42 = !lean_is_exclusive(x_13); -if (x_42 == 0) +x_40 = !lean_is_exclusive(x_13); +if (x_40 == 0) { return x_13; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_13, 0); -x_44 = lean_ctor_get(x_13, 1); -lean_inc(x_44); -lean_inc(x_43); +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_13, 0); +x_42 = lean_ctor_get(x_13, 1); +lean_inc(x_42); +lean_inc(x_41); lean_dec(x_13); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -27611,16 +31182,16 @@ x_1 = lean_mk_string_from_bytes("Justification:\n", 15); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1; +x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(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_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -27649,7 +31220,7 @@ x_20 = lean_ctor_get(x_17, 1); lean_inc(x_20); lean_dec(x_17); x_21 = lean_box(0); -x_22 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_16, x_2, x_3, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20); +x_22 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2(x_16, x_2, x_3, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20); return x_22; } else @@ -27665,7 +31236,7 @@ x_25 = lean_thunk_get_own(x_24); lean_dec(x_24); x_26 = l_Lean_stringToMessageData(x_25); lean_dec(x_25); -x_27 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2; +x_27 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2; x_28 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -27680,7 +31251,7 @@ lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); -x_34 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_16, x_2, x_3, x_32, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_33); +x_34 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2(x_16, x_2, x_3, x_32, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_33); return x_34; } } @@ -27694,7 +31265,7 @@ return x_35; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -27702,16 +31273,16 @@ x_1 = lean_mk_string_from_bytes("After elimination:\nAtoms: ", 26); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1; +x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -27720,7 +31291,7 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(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_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(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_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -27737,7 +31308,7 @@ x_16 = lean_ctor_get(x_13, 1); lean_inc(x_16); lean_dec(x_13); x_17 = lean_box(0); -x_18 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_4, x_1, x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_16); +x_18 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_4, x_1, x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_16); return x_18; } else @@ -27760,11 +31331,11 @@ x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); x_23 = l_Lean_MessageData_ofExpr(x_21); -x_24 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2; +x_24 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2; x_25 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3; +x_26 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3; x_27 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -27787,7 +31358,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_4, x_1, x_2, x_3, x_34, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_35); +x_36 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_4, x_1, x_2, x_3, x_34, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_35); return x_36; } else @@ -27822,7 +31393,7 @@ lean_inc(x_50); x_51 = lean_ctor_get(x_49, 1); lean_inc(x_51); lean_dec(x_49); -x_52 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_4, x_1, x_2, x_3, x_50, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_51); +x_52 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_4, x_1, x_2, x_3, x_50, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_51); return x_52; } else @@ -27843,7 +31414,7 @@ lean_inc(x_58); x_59 = lean_ctor_get(x_57, 1); lean_inc(x_59); lean_dec(x_57); -x_60 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_4, x_1, x_2, x_3, x_58, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_59); +x_60 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3(x_4, x_1, x_2, x_3, x_58, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_59); return x_60; } } @@ -27884,7 +31455,7 @@ return x_64; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(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_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(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_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -27893,7 +31464,7 @@ x_14 = lean_ctor_get_uint8(x_4, sizeof(void*)*7); if (x_14 == 0) { lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_15; } else @@ -27915,7 +31486,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_1, x_2, x_3, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_18); +x_19 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(x_1, x_2, x_3, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_18); return x_19; } else @@ -27953,7 +31524,7 @@ return x_23; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1() { _start: { lean_object* x_1; @@ -27961,16 +31532,16 @@ x_1 = lean_mk_string_from_bytes("failed", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1; +x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3() { _start: { lean_object* x_1; @@ -27978,16 +31549,16 @@ x_1 = lean_mk_string_from_bytes("Extracted linear arithmetic problem:\nAtoms: ", return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3; +x_1 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7(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_Elab_Tactic_Omega_omegaImpl___lambda__6(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: { lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -28006,7 +31577,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_14 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2; +x_14 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2; x_15 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_14, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_8); @@ -28049,7 +31620,7 @@ x_25 = lean_ctor_get(x_22, 1); lean_inc(x_25); lean_dec(x_22); x_26 = lean_box(0); -x_27 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(x_21, x_1, x_11, x_20, x_26, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_25); +x_27 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_21, x_1, x_11, x_20, x_26, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_25); return x_27; } else @@ -28072,11 +31643,11 @@ x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); x_32 = l_Lean_MessageData_ofExpr(x_30); -x_33 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4; +x_33 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4; x_34 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3; +x_35 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3; x_36 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_36, 0, x_34); lean_ctor_set(x_36, 1, x_35); @@ -28098,7 +31669,7 @@ lean_inc(x_43); x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); lean_dec(x_42); -x_45 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(x_21, x_1, x_11, x_20, x_43, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_44); +x_45 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_21, x_1, x_11, x_20, x_43, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_44); return x_45; } else @@ -28132,7 +31703,7 @@ lean_inc(x_59); x_60 = lean_ctor_get(x_58, 1); lean_inc(x_60); lean_dec(x_58); -x_61 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(x_21, x_1, x_11, x_20, x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_60); +x_61 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_21, x_1, x_11, x_20, x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_60); return x_61; } else @@ -28152,7 +31723,7 @@ lean_inc(x_67); x_68 = lean_ctor_get(x_66, 1); lean_inc(x_68); lean_dec(x_66); -x_69 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6(x_21, x_1, x_11, x_20, x_67, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68); +x_69 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5(x_21, x_1, x_11, x_20, x_67, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68); return x_69; } } @@ -28200,7 +31771,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_MetaProblem_processFacts), 9, 1); lean_closure_set(x_11, 0, x_1); lean_inc(x_2); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7), 10, 1); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6), 10, 1); lean_closure_set(x_12, 0, x_2); x_13 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_Omega_withoutModifyingState___spec__1___rarg), 10, 2); lean_closure_set(x_13, 0, x_11); @@ -28286,18 +31857,6 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_5); -return x_13; -} -} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omega(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) { _start: { @@ -29909,23 +33468,31 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Tactic", 6); +x_1 = lean_mk_string_from_bytes("Parser", 6); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__2() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__3() { +_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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; -x_2 = l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1; -x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__1; +x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; x_4 = l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__4() { _start: { lean_object* x_1; @@ -29937,7 +33504,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_evalOmega(lean_object* x_1, le _start: { lean_object* x_11; uint8_t x_12; -x_11 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; +x_11 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__3; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -29961,7 +33528,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(1u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_dec(x_1); -x_16 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__3; +x_16 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__4; x_17 = l_Lean_Syntax_isNone(x_15); if (x_17 == 0) { @@ -30039,7 +33606,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_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__1; x_2 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1; -x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__1; +x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; x_4 = l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_Omega_Frontend___hyg_6____closed__3; x_5 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__2; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); @@ -30067,7 +33634,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__4; -x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_evalOmega___closed__3; x_4 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__3; x_5 = l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); @@ -30078,7 +33645,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(538u); +x_1 = lean_unsigned_to_nat(607u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30090,7 +33657,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(542u); +x_1 = lean_unsigned_to_nat(611u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30118,7 +33685,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(538u); +x_1 = lean_unsigned_to_nat(607u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30130,7 +33697,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(538u); +x_1 = lean_unsigned_to_nat(607u); x_2 = lean_unsigned_to_nat(13u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30235,6 +33802,46 @@ l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__10 = _init_l_Lean_Elab_Tactic lean_mark_persistent(l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__10); l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11 = _init_l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_elabOmegaConfig___closed__11); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__1); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__2); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__3); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__4); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__5); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__6); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__7); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__8); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__9); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__10); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__11); +l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12 = _init_l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt_mkNat___closed__12); +l_Lean_Elab_Tactic_Omega_mkInt___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__1); +l_Lean_Elab_Tactic_Omega_mkInt___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__2); +l_Lean_Elab_Tactic_Omega_mkInt___closed__3 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__3); +l_Lean_Elab_Tactic_Omega_mkInt___closed__4 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__4); +l_Lean_Elab_Tactic_Omega_mkInt___closed__5 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__5); +l_Lean_Elab_Tactic_Omega_mkInt___closed__6 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__6); +l_Lean_Elab_Tactic_Omega_mkInt___closed__7 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__7); +l_Lean_Elab_Tactic_Omega_mkInt___closed__8 = _init_l_Lean_Elab_Tactic_Omega_mkInt___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkInt___closed__8); l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___lambda__1___closed__1); l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_problem___default___closed__1(); @@ -30299,16 +33906,6 @@ l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21 = _init_l_Lean_Elab_Tactic_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__21); l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__22); -l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__23); -l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__24); -l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25); -l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__26); -l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27 = _init_l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__27); l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1 = _init_l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__1); l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__2 = _init_l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__2(); @@ -30329,52 +33926,6 @@ l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__9 = _init_l_Lean_Elab lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__9); l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__10 = _init_l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__10(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_mkCoordinateEvalAtomsEq___closed__10); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__1); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__2); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__3); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__4); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__5); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__6); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__7); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__8); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__9); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__10); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__11); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__12); -l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___spec__1___closed__13); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__1); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__2); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__3); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__4); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__5); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__6); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__7); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__8); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__9); -l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10 = _init_l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega___aux__Lean__Elab__Tactic__Omega__Frontend______macroRules__Lean__Parser__Term__app__1___closed__10); l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__1 = _init_l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__1(); lean_mark_persistent(l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__1); l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__2 = _init_l_panic___at_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___spec__1___closed__2(); @@ -30565,92 +34116,148 @@ l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40 = _init_l_Le lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__40); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__41); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__42); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__43); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__44); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__45); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__46); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__47); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__48); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__49 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__49(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__49); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__50); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__51); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__52); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__53); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__54); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__55); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__56); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__57); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__58); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__59); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__60); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__61); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__62); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__63); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__64); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__65); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__66); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__67); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__68); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__69); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__70); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__71); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__72); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__73); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__74); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__75); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__76); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__77); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__78); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__79); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__80); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__81); -l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__8___closed__82); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__1); l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl___closed__2); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__1); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__2); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__3); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__4); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__5); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__6); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__7); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__8); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__9 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__9); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__11); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__12); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__13); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__14); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__15); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__16); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__17 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__17); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__18); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__19); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__20); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__21); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__22); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__23); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__24); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__25); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__26); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__27); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__28); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__29); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__30); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__31); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__32); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__33); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__34); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__35); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__36); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__37); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__38); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__39); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__40); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__41); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__43); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__44); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__45); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__46); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__47); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__48); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__49); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__50); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__51); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__52); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__53); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__54); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__55); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__1); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__2); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__3); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__4); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__5); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__7); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__8); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__9); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__10); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__11); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__12); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__13); +l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14 = _init_l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__14); l_Lean_Elab_Tactic_Omega_MetaProblem_trivial___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_trivial___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_trivial___closed__1); l_Lean_Elab_Tactic_Omega_MetaProblem_trivial = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_trivial(); @@ -30779,6 +34386,18 @@ l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51 = _init_l_Lean_Elab_Ta lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__51); l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__52); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__53); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__54); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__55); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__56); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__57); +l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___closed__58); l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__1); l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__2(); @@ -30897,6 +34516,36 @@ l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__58 = _init_l_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__58); l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__59); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__60); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__61); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__62); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__63); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__64); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__65); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__66); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__67); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__68); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__69); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__70); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__71); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__72); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__73); +l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__1___closed__74); l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__1 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__1); l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__2 = _init_l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___closed__2(); @@ -30957,6 +34606,10 @@ l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__13 = _init_l_Lean_Elab_Tacti lean_mark_persistent(l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__13); l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__14 = _init_l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__14(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_splitDisjunction___closed__14); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__1); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__2___closed__2); l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__1); l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__3___closed__2(); @@ -30965,20 +34618,16 @@ l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1 = _init_l_Lean_Elab_T lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__1); l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__2); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__1); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__2); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__5___closed__3); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__1); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__2); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__3); -l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__7___closed__4); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4___closed__3); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__1); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__2); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__3); +l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4 = _init_l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__6___closed__4); l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__1); l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__2 = _init_l_Lean_Elab_Tactic_Omega_omegaTactic___lambda__2___closed__2(); @@ -30997,6 +34646,8 @@ l_Lean_Elab_Tactic_Omega_evalOmega___closed__2 = _init_l_Lean_Elab_Tactic_Omega_ lean_mark_persistent(l_Lean_Elab_Tactic_Omega_evalOmega___closed__2); l_Lean_Elab_Tactic_Omega_evalOmega___closed__3 = _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__3(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_evalOmega___closed__3); +l_Lean_Elab_Tactic_Omega_evalOmega___closed__4 = _init_l_Lean_Elab_Tactic_Omega_evalOmega___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_evalOmega___closed__4); l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__1); l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c index ea3f3601a0..c2d1eed65d 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/OmegaM.c @@ -29,6 +29,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__24; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2(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_Omega_analyzeAtom___closed__3; @@ -40,7 +41,9 @@ lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__5; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76; +lean_object* l_Int_add___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_State_atoms___default___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -59,6 +62,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__19; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80; lean_object* l_Lean_Meta_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -66,8 +70,11 @@ lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atoms___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__35; static lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +lean_object* l_Int_ediv___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg___lambda__1(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_Omega_analyzeAtom___closed__10; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__15; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; @@ -75,42 +82,49 @@ uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption(lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen(lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_State_atoms___default; uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l_Nat_sub___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__4; +lean_object* l_Int_sub___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__34; lean_object* l_Lean_Level_ofNat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__6; +lean_object* l_Nat_div___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3(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_Omega_analyzeAtom___closed__63; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__20; -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95; LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_Omega_lookup___spec__7___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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12; uint8_t lean_expr_eqv(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__3; lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__6; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__32; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atoms(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_withoutModifyingState___rarg___closed__1; +lean_object* l_Int_pow(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__25; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__46; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cfg___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_Omega_lookup___spec__1___boxed(lean_object**); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29; @@ -122,13 +136,14 @@ lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; +static lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cfg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_lookup___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*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__12; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__88; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__41; -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; static lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__2; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; static lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__3; @@ -140,11 +155,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2(lean_object LEAN_EXPORT lean_object* l_Lean_HashSet_toList___at_Lean_Elab_Tactic_Omega_lookup___spec__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21; +lean_object* l_Nat_mul___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Tactic_Omega_lookup___spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; +lean_object* l_Nat_add___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; @@ -159,6 +177,8 @@ static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_lookup(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom(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_Omega_analyzeAtom___closed__17; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; @@ -175,19 +195,24 @@ lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_cfg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1; lean_object* l_Lean_Meta_mkListLit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Elab_Tactic_Omega_OmegaM_run___spec__1___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__47; +lean_object* l_Int_mul___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_commitWhen___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__44; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3___closed__1; @@ -195,9 +220,7 @@ LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_Omega_lookup___s static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__2; -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; -static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsCoeffs(lean_object*); lean_object* l_Lean_Expr_int_x3f(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); @@ -208,7 +231,9 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atomsList___boxed(lean_object* LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_Omega_lookup___spec__1(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11; size_t lean_usize_add(size_t, size_t); +static lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4; lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_atoms___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1; @@ -238,6 +263,8 @@ lean_object* l_Lean_Expr_nat_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; static lean_object* l_Lean_Elab_Tactic_Omega_lookup___lambda__3___closed__4; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__43; +lean_object* l_Nat_pow___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3; static lean_object* l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; lean_object* l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_withoutModifyingState___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1238,6 +1265,1063 @@ return x_31; } } } +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_2); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(0); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_3); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec(x_1); +x_8 = lean_box(0); +return x_8; +} +else +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_7); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 0); +x_11 = lean_apply_2(x_1, x_6, x_10); +lean_ctor_set(x_7, 0, x_11); +return x_7; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_7, 0); +lean_inc(x_12); +lean_dec(x_7); +x_13 = lean_apply_2(x_1, x_6, x_12); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HAdd", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HMul", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HSub", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HDiv", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("HPow", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hPow", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_pow___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hDiv", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_div___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hSub", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_sub___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hMul", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_mul___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("hAdd", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_add___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundNat_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +lean_inc(x_1); +x_2 = l_Lean_Expr_getAppFnArgs(x_1); +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 1) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_5; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_2, 1); +lean_inc(x_6); +lean_dec(x_2); +x_7 = lean_ctor_get(x_3, 1); +lean_inc(x_7); +lean_dec(x_3); +x_8 = lean_ctor_get(x_4, 1); +lean_inc(x_8); +lean_dec(x_4); +x_9 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; +x_10 = lean_string_dec_eq(x_8, x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1; +x_12 = lean_string_dec_eq(x_8, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2; +x_14 = lean_string_dec_eq(x_8, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; +x_16 = lean_string_dec_eq(x_8, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4; +x_18 = lean_string_dec_eq(x_8, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5; +x_20 = lean_string_dec_eq(x_8, x_19); +lean_dec(x_8); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_7); +lean_dec(x_6); +x_21 = l_Lean_Expr_nat_x3f(x_1); +return x_21; +} +else +{ +lean_object* x_22; uint8_t x_23; +x_22 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; +x_23 = lean_string_dec_eq(x_7, x_22); +lean_dec(x_7); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_6); +x_24 = l_Lean_Expr_nat_x3f(x_1); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_array_get_size(x_6); +x_26 = lean_unsigned_to_nat(6u); +x_27 = lean_nat_dec_eq(x_25, x_26); +lean_dec(x_25); +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec(x_6); +x_28 = l_Lean_Expr_nat_x3f(x_1); +return x_28; +} +else +{ +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_dec(x_1); +x_29 = lean_unsigned_to_nat(4u); +x_30 = lean_array_fget(x_6, x_29); +x_31 = lean_unsigned_to_nat(5u); +x_32 = lean_array_fget(x_6, x_31); +lean_dec(x_6); +x_33 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7; +x_34 = l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(x_33, x_30, x_32); +return x_34; +} +} +} +} +else +{ +lean_object* x_35; uint8_t x_36; +lean_dec(x_8); +x_35 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; +x_36 = lean_string_dec_eq(x_7, x_35); +lean_dec(x_7); +if (x_36 == 0) +{ +lean_object* x_37; +lean_dec(x_6); +x_37 = l_Lean_Expr_nat_x3f(x_1); +return x_37; +} +else +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_array_get_size(x_6); +x_39 = lean_unsigned_to_nat(6u); +x_40 = lean_nat_dec_eq(x_38, x_39); +lean_dec(x_38); +if (x_40 == 0) +{ +lean_object* x_41; +lean_dec(x_6); +x_41 = l_Lean_Expr_nat_x3f(x_1); +return x_41; +} +else +{ +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_dec(x_1); +x_42 = lean_unsigned_to_nat(4u); +x_43 = lean_array_fget(x_6, x_42); +x_44 = lean_unsigned_to_nat(5u); +x_45 = lean_array_fget(x_6, x_44); +lean_dec(x_6); +x_46 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9; +x_47 = l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(x_46, x_43, x_45); +return x_47; +} +} +} +} +else +{ +lean_object* x_48; uint8_t x_49; +lean_dec(x_8); +x_48 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; +x_49 = lean_string_dec_eq(x_7, x_48); +lean_dec(x_7); +if (x_49 == 0) +{ +lean_object* x_50; +lean_dec(x_6); +x_50 = l_Lean_Expr_nat_x3f(x_1); +return x_50; +} +else +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_51 = lean_array_get_size(x_6); +x_52 = lean_unsigned_to_nat(6u); +x_53 = lean_nat_dec_eq(x_51, x_52); +lean_dec(x_51); +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_6); +x_54 = l_Lean_Expr_nat_x3f(x_1); +return x_54; +} +else +{ +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_dec(x_1); +x_55 = lean_unsigned_to_nat(4u); +x_56 = lean_array_fget(x_6, x_55); +x_57 = lean_unsigned_to_nat(5u); +x_58 = lean_array_fget(x_6, x_57); +lean_dec(x_6); +x_59 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11; +x_60 = l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(x_59, x_56, x_58); +return x_60; +} +} +} +} +else +{ +lean_object* x_61; uint8_t x_62; +lean_dec(x_8); +x_61 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12; +x_62 = lean_string_dec_eq(x_7, x_61); +lean_dec(x_7); +if (x_62 == 0) +{ +lean_object* x_63; +lean_dec(x_6); +x_63 = l_Lean_Expr_nat_x3f(x_1); +return x_63; +} +else +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_64 = lean_array_get_size(x_6); +x_65 = lean_unsigned_to_nat(6u); +x_66 = lean_nat_dec_eq(x_64, x_65); +lean_dec(x_64); +if (x_66 == 0) +{ +lean_object* x_67; +lean_dec(x_6); +x_67 = l_Lean_Expr_nat_x3f(x_1); +return x_67; +} +else +{ +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_1); +x_68 = lean_unsigned_to_nat(4u); +x_69 = lean_array_fget(x_6, x_68); +x_70 = lean_unsigned_to_nat(5u); +x_71 = lean_array_fget(x_6, x_70); +lean_dec(x_6); +x_72 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13; +x_73 = l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(x_72, x_69, x_71); +return x_73; +} +} +} +} +else +{ +lean_object* x_74; uint8_t x_75; +lean_dec(x_8); +x_74 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14; +x_75 = lean_string_dec_eq(x_7, x_74); +lean_dec(x_7); +if (x_75 == 0) +{ +lean_object* x_76; +lean_dec(x_6); +x_76 = l_Lean_Expr_nat_x3f(x_1); +return x_76; +} +else +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_77 = lean_array_get_size(x_6); +x_78 = lean_unsigned_to_nat(6u); +x_79 = lean_nat_dec_eq(x_77, x_78); +lean_dec(x_77); +if (x_79 == 0) +{ +lean_object* x_80; +lean_dec(x_6); +x_80 = l_Lean_Expr_nat_x3f(x_1); +return x_80; +} +else +{ +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_dec(x_1); +x_81 = lean_unsigned_to_nat(4u); +x_82 = lean_array_fget(x_6, x_81); +x_83 = lean_unsigned_to_nat(5u); +x_84 = lean_array_fget(x_6, x_83); +lean_dec(x_6); +x_85 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15; +x_86 = l_Lean_Elab_Tactic_Omega_groundNat_x3f_op(x_85, x_82, x_84); +return x_86; +} +} +} +} +else +{ +lean_object* x_87; uint8_t x_88; +lean_dec(x_8); +x_87 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2; +x_88 = lean_string_dec_eq(x_7, x_87); +lean_dec(x_7); +if (x_88 == 0) +{ +lean_object* x_89; +lean_dec(x_6); +x_89 = l_Lean_Expr_nat_x3f(x_1); +return x_89; +} +else +{ +lean_object* x_90; lean_object* x_91; uint8_t x_92; +x_90 = lean_array_get_size(x_6); +x_91 = lean_unsigned_to_nat(3u); +x_92 = lean_nat_dec_eq(x_90, x_91); +lean_dec(x_90); +if (x_92 == 0) +{ +lean_object* x_93; +lean_dec(x_6); +x_93 = l_Lean_Expr_nat_x3f(x_1); +return x_93; +} +else +{ +lean_object* x_94; lean_object* x_95; +lean_dec(x_1); +x_94 = lean_unsigned_to_nat(2u); +x_95 = lean_array_fget(x_6, x_94); +lean_dec(x_6); +x_1 = x_95; +goto _start; +} +} +} +} +else +{ +lean_object* x_97; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_97 = l_Lean_Expr_nat_x3f(x_1); +return x_97; +} +} +else +{ +lean_object* x_98; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_98 = l_Lean_Expr_nat_x3f(x_1); +return x_98; +} +} +else +{ +lean_object* x_99; +lean_dec(x_3); +lean_dec(x_2); +x_99 = l_Lean_Expr_nat_x3f(x_1); +return x_99; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_2); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(0); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +lean_dec(x_4); +x_7 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_3); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec(x_1); +x_8 = lean_box(0); +return x_8; +} +else +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_7); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_7, 0); +x_11 = lean_nat_to_int(x_6); +x_12 = lean_nat_to_int(x_10); +x_13 = lean_apply_2(x_1, x_11, x_12); +lean_ctor_set(x_7, 0, x_13); +return x_7; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_7, 0); +lean_inc(x_14); +lean_dec(x_7); +x_15 = lean_nat_to_int(x_6); +x_16 = lean_nat_to_int(x_14); +x_17 = lean_apply_2(x_1, x_15, x_16); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Int_ediv___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Int_sub___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Int_mul___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Int_add___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_groundInt_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +lean_inc(x_1); +x_2 = l_Lean_Expr_getAppFnArgs(x_1); +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 1) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_5; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_2, 1); +lean_inc(x_6); +lean_dec(x_2); +x_7 = lean_ctor_get(x_3, 1); +lean_inc(x_7); +lean_dec(x_3); +x_8 = lean_ctor_get(x_4, 1); +lean_inc(x_8); +lean_dec(x_4); +x_9 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; +x_10 = lean_string_dec_eq(x_8, x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1; +x_12 = lean_string_dec_eq(x_8, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2; +x_14 = lean_string_dec_eq(x_8, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; +x_16 = lean_string_dec_eq(x_8, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4; +x_18 = lean_string_dec_eq(x_8, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5; +x_20 = lean_string_dec_eq(x_8, x_19); +lean_dec(x_8); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_7); +lean_dec(x_6); +x_21 = l_Lean_Expr_int_x3f(x_1); +return x_21; +} +else +{ +lean_object* x_22; uint8_t x_23; +x_22 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; +x_23 = lean_string_dec_eq(x_7, x_22); +lean_dec(x_7); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_6); +x_24 = l_Lean_Expr_int_x3f(x_1); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_array_get_size(x_6); +x_26 = lean_unsigned_to_nat(6u); +x_27 = lean_nat_dec_eq(x_25, x_26); +lean_dec(x_25); +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec(x_6); +x_28 = l_Lean_Expr_int_x3f(x_1); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_1); +x_29 = lean_unsigned_to_nat(4u); +x_30 = lean_array_fget(x_6, x_29); +x_31 = lean_unsigned_to_nat(5u); +x_32 = lean_array_fget(x_6, x_31); +lean_dec(x_6); +x_33 = l_Lean_Elab_Tactic_Omega_groundInt_x3f(x_30); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +lean_dec(x_32); +x_34 = lean_box(0); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_33, 0); +lean_inc(x_35); +lean_dec(x_33); +x_36 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_32); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; +lean_dec(x_35); +x_37 = lean_box(0); +return x_37; +} +else +{ +uint8_t x_38; +x_38 = !lean_is_exclusive(x_36); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_36, 0); +x_40 = l_Int_pow(x_35, x_39); +lean_dec(x_39); +lean_dec(x_35); +lean_ctor_set(x_36, 0, x_40); +return x_36; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_36, 0); +lean_inc(x_41); +lean_dec(x_36); +x_42 = l_Int_pow(x_35, x_41); +lean_dec(x_41); +lean_dec(x_35); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +return x_43; +} +} +} +} +} +} +} +else +{ +lean_object* x_44; uint8_t x_45; +lean_dec(x_8); +x_44 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; +x_45 = lean_string_dec_eq(x_7, x_44); +lean_dec(x_7); +if (x_45 == 0) +{ +lean_object* x_46; +lean_dec(x_6); +x_46 = l_Lean_Expr_int_x3f(x_1); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_47 = lean_array_get_size(x_6); +x_48 = lean_unsigned_to_nat(6u); +x_49 = lean_nat_dec_eq(x_47, x_48); +lean_dec(x_47); +if (x_49 == 0) +{ +lean_object* x_50; +lean_dec(x_6); +x_50 = l_Lean_Expr_int_x3f(x_1); +return x_50; +} +else +{ +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_dec(x_1); +x_51 = lean_unsigned_to_nat(4u); +x_52 = lean_array_fget(x_6, x_51); +x_53 = lean_unsigned_to_nat(5u); +x_54 = lean_array_fget(x_6, x_53); +lean_dec(x_6); +x_55 = l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1; +x_56 = l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(x_55, x_52, x_54); +return x_56; +} +} +} +} +else +{ +lean_object* x_57; uint8_t x_58; +lean_dec(x_8); +x_57 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; +x_58 = lean_string_dec_eq(x_7, x_57); +lean_dec(x_7); +if (x_58 == 0) +{ +lean_object* x_59; +lean_dec(x_6); +x_59 = l_Lean_Expr_int_x3f(x_1); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_60 = lean_array_get_size(x_6); +x_61 = lean_unsigned_to_nat(6u); +x_62 = lean_nat_dec_eq(x_60, x_61); +lean_dec(x_60); +if (x_62 == 0) +{ +lean_object* x_63; +lean_dec(x_6); +x_63 = l_Lean_Expr_int_x3f(x_1); +return x_63; +} +else +{ +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_dec(x_1); +x_64 = lean_unsigned_to_nat(4u); +x_65 = lean_array_fget(x_6, x_64); +x_66 = lean_unsigned_to_nat(5u); +x_67 = lean_array_fget(x_6, x_66); +lean_dec(x_6); +x_68 = l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2; +x_69 = l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(x_68, x_65, x_67); +return x_69; +} +} +} +} +else +{ +lean_object* x_70; uint8_t x_71; +lean_dec(x_8); +x_70 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12; +x_71 = lean_string_dec_eq(x_7, x_70); +lean_dec(x_7); +if (x_71 == 0) +{ +lean_object* x_72; +lean_dec(x_6); +x_72 = l_Lean_Expr_int_x3f(x_1); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_73 = lean_array_get_size(x_6); +x_74 = lean_unsigned_to_nat(6u); +x_75 = lean_nat_dec_eq(x_73, x_74); +lean_dec(x_73); +if (x_75 == 0) +{ +lean_object* x_76; +lean_dec(x_6); +x_76 = l_Lean_Expr_int_x3f(x_1); +return x_76; +} +else +{ +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_dec(x_1); +x_77 = lean_unsigned_to_nat(4u); +x_78 = lean_array_fget(x_6, x_77); +x_79 = lean_unsigned_to_nat(5u); +x_80 = lean_array_fget(x_6, x_79); +lean_dec(x_6); +x_81 = l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3; +x_82 = l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(x_81, x_78, x_80); +return x_82; +} +} +} +} +else +{ +lean_object* x_83; uint8_t x_84; +lean_dec(x_8); +x_83 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14; +x_84 = lean_string_dec_eq(x_7, x_83); +lean_dec(x_7); +if (x_84 == 0) +{ +lean_object* x_85; +lean_dec(x_6); +x_85 = l_Lean_Expr_int_x3f(x_1); +return x_85; +} +else +{ +lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_86 = lean_array_get_size(x_6); +x_87 = lean_unsigned_to_nat(6u); +x_88 = lean_nat_dec_eq(x_86, x_87); +lean_dec(x_86); +if (x_88 == 0) +{ +lean_object* x_89; +lean_dec(x_6); +x_89 = l_Lean_Expr_int_x3f(x_1); +return x_89; +} +else +{ +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_dec(x_1); +x_90 = lean_unsigned_to_nat(4u); +x_91 = lean_array_fget(x_6, x_90); +x_92 = lean_unsigned_to_nat(5u); +x_93 = lean_array_fget(x_6, x_92); +lean_dec(x_6); +x_94 = l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4; +x_95 = l_Lean_Elab_Tactic_Omega_groundInt_x3f_op(x_94, x_91, x_93); +return x_95; +} +} +} +} +else +{ +lean_object* x_96; uint8_t x_97; +lean_dec(x_8); +x_96 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2; +x_97 = lean_string_dec_eq(x_7, x_96); +lean_dec(x_7); +if (x_97 == 0) +{ +lean_object* x_98; +lean_dec(x_6); +x_98 = l_Lean_Expr_int_x3f(x_1); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_99 = lean_array_get_size(x_6); +x_100 = lean_unsigned_to_nat(3u); +x_101 = lean_nat_dec_eq(x_99, x_100); +lean_dec(x_99); +if (x_101 == 0) +{ +lean_object* x_102; +lean_dec(x_6); +x_102 = l_Lean_Expr_int_x3f(x_1); +return x_102; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_1); +x_103 = lean_unsigned_to_nat(2u); +x_104 = lean_array_fget(x_6, x_103); +lean_dec(x_6); +x_105 = l_Lean_Elab_Tactic_Omega_groundNat_x3f(x_104); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; +x_106 = lean_box(0); +return x_106; +} +else +{ +uint8_t x_107; +x_107 = !lean_is_exclusive(x_105); +if (x_107 == 0) +{ +lean_object* x_108; lean_object* x_109; +x_108 = lean_ctor_get(x_105, 0); +x_109 = lean_nat_to_int(x_108); +lean_ctor_set(x_105, 0, x_109); +return x_105; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_105, 0); +lean_inc(x_110); +lean_dec(x_105); +x_111 = lean_nat_to_int(x_110); +x_112 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_112, 0, x_111); +return x_112; +} +} +} +} +} +} +else +{ +lean_object* x_113; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_113 = l_Lean_Expr_int_x3f(x_1); +return x_113; +} +} +else +{ +lean_object* x_114; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_114 = l_Lean_Expr_int_x3f(x_1); +return x_114; +} +} +else +{ +lean_object* x_115; +lean_dec(x_3); +lean_dec(x_2); +x_115 = l_Lean_Expr_int_x3f(x_1); +return x_115; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEqReflWithExpectedType(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) { _start: { @@ -1401,7 +2485,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__8() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HDiv", 4); +x_1 = lean_mk_string_from_bytes("HMod", 4); return x_1; } } @@ -1409,7 +2493,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__9() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HMod", 4); +x_1 = lean_mk_string_from_bytes("Min", 3); return x_1; } } @@ -1417,7 +2501,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__10() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Min", 3); +x_1 = lean_mk_string_from_bytes("Max", 3); return x_1; } } @@ -1425,7 +2509,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__11() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Max", 3); +x_1 = lean_mk_string_from_bytes("max", 3); return x_1; } } @@ -1433,39 +2517,31 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__12() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("max", 3); +x_1 = lean_mk_string_from_bytes("le_max_left", 11); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__13() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le_max_left", 11); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__12; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__13; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__14; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__13; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__15() { _start: { lean_object* x_1; @@ -1473,27 +2549,27 @@ x_1 = lean_mk_string_from_bytes("le_max_right", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__16; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__15; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__18() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__17; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__16; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__18() { _start: { lean_object* x_1; @@ -1501,7 +2577,7 @@ x_1 = lean_mk_string_from_bytes("min", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__20() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__19() { _start: { lean_object* x_1; @@ -1509,27 +2585,27 @@ x_1 = lean_mk_string_from_bytes("min_le_left", 11); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__20; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__19; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__22() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__20; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__23() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__22() { _start: { lean_object* x_1; @@ -1537,27 +2613,27 @@ x_1 = lean_mk_string_from_bytes("min_le_right", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__24() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__23; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__22; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__25() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__24; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__23; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__25() { _start: { lean_object* x_1; @@ -1565,23 +2641,7 @@ x_1 = lean_mk_string_from_bytes("hMod", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__27() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HPow", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hPow", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26() { _start: { lean_object* x_1; @@ -1589,7 +2649,7 @@ x_1 = lean_mk_string_from_bytes("LT", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__27() { _start: { lean_object* x_1; @@ -1597,17 +2657,17 @@ x_1 = lean_mk_string_from_bytes("lt", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__27; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__32() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1619,22 +2679,50 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__33() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__32; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__29; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__33() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("instLTNat", 9); +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__33; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -1652,41 +2740,13 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instLTNat", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__38() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(0u); x_2 = l_Lean_mkNatLit(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37() { _start: { lean_object* x_1; @@ -1694,16 +2754,46 @@ x_1 = lean_mk_string_from_bytes("pos_pow_of_pos", 14); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__41() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__38; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ofNat_pos_of_pos", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__41() { +_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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42() { _start: { @@ -1718,20 +2808,18 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__43() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat_pos_of_pos", 16); +x_1 = lean_mk_string_from_bytes("emod_nonneg", 11); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__44() { _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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; -x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__43; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__43; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45() { @@ -1748,7 +2836,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__46() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("emod_nonneg", 11); +x_1 = lean_mk_string_from_bytes("ne_of_gt", 8); return x_1; } } @@ -1776,7 +2864,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__49() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ne_of_gt", 8); +x_1 = lean_mk_string_from_bytes("ofNat", 5); return x_1; } } @@ -1803,42 +2891,14 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("ofNat", 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; x_3 = l_Lean_Expr_app___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53() { _start: { lean_object* x_1; @@ -1846,27 +2906,27 @@ x_1 = lean_mk_string_from_bytes("emod_lt_of_pos", 14); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__53; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1876,7 +2936,7 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57() { _start: { lean_object* x_1; @@ -1884,16 +2944,48 @@ x_1 = lean_mk_string_from_bytes("instLTInt", 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__57; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; +x_3 = l_Lean_Expr_app___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__61() { +_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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__37; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62() { _start: { @@ -1907,62 +2999,22 @@ return x_3; static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__54; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; -x_3 = l_Lean_Expr_app___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64() { -_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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; -x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__40; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hDiv", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("Ne", 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65() { _start: { lean_object* x_1; lean_object* x_2; @@ -1971,39 +3023,39 @@ x_2 = l_Lean_Level_ofNat(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; 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_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__64; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__31; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28; x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__6; x_3 = l_Lean_Expr_const___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69() { _start: { lean_object* x_1; @@ -2011,27 +3063,27 @@ x_1 = lean_mk_string_from_bytes("mul_ediv_self_le", 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__69; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__70; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72() { _start: { lean_object* x_1; @@ -2039,27 +3091,27 @@ x_1 = lean_mk_string_from_bytes("lt_mul_ediv_self_add", 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__73; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75() { _start: { lean_object* x_1; @@ -2067,27 +3119,27 @@ x_1 = lean_mk_string_from_bytes("ofNat_nonneg", 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__76; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78() { _start: { lean_object* x_1; @@ -2095,7 +3147,7 @@ x_1 = lean_mk_string_from_bytes("Fin", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79() { _start: { lean_object* x_1; @@ -2103,7 +3155,7 @@ x_1 = lean_mk_string_from_bytes("val", 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80() { _start: { lean_object* x_1; @@ -2111,11 +3163,47 @@ x_1 = lean_mk_string_from_bytes("isLt", 4); return x_1; } } +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__80; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("natAbs", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("le_natAbs", 9); +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__85() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; +x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__84; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -2135,110 +3223,58 @@ static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("natAbs", 6); +x_1 = lean_mk_string_from_bytes("neg_le_natAbs", 13); return x_1; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__88() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("le_natAbs", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; +x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; +x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__88; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("neg_le_natAbs", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92() { -_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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; -x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; -x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("HSub", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("hSub", 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_from_bytes("ofNat_sub_dichotomy", 19); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91() { _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_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__1; x_2 = l_Lean_Elab_Tactic_Omega_atomsCoeffs___rarg___closed__2; x_3 = l_Lean_Elab_Tactic_Omega_atomsList___rarg___closed__1; -x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96; +x_4 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98() { +static lean_object* _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97; +x_2 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } @@ -2366,12 +3402,12 @@ x_48 = lean_string_dec_eq(x_46, x_47); if (x_48 == 0) { lean_object* x_49; uint8_t x_50; -x_49 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__8; +x_49 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4; x_50 = lean_string_dec_eq(x_46, x_49); if (x_50 == 0) { lean_object* x_51; uint8_t x_52; -x_51 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__9; +x_51 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__8; x_52 = lean_string_dec_eq(x_46, x_51); if (x_52 == 0) { @@ -2380,12 +3416,12 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_53 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__10; +x_53 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__9; x_54 = lean_string_dec_eq(x_46, x_53); if (x_54 == 0) { lean_object* x_55; uint8_t x_56; -x_55 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__11; +x_55 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__10; x_56 = lean_string_dec_eq(x_46, x_55); lean_dec(x_46); if (x_56 == 0) @@ -2402,7 +3438,7 @@ return x_58; else { lean_object* x_59; uint8_t x_60; -x_59 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__12; +x_59 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__11; x_60 = lean_string_dec_eq(x_45, x_59); lean_dec(x_45); if (x_60 == 0) @@ -2440,11 +3476,11 @@ x_69 = lean_array_fget(x_44, x_68); x_70 = lean_unsigned_to_nat(3u); x_71 = lean_array_fget(x_44, x_70); lean_dec(x_44); -x_72 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__15; +x_72 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__14; lean_inc(x_71); lean_inc(x_69); x_73 = l_Lean_mkAppB(x_72, x_69, x_71); -x_74 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__18; +x_74 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__17; x_75 = l_Lean_mkAppB(x_74, x_69, x_71); x_76 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_77 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_76, x_73); @@ -2461,7 +3497,7 @@ else { lean_object* x_80; uint8_t x_81; lean_dec(x_46); -x_80 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__19; +x_80 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__18; x_81 = lean_string_dec_eq(x_45, x_80); lean_dec(x_45); if (x_81 == 0) @@ -2499,11 +3535,11 @@ x_90 = lean_array_fget(x_44, x_89); x_91 = lean_unsigned_to_nat(3u); x_92 = lean_array_fget(x_44, x_91); lean_dec(x_44); -x_93 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__22; +x_93 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__21; lean_inc(x_92); lean_inc(x_90); x_94 = l_Lean_mkAppB(x_93, x_90, x_92); -x_95 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__25; +x_95 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__24; x_96 = l_Lean_mkAppB(x_95, x_90, x_92); x_97 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_98 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_97, x_94); @@ -2520,7 +3556,7 @@ else { lean_object* x_101; uint8_t x_102; lean_dec(x_46); -x_101 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__26; +x_101 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__25; x_102 = lean_string_dec_eq(x_45, x_101); lean_dec(x_45); if (x_102 == 0) @@ -2592,7 +3628,7 @@ lean_dec(x_115); x_120 = lean_ctor_get(x_116, 1); lean_inc(x_120); lean_dec(x_116); -x_121 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__27; +x_121 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5; x_122 = lean_string_dec_eq(x_120, x_121); if (x_122 == 0) { @@ -2762,7 +3798,7 @@ return x_156; else { lean_object* x_157; uint8_t x_158; -x_157 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28; +x_157 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; x_158 = lean_string_dec_eq(x_152, x_157); lean_dec(x_152); if (x_158 == 0) @@ -2842,10 +3878,10 @@ lean_dec(x_170); if (x_171 == 0) { lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_172 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__33; -x_173 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__35; -x_174 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__38; -x_175 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; +x_172 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; +x_173 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__32; +x_174 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__35; +x_175 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__36; lean_inc(x_165); x_176 = l_Lean_mkApp4(x_172, x_173, x_174, x_175, x_165); x_177 = l_Lean_Meta_mkDecideProof(x_176, x_5, x_6, x_7, x_8, x_9); @@ -2857,20 +3893,20 @@ if (x_178 == 0) { 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; x_179 = lean_ctor_get(x_177, 0); -x_180 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; +x_180 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; x_181 = l_Lean_mkApp3(x_180, x_165, x_166, x_179); -x_182 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_182 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; x_183 = l_Lean_mkAppB(x_182, x_146, x_181); -x_184 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; -x_185 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; +x_184 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_185 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; lean_inc(x_183); lean_inc(x_113); x_186 = l_Lean_mkApp3(x_184, x_113, x_185, x_183); -x_187 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_187 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; lean_inc(x_113); lean_inc(x_111); x_188 = l_Lean_mkApp3(x_187, x_111, x_113, x_186); -x_189 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_189 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; x_190 = l_Lean_mkApp3(x_189, x_111, x_113, x_183); x_191 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_192 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_191, x_188); @@ -2886,20 +3922,20 @@ x_195 = lean_ctor_get(x_177, 1); lean_inc(x_195); lean_inc(x_194); lean_dec(x_177); -x_196 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; +x_196 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__39; x_197 = l_Lean_mkApp3(x_196, x_165, x_166, x_194); -x_198 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; +x_198 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__42; x_199 = l_Lean_mkAppB(x_198, x_146, x_197); -x_200 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; -x_201 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; +x_200 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_201 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__52; lean_inc(x_199); lean_inc(x_113); x_202 = l_Lean_mkApp3(x_200, x_113, x_201, x_199); -x_203 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_203 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; lean_inc(x_113); lean_inc(x_111); x_204 = l_Lean_mkApp3(x_203, x_111, x_113, x_202); -x_205 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_205 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; x_206 = l_Lean_mkApp3(x_205, x_111, x_113, x_199); x_207 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_208 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_207, x_204); @@ -3104,7 +4140,7 @@ else { lean_object* x_231; uint8_t x_232; lean_dec(x_120); -x_231 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__28; +x_231 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6; x_232 = lean_string_dec_eq(x_119, x_231); lean_dec(x_119); if (x_232 == 0) @@ -3182,10 +4218,10 @@ lean_dec(x_244); if (x_246 == 0) { lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_247 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__33; -x_248 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; -x_249 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; -x_250 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63; +x_247 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__30; +x_248 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +x_249 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; +x_250 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; lean_inc(x_239); x_251 = l_Lean_mkApp4(x_247, x_248, x_249, x_250, x_239); x_252 = l_Lean_Meta_mkDecideProof(x_251, x_5, x_6, x_7, x_8, x_9); @@ -3197,17 +4233,17 @@ if (x_253 == 0) { 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; x_254 = lean_ctor_get(x_252, 0); -x_255 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; +x_255 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; x_256 = l_Lean_mkApp3(x_255, x_239, x_240, x_254); -x_257 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; +x_257 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; lean_inc(x_256); lean_inc(x_113); x_258 = l_Lean_mkApp3(x_257, x_113, x_250, x_256); -x_259 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_259 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; lean_inc(x_113); lean_inc(x_111); x_260 = l_Lean_mkApp3(x_259, x_111, x_113, x_258); -x_261 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_261 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; x_262 = l_Lean_mkApp3(x_261, x_111, x_113, x_256); x_263 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_264 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_263, x_260); @@ -3223,17 +4259,17 @@ x_267 = lean_ctor_get(x_252, 1); lean_inc(x_267); lean_inc(x_266); lean_dec(x_252); -x_268 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__65; +x_268 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; x_269 = l_Lean_mkApp3(x_268, x_239, x_240, x_266); -x_270 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__51; +x_270 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; lean_inc(x_269); lean_inc(x_113); x_271 = l_Lean_mkApp3(x_270, x_113, x_250, x_269); -x_272 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__48; +x_272 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__45; lean_inc(x_113); lean_inc(x_111); x_273 = l_Lean_mkApp3(x_272, x_111, x_113, x_271); -x_274 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__58; +x_274 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__55; x_275 = l_Lean_mkApp3(x_274, x_111, x_113, x_269); x_276 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_277 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_276, x_273); @@ -3357,7 +4393,7 @@ else { lean_object* x_292; uint8_t x_293; lean_dec(x_46); -x_292 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__66; +x_292 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8; x_293 = lean_string_dec_eq(x_45, x_292); lean_dec(x_45); if (x_293 == 0) @@ -3432,13 +4468,13 @@ lean_dec(x_308); if (x_310 == 0) { 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; -x_311 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; -x_312 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; -x_313 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__63; +x_311 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__67; +x_312 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__56; +x_313 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__60; lean_inc(x_304); x_314 = l_Lean_mkApp3(x_311, x_312, x_304, x_313); -x_315 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__72; -x_316 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__62; +x_315 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__68; +x_316 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__59; lean_inc(x_304); x_317 = l_Lean_mkApp4(x_315, x_312, x_316, x_313, x_304); lean_inc(x_8); @@ -3463,11 +4499,11 @@ if (x_322 == 0) { 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; x_323 = lean_ctor_get(x_321, 0); -x_324 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75; +x_324 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; lean_inc(x_304); lean_inc(x_302); x_325 = l_Lean_mkApp3(x_324, x_302, x_304, x_319); -x_326 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; +x_326 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; x_327 = l_Lean_mkApp3(x_326, x_302, x_304, x_323); x_328 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_329 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_328, x_325); @@ -3483,11 +4519,11 @@ x_332 = lean_ctor_get(x_321, 1); lean_inc(x_332); lean_inc(x_331); lean_dec(x_321); -x_333 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__75; +x_333 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__71; lean_inc(x_304); lean_inc(x_302); x_334 = l_Lean_mkApp3(x_333, x_302, x_304, x_319); -x_335 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; +x_335 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__74; x_336 = l_Lean_mkApp3(x_335, x_302, x_304, x_331); x_337 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; x_338 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_337, x_334); @@ -3658,7 +4694,7 @@ lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; x_370 = lean_unsigned_to_nat(2u); x_371 = lean_array_fget(x_44, x_370); lean_dec(x_44); -x_372 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__81; +x_372 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__77; lean_inc(x_371); x_373 = l_Lean_Expr_app___override(x_372, x_371); x_374 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1; @@ -3696,7 +4732,7 @@ x_384 = lean_string_dec_eq(x_383, x_366); if (x_384 == 0) { lean_object* x_385; uint8_t x_386; -x_385 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; +x_385 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; x_386 = lean_string_dec_eq(x_383, x_385); lean_dec(x_383); if (x_386 == 0) @@ -3712,7 +4748,7 @@ return x_387; else { lean_object* x_388; uint8_t x_389; -x_388 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; +x_388 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; x_389 = lean_string_dec_eq(x_382, x_388); lean_dec(x_382); if (x_389 == 0) @@ -3746,7 +4782,7 @@ x_394 = lean_array_fget(x_381, x_360); x_395 = lean_unsigned_to_nat(1u); x_396 = lean_array_fget(x_381, x_395); lean_dec(x_381); -x_397 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; +x_397 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; x_398 = l_Lean_mkAppB(x_397, x_394, x_396); x_399 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_398); x_400 = lean_alloc_ctor(0, 2, 0); @@ -3761,7 +4797,7 @@ else { lean_object* x_401; uint8_t x_402; lean_dec(x_383); -x_401 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; +x_401 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; x_402 = lean_string_dec_eq(x_382, x_401); lean_dec(x_382); if (x_402 == 0) @@ -3794,10 +4830,10 @@ else 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; x_408 = lean_array_fget(x_381, x_360); lean_dec(x_381); -x_409 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; +x_409 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; lean_inc(x_408); x_410 = l_Lean_Expr_app___override(x_409, x_408); -x_411 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; +x_411 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; x_412 = l_Lean_Expr_app___override(x_411, x_408); x_413 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_410); x_414 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_413, x_412); @@ -3872,7 +4908,7 @@ lean_dec(x_419); x_424 = lean_ctor_get(x_420, 1); lean_inc(x_424); lean_dec(x_420); -x_425 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94; +x_425 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3; x_426 = lean_string_dec_eq(x_424, x_425); if (x_426 == 0) { @@ -3881,7 +4917,7 @@ x_427 = lean_string_dec_eq(x_424, x_366); if (x_427 == 0) { lean_object* x_428; uint8_t x_429; -x_428 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; +x_428 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__78; x_429 = lean_string_dec_eq(x_424, x_428); lean_dec(x_424); if (x_429 == 0) @@ -3897,7 +4933,7 @@ return x_430; else { lean_object* x_431; uint8_t x_432; -x_431 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; +x_431 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__79; x_432 = lean_string_dec_eq(x_423, x_431); lean_dec(x_423); if (x_432 == 0) @@ -3931,7 +4967,7 @@ x_437 = lean_array_fget(x_422, x_360); x_438 = lean_unsigned_to_nat(1u); x_439 = lean_array_fget(x_422, x_438); lean_dec(x_422); -x_440 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; +x_440 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__82; x_441 = l_Lean_mkAppB(x_440, x_437, x_439); x_442 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_441); x_443 = lean_alloc_ctor(0, 2, 0); @@ -3946,7 +4982,7 @@ else { lean_object* x_444; uint8_t x_445; lean_dec(x_424); -x_444 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__87; +x_444 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__83; x_445 = lean_string_dec_eq(x_423, x_444); lean_dec(x_423); if (x_445 == 0) @@ -3979,10 +5015,10 @@ else 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; x_451 = lean_array_fget(x_422, x_360); lean_dec(x_422); -x_452 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__90; +x_452 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__86; lean_inc(x_451); x_453 = l_Lean_Expr_app___override(x_452, x_451); -x_454 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93; +x_454 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__89; x_455 = l_Lean_Expr_app___override(x_454, x_451); x_456 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_453); x_457 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_456, x_455); @@ -3998,7 +5034,7 @@ else { lean_object* x_459; uint8_t x_460; lean_dec(x_424); -x_459 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95; +x_459 = l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10; x_460 = lean_string_dec_eq(x_423, x_459); lean_dec(x_423); if (x_460 == 0) @@ -4034,7 +5070,7 @@ x_467 = lean_array_fget(x_422, x_466); x_468 = lean_unsigned_to_nat(5u); x_469 = lean_array_fget(x_422, x_468); lean_dec(x_422); -x_470 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98; +x_470 = l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92; x_471 = l_Lean_mkAppB(x_470, x_467, x_469); x_472 = l_Lean_HashSetImp_insert___at_Lean_CollectMVars_visit___spec__3(x_375, x_471); x_473 = lean_alloc_ctor(0, 2, 0); @@ -5438,6 +6474,44 @@ l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1 = _init_l_Lean_Elab_Tactic_Omeg lean_mark_persistent(l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__1); l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2 = _init_l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_natCast_x3f___closed__2); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__1); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__2); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__3); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__4); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__5); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__6); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__7); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__8); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__9); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__10); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__11); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__12); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__13); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__14); +l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15 = _init_l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundNat_x3f___closed__15); +l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1 = _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__1); +l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2 = _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__2); +l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3 = _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__3); +l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4 = _init_l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Omega_groundInt_x3f___closed__4); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__1); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__2 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__2(); @@ -5622,18 +6696,6 @@ l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91 = _init_l_Lean_Elab_Tactic_Ome lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__91); l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92(); lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__92); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__93); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__94); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__95); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__96); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__97); -l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98 = _init_l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98(); -lean_mark_persistent(l_Lean_Elab_Tactic_Omega_analyzeAtom___closed__98); l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1 = _init_l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1(); lean_mark_persistent(l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_Omega_lookup___spec__2___closed__1); l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_Omega_lookup___lambda__2___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/RCases.c b/stage0/stdlib/Lean/Elab/Tactic/RCases.c index d98bcd737b..52a26beb3c 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/RCases.c +++ b/stage0/stdlib/Lean/Elab/Tactic/RCases.c @@ -367,7 +367,6 @@ static lean_object* l_Lean_Elab_Tactic_RCases_termList_u03a3____x40_Lean_Elab_Ta static lean_object* l_Lean_Elab_Tactic_RCases_evalRIntro___closed__2; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__27___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_RCases_instCoeTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__4; -lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_RCases_evalRCases___closed__1; @@ -445,7 +444,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at_Lean_Elab_Tactic_RCase LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyMAux___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_RCases_RCasesPatt_parse___closed__4; static lean_object* l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__7; -lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_RCases_evalRCases(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_RCases_rcasesCore___rarg___lambda__7___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__44___boxed(lean_object*, lean_object*); @@ -461,6 +459,7 @@ static lean_object* l_Lean_Elab_Tactic_RCases_termList_u03a0____x40_Lean_Elab_Ta lean_object* lean_string_length(lean_object*); static lean_object* l_List_repr___at___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____spec__1___closed__10; static lean_object* l_Lean_Elab_Tactic_RCases_processConstructor___closed__4; +lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_RCases_termList_u03a0____x40_Lean_Elab_Tactic_RCases___hyg_680____closed__5; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -631,6 +630,7 @@ uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___regBuiltin_Lean_Elab_Tactic_RCases_evalObtain_declRange___closed__6; lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_RCases_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr1Nil(lean_object*); +lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_RCases_rcasesCore___spec__6___rarg___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*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Tactic_RCases_tryClearMany_x27___spec__40(lean_object*, lean_object*, size_t, size_t); static lean_object* l___regBuiltin_Lean_Elab_Tactic_RCases_evalRIntro___closed__3; @@ -2191,7 +2191,7 @@ lean_inc(x_4); lean_dec(x_1); x_5 = lean_unsigned_to_nat(1024u); x_6 = lean_nat_dec_le(x_5, x_2); -x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_3, x_5); +x_7 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_3, x_5); x_8 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__3; x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_8); @@ -2243,7 +2243,7 @@ lean_inc(x_25); lean_dec(x_1); x_26 = lean_unsigned_to_nat(1024u); x_27 = lean_nat_dec_le(x_26, x_2); -x_28 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_24, x_26); +x_28 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_24, x_26); x_29 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__8; x_30 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_30, 0, x_29); @@ -2293,7 +2293,7 @@ lean_inc(x_45); lean_dec(x_1); x_46 = lean_unsigned_to_nat(1024u); x_47 = lean_nat_dec_le(x_46, x_2); -x_48 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_45, x_46); +x_48 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_45, x_46); x_49 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__11; x_50 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_50, 0, x_49); @@ -2337,7 +2337,7 @@ lean_inc(x_62); lean_dec(x_1); x_63 = lean_unsigned_to_nat(1024u); x_64 = lean_nat_dec_le(x_63, x_2); -x_65 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_61, x_63); +x_65 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_61, x_63); x_66 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__14; x_67 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_67, 0, x_66); @@ -2391,7 +2391,7 @@ lean_inc(x_84); lean_dec(x_1); x_85 = lean_unsigned_to_nat(1024u); x_86 = lean_nat_dec_le(x_85, x_2); -x_87 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_82, x_85); +x_87 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_82, x_85); x_88 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__17; x_89 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_89, 0, x_88); @@ -2407,7 +2407,7 @@ lean_ctor_set(x_93, 1, x_92); x_94 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_94, 0, x_93); lean_ctor_set(x_94, 1, x_90); -x_95 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2295____rarg(x_84, x_85); +x_95 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_3668____rarg(x_84, x_85); x_96 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_95); @@ -2450,7 +2450,7 @@ lean_inc(x_108); lean_dec(x_1); x_109 = lean_unsigned_to_nat(1024u); x_110 = lean_nat_dec_le(x_109, x_2); -x_111 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_107, x_109); +x_111 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_107, x_109); x_112 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__20; x_113 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_113, 0, x_112); @@ -2502,7 +2502,7 @@ lean_inc(x_129); lean_dec(x_1); x_130 = lean_unsigned_to_nat(1024u); x_131 = lean_nat_dec_le(x_130, x_2); -x_132 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_128, x_130); +x_132 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_128, x_130); x_133 = l___private_Lean_Elab_Tactic_RCases_0__Lean_Elab_Tactic_RCases_reprRCasesPatt____x40_Lean_Elab_Tactic_RCases___hyg_1247____closed__23; x_134 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_134, 0, x_133); diff --git a/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c b/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c new file mode 100644 index 0000000000..61bd358af9 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic/SolveByElim.c @@ -0,0 +1,7695 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic.SolveByElim +// Imports: Lean.Meta.Tactic.SolveByElim Lean.Elab.Tactic.Config +#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 +lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__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_Lean_Elab_Tactic_parseUsing___closed__1; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4; +lean_object* l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11___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 uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_SolveByElim_solveByElim(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_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(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_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6; +lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7; +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(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* l_Lean_Elab_Term_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__9; +lean_object* l_Lean_Syntax_getArgs(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim(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_Tactic_getMainGoal(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_elabConfig___closed__10; +lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(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*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules(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_Elab_Tactic_evalApplyRules___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_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(uint8_t, 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*, lean_object*); +static size_t l_Lean_Elab_Tactic_parseArgs___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(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_evalApplyRules___closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__2(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*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; +static lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2; +lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg___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_Lean_Elab_Tactic_elabConfig___closed__15; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__17; +lean_object* l_Sum_getRight_x3f___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6; +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___lambda__1(uint8_t, uint8_t, lean_object*, 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_Tactic_getGoals___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseUsing(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__6; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__8; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseArgs(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5___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_Elab_Tactic_processSyntax___closed__2; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalApplyRules___closed__2; +uint8_t l_List_isEmpty___rarg(lean_object*); +lean_object* lean_array_to_list(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6; +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(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*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_InfoTree_substitute(lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3; +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4___boxed(lean_object*, lean_object*); +lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6___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* l_Lean_mkOptionalNode(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2; +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_object*); +uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__3(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*); +static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__4; +static lean_object* l_Lean_Elab_Tactic_parseArgs___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__4(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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12___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_Elab_Tactic_evalApplyRules___lambda__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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4; +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1; +lean_object* l_Sum_getLeft_x3f___rarg(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__16; +LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(lean_object*); +static lean_object* l_Lean_Elab_Tactic_processSyntax___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__3(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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__2(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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2(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_evalApplyAssumption_declRange___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__11; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10___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_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_parseUsing___closed__2; +lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___spec__3___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5; +lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg(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_evalApplyAssumption___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__1(lean_object*, lean_object*, uint8_t, 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_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(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*); +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(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*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(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_Elab_Tactic_evalApplyRules___lambda__5(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_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +static lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3; +static lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5; +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption(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_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7___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* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(lean_object*); +lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +lean_object* l_Lean_Meta_evalExpr_x27___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__3(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_evalApplyAssumption___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__3(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*); +extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1; +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__14; +static lean_object* l_Lean_Elab_Tactic_elabConfig___closed__4; +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_Elab_Tactic_replaceMainGoal(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_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4; +static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4; +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Meta", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SolveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SolveByElimConfig", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; +x_3 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +x_10 = 0; +x_11 = l_Lean_Meta_evalExpr_x27___rarg(x_9, x_1, x_10, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_2); +lean_inc(x_1); +x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +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 = 1; +x_22 = lean_usize_add(x_4, x_21); +x_23 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_22; +x_5 = x_23; +x_12 = x_20; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +x_19 = l_Lean_Elab_InfoTree_substitute(x_15, x_18); +lean_inc(x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_20 = lean_apply_7(x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_25 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_24; +x_5 = x_25; +x_12 = x_22; +goto _start; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_20, 1); +lean_inc(x_27); +lean_dec(x_20); +x_28 = lean_ctor_get(x_21, 0); +lean_inc(x_28); +lean_dec(x_21); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_19); +x_30 = 1; +x_31 = lean_usize_add(x_4, x_30); +x_32 = lean_array_uset(x_17, x_4, x_29); +x_4 = x_31; +x_5 = x_32; +x_12 = x_27; +goto _start; +} +} +else +{ +uint8_t x_34; +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_20); +if (x_34 == 0) +{ +return x_20; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_20, 0); +x_36 = lean_ctor_get(x_20, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_20); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(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: +{ +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_array_get_size(x_12); +x_14 = lean_usize_of_nat(x_13); +lean_dec(x_13); +x_15 = 0; +x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_ctor_set(x_3, 0, x_18); +lean_ctor_set(x_16, 0, x_3); +return x_16; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_16, 0); +x_20 = lean_ctor_get(x_16, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_16); +lean_ctor_set(x_3, 0, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_3); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_free_object(x_3); +x_22 = !lean_is_exclusive(x_16); +if (x_22 == 0) +{ +return x_16; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_16, 0); +x_24 = lean_ctor_get(x_16, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_16); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; size_t x_28; size_t x_29; lean_object* x_30; +x_26 = lean_ctor_get(x_3, 0); +lean_inc(x_26); +lean_dec(x_3); +x_27 = lean_array_get_size(x_26); +x_28 = lean_usize_of_nat(x_27); +lean_dec(x_27); +x_29 = 0; +x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_33 = x_30; +} else { + lean_dec_ref(x_30); + x_33 = lean_box(0); +} +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_31); +if (lean_is_scalar(x_33)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_33; +} +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_30, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_38 = x_30; +} else { + lean_dec_ref(x_30); + x_38 = lean_box(0); +} +if (lean_is_scalar(x_38)) { + x_39 = lean_alloc_ctor(1, 2, 0); +} else { + x_39 = x_38; +} +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_37); +return x_39; +} +} +} +else +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_3); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; size_t x_43; size_t x_44; lean_object* x_45; +x_41 = lean_ctor_get(x_3, 0); +x_42 = lean_array_get_size(x_41); +x_43 = lean_usize_of_nat(x_42); +lean_dec(x_42); +x_44 = 0; +x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_45) == 0) +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_45, 0); +lean_ctor_set(x_3, 0, x_47); +lean_ctor_set(x_45, 0, x_3); +return x_45; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_45, 0); +x_49 = lean_ctor_get(x_45, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_45); +lean_ctor_set(x_3, 0, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_3); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +else +{ +uint8_t x_51; +lean_free_object(x_3); +x_51 = !lean_is_exclusive(x_45); +if (x_51 == 0) +{ +return x_45; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_45, 0); +x_53 = lean_ctor_get(x_45, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_45); +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; +} +} +} +else +{ +lean_object* x_55; lean_object* x_56; size_t x_57; size_t x_58; lean_object* x_59; +x_55 = lean_ctor_get(x_3, 0); +lean_inc(x_55); +lean_dec(x_3); +x_56 = lean_array_get_size(x_55); +x_57 = lean_usize_of_nat(x_56); +lean_dec(x_56); +x_58 = 0; +x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +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; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_62 = x_59; +} else { + lean_dec_ref(x_59); + x_62 = lean_box(0); +} +x_63 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_63, 0, x_60); +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_62; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_61); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_59, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_67 = x_59; +} else { + lean_dec_ref(x_59); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +x_19 = l_Lean_Elab_InfoTree_substitute(x_15, x_18); +lean_inc(x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_20 = lean_apply_7(x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_25 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_24; +x_5 = x_25; +x_12 = x_22; +goto _start; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_20, 1); +lean_inc(x_27); +lean_dec(x_20); +x_28 = lean_ctor_get(x_21, 0); +lean_inc(x_28); +lean_dec(x_21); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_19); +x_30 = 1; +x_31 = lean_usize_add(x_4, x_30); +x_32 = lean_array_uset(x_17, x_4, x_29); +x_4 = x_31; +x_5 = x_32; +x_12 = x_27; +goto _start; +} +} +else +{ +uint8_t x_34; +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_20); +if (x_34 == 0) +{ +return x_20; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_20, 0); +x_36 = lean_ctor_get(x_20, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_20); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__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, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_ctor_get(x_3, 1); +x_14 = lean_ctor_get(x_3, 2); +x_15 = lean_ctor_get(x_3, 3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_array_get_size(x_13); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +if (lean_obj_tag(x_22) == 0) +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 0); +lean_ctor_set(x_3, 1, x_24); +lean_ctor_set(x_3, 0, x_17); +lean_ctor_set(x_22, 0, x_3); +return x_22; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_22, 0); +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_22); +lean_ctor_set(x_3, 1, x_25); +lean_ctor_set(x_3, 0, x_17); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_3); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +else +{ +uint8_t x_28; +lean_dec(x_17); +lean_free_object(x_3); +lean_dec(x_15); +lean_dec(x_14); +x_28 = !lean_is_exclusive(x_22); +if (x_28 == 0) +{ +return x_22; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_22, 0); +x_30 = lean_ctor_get(x_22, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_22); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +else +{ +uint8_t x_32; +lean_free_object(x_3); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_32 = !lean_is_exclusive(x_16); +if (x_32 == 0) +{ +return x_16; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_16, 0); +x_34 = lean_ctor_get(x_16, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_16); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; lean_object* x_40; lean_object* x_41; +x_36 = lean_ctor_get(x_3, 0); +x_37 = lean_ctor_get(x_3, 1); +x_38 = lean_ctor_get(x_3, 2); +x_39 = lean_ctor_get_usize(x_3, 4); +x_40 = lean_ctor_get(x_3, 3); +lean_inc(x_40); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__4(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; +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); +x_44 = lean_array_get_size(x_37); +x_45 = lean_usize_of_nat(x_44); +lean_dec(x_44); +x_46 = 0; +x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_50 = x_47; +} else { + lean_dec_ref(x_47); + x_50 = lean_box(0); +} +x_51 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_51, 0, x_42); +lean_ctor_set(x_51, 1, x_48); +lean_ctor_set(x_51, 2, x_38); +lean_ctor_set(x_51, 3, x_40); +lean_ctor_set_usize(x_51, 4, x_39); +if (lean_is_scalar(x_50)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_50; +} +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_49); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_dec(x_42); +lean_dec(x_40); +lean_dec(x_38); +x_53 = lean_ctor_get(x_47, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_47, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_55 = x_47; +} else { + lean_dec_ref(x_47); + x_55 = lean_box(0); +} +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(1, 2, 0); +} else { + x_56 = x_55; +} +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; +} +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_40); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_57 = lean_ctor_get(x_41, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_41, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + x_59 = x_41; +} else { + lean_dec_ref(x_41); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_2); +lean_inc(x_1); +x_18 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +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 = 1; +x_22 = lean_usize_add(x_4, x_21); +x_23 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_22; +x_5 = x_23; +x_12 = x_20; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +x_19 = l_Lean_Elab_InfoTree_substitute(x_15, x_18); +lean_inc(x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_20 = lean_apply_7(x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_25 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_24; +x_5 = x_25; +x_12 = x_22; +goto _start; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_20, 1); +lean_inc(x_27); +lean_dec(x_20); +x_28 = lean_ctor_get(x_21, 0); +lean_inc(x_28); +lean_dec(x_21); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_19); +x_30 = 1; +x_31 = lean_usize_add(x_4, x_30); +x_32 = lean_array_uset(x_17, x_4, x_29); +x_4 = x_31; +x_5 = x_32; +x_12 = x_27; +goto _start; +} +} +else +{ +uint8_t x_34; +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_20); +if (x_34 == 0) +{ +return x_20; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_20, 0); +x_36 = lean_ctor_get(x_20, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_20); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(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: +{ +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_array_get_size(x_12); +x_14 = lean_usize_of_nat(x_13); +lean_dec(x_13); +x_15 = 0; +x_16 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_14, x_15, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_ctor_set(x_3, 0, x_18); +lean_ctor_set(x_16, 0, x_3); +return x_16; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_16, 0); +x_20 = lean_ctor_get(x_16, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_16); +lean_ctor_set(x_3, 0, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_3); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_free_object(x_3); +x_22 = !lean_is_exclusive(x_16); +if (x_22 == 0) +{ +return x_16; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_16, 0); +x_24 = lean_ctor_get(x_16, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_16); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; size_t x_28; size_t x_29; lean_object* x_30; +x_26 = lean_ctor_get(x_3, 0); +lean_inc(x_26); +lean_dec(x_3); +x_27 = lean_array_get_size(x_26); +x_28 = lean_usize_of_nat(x_27); +lean_dec(x_27); +x_29 = 0; +x_30 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_28, x_29, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_33 = x_30; +} else { + lean_dec_ref(x_30); + x_33 = lean_box(0); +} +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_31); +if (lean_is_scalar(x_33)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_33; +} +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_30, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_38 = x_30; +} else { + lean_dec_ref(x_30); + x_38 = lean_box(0); +} +if (lean_is_scalar(x_38)) { + x_39 = lean_alloc_ctor(1, 2, 0); +} else { + x_39 = x_38; +} +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_37); +return x_39; +} +} +} +else +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_3); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; size_t x_43; size_t x_44; lean_object* x_45; +x_41 = lean_ctor_get(x_3, 0); +x_42 = lean_array_get_size(x_41); +x_43 = lean_usize_of_nat(x_42); +lean_dec(x_42); +x_44 = 0; +x_45 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_43, x_44, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_45) == 0) +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_45, 0); +lean_ctor_set(x_3, 0, x_47); +lean_ctor_set(x_45, 0, x_3); +return x_45; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_45, 0); +x_49 = lean_ctor_get(x_45, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_45); +lean_ctor_set(x_3, 0, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_3); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +else +{ +uint8_t x_51; +lean_free_object(x_3); +x_51 = !lean_is_exclusive(x_45); +if (x_51 == 0) +{ +return x_45; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_45, 0); +x_53 = lean_ctor_get(x_45, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_45); +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; +} +} +} +else +{ +lean_object* x_55; lean_object* x_56; size_t x_57; size_t x_58; lean_object* x_59; +x_55 = lean_ctor_get(x_3, 0); +lean_inc(x_55); +lean_dec(x_3); +x_56 = lean_array_get_size(x_55); +x_57 = lean_usize_of_nat(x_56); +lean_dec(x_56); +x_58 = 0; +x_59 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_57, x_58, x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +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; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_62 = x_59; +} else { + lean_dec_ref(x_59); + x_62 = lean_box(0); +} +x_63 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_63, 0, x_60); +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_62; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_61); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_59, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_59, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_67 = x_59; +} else { + lean_dec_ref(x_59); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_array_uget(x_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +x_19 = l_Lean_Elab_InfoTree_substitute(x_15, x_18); +lean_inc(x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_20 = lean_apply_7(x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_25 = lean_array_uset(x_17, x_4, x_19); +x_4 = x_24; +x_5 = x_25; +x_12 = x_22; +goto _start; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_20, 1); +lean_inc(x_27); +lean_dec(x_20); +x_28 = lean_ctor_get(x_21, 0); +lean_inc(x_28); +lean_dec(x_21); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_19); +x_30 = 1; +x_31 = lean_usize_add(x_4, x_30); +x_32 = lean_array_uset(x_17, x_4, x_29); +x_4 = x_31; +x_5 = x_32; +x_12 = x_27; +goto _start; +} +} +else +{ +uint8_t x_34; +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_20); +if (x_34 == 0) +{ +return x_20; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_20, 0); +x_36 = lean_ctor_get(x_20, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_20); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__8(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: +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_ctor_get(x_3, 1); +x_14 = lean_ctor_get(x_3, 2); +x_15 = lean_ctor_get(x_3, 3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_16 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_array_get_size(x_13); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_20, x_21, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +if (lean_obj_tag(x_22) == 0) +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 0); +lean_ctor_set(x_3, 1, x_24); +lean_ctor_set(x_3, 0, x_17); +lean_ctor_set(x_22, 0, x_3); +return x_22; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_22, 0); +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_22); +lean_ctor_set(x_3, 1, x_25); +lean_ctor_set(x_3, 0, x_17); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_3); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +else +{ +uint8_t x_28; +lean_dec(x_17); +lean_free_object(x_3); +lean_dec(x_15); +lean_dec(x_14); +x_28 = !lean_is_exclusive(x_22); +if (x_28 == 0) +{ +return x_22; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_22, 0); +x_30 = lean_ctor_get(x_22, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_22); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +else +{ +uint8_t x_32; +lean_free_object(x_3); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_32 = !lean_is_exclusive(x_16); +if (x_32 == 0) +{ +return x_16; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_16, 0); +x_34 = lean_ctor_get(x_16, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_16); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; lean_object* x_40; lean_object* x_41; +x_36 = lean_ctor_get(x_3, 0); +x_37 = lean_ctor_get(x_3, 1); +x_38 = lean_ctor_get(x_3, 2); +x_39 = lean_ctor_get_usize(x_3, 4); +x_40 = lean_ctor_get(x_3, 3); +lean_inc(x_40); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_3); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +lean_inc(x_1); +x_41 = l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Tactic_elabConfig___spec__9(x_1, x_2, x_36, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; lean_object* x_47; +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); +x_44 = lean_array_get_size(x_37); +x_45 = lean_usize_of_nat(x_44); +lean_dec(x_44); +x_46 = 0; +x_47 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_45, x_46, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_43); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_50 = x_47; +} else { + lean_dec_ref(x_47); + x_50 = lean_box(0); +} +x_51 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_51, 0, x_42); +lean_ctor_set(x_51, 1, x_48); +lean_ctor_set(x_51, 2, x_38); +lean_ctor_set(x_51, 3, x_40); +lean_ctor_set_usize(x_51, 4, x_39); +if (lean_is_scalar(x_50)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_50; +} +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_49); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_dec(x_42); +lean_dec(x_40); +lean_dec(x_38); +x_53 = lean_ctor_get(x_47, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_47, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_55 = x_47; +} else { + lean_dec_ref(x_47); + x_55 = lean_box(0); +} +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(1, 2, 0); +} else { + x_56 = x_55; +} +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; +} +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_40); +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_57 = lean_ctor_get(x_41, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_41, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + x_59 = x_41; +} else { + lean_dec_ref(x_41); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(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: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___spec__3___rarg(x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_14 = lean_apply_7(x_1, x_4, x_5, x_6, x_7, x_8, x_9, 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_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +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 = lean_st_ref_get(x_9, x_16); +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 = lean_ctor_get(x_18, 6); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_inc(x_9); +x_22 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__3(x_2, x_20, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +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; uint8_t x_29; +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_take(x_9, x_24); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 6); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = !lean_is_exclusive(x_26); +if (x_29 == 0) +{ +lean_object* x_30; uint8_t x_31; +x_30 = lean_ctor_get(x_26, 6); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_27); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_32 = lean_ctor_get(x_27, 1); +lean_dec(x_32); +x_33 = l_Lean_PersistentArray_append___rarg(x_12, x_23); +lean_ctor_set(x_27, 1, x_33); +x_34 = lean_st_ref_set(x_9, x_26, x_28); +lean_dec(x_9); +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_34, 0); +lean_dec(x_36); +lean_ctor_set(x_34, 0, x_15); +return x_34; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_15); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +else +{ +uint8_t 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_uint8(x_27, sizeof(void*)*2); +x_40 = lean_ctor_get(x_27, 0); +lean_inc(x_40); +lean_dec(x_27); +x_41 = l_Lean_PersistentArray_append___rarg(x_12, x_23); +x_42 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +lean_ctor_set_uint8(x_42, sizeof(void*)*2, x_39); +lean_ctor_set(x_26, 6, x_42); +x_43 = lean_st_ref_set(x_9, x_26, x_28); +lean_dec(x_9); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + lean_ctor_release(x_43, 1); + x_45 = x_43; +} else { + lean_dec_ref(x_43); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(0, 2, 0); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_15); +lean_ctor_set(x_46, 1, x_44); +return x_46; +} +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t 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; +x_47 = lean_ctor_get(x_26, 0); +x_48 = lean_ctor_get(x_26, 1); +x_49 = lean_ctor_get(x_26, 2); +x_50 = lean_ctor_get(x_26, 3); +x_51 = lean_ctor_get(x_26, 4); +x_52 = lean_ctor_get(x_26, 5); +lean_inc(x_52); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_26); +x_53 = lean_ctor_get_uint8(x_27, sizeof(void*)*2); +x_54 = lean_ctor_get(x_27, 0); +lean_inc(x_54); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_55 = x_27; +} else { + lean_dec_ref(x_27); + x_55 = lean_box(0); +} +x_56 = l_Lean_PersistentArray_append___rarg(x_12, x_23); +if (lean_is_scalar(x_55)) { + x_57 = lean_alloc_ctor(0, 2, 1); +} else { + x_57 = x_55; +} +lean_ctor_set(x_57, 0, x_54); +lean_ctor_set(x_57, 1, x_56); +lean_ctor_set_uint8(x_57, sizeof(void*)*2, x_53); +x_58 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_58, 0, x_47); +lean_ctor_set(x_58, 1, x_48); +lean_ctor_set(x_58, 2, x_49); +lean_ctor_set(x_58, 3, x_50); +lean_ctor_set(x_58, 4, x_51); +lean_ctor_set(x_58, 5, x_52); +lean_ctor_set(x_58, 6, x_57); +x_59 = lean_st_ref_set(x_9, x_58, x_28); +lean_dec(x_9); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(0, 2, 0); +} else { + x_62 = x_61; +} +lean_ctor_set(x_62, 0, x_15); +lean_ctor_set(x_62, 1, x_60); +return x_62; +} +} +else +{ +uint8_t x_63; +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_9); +x_63 = !lean_is_exclusive(x_22); +if (x_63 == 0) +{ +return x_22; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_22, 0); +x_65 = lean_ctor_get(x_22, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_22); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +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 = lean_ctor_get(x_14, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_14, 1); +lean_inc(x_68); +lean_dec(x_14); +x_69 = lean_st_ref_get(x_9, x_68); +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); +lean_inc(x_71); +lean_dec(x_69); +x_72 = lean_ctor_get(x_70, 6); +lean_inc(x_72); +lean_dec(x_70); +x_73 = lean_ctor_get(x_72, 1); +lean_inc(x_73); +lean_inc(x_9); +x_74 = l_Lean_PersistentArray_mapM___at_Lean_Elab_Tactic_elabConfig___spec__8(x_2, x_72, x_73, x_4, x_5, x_6, x_7, x_8, x_9, x_71); +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_79; lean_object* x_80; uint8_t x_81; +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 = lean_st_ref_take(x_9, x_76); +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_78, 6); +lean_inc(x_79); +x_80 = lean_ctor_get(x_77, 1); +lean_inc(x_80); +lean_dec(x_77); +x_81 = !lean_is_exclusive(x_78); +if (x_81 == 0) +{ +lean_object* x_82; uint8_t x_83; +x_82 = lean_ctor_get(x_78, 6); +lean_dec(x_82); +x_83 = !lean_is_exclusive(x_79); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; +x_84 = lean_ctor_get(x_79, 1); +lean_dec(x_84); +x_85 = l_Lean_PersistentArray_append___rarg(x_12, x_75); +lean_ctor_set(x_79, 1, x_85); +x_86 = lean_st_ref_set(x_9, x_78, x_80); +lean_dec(x_9); +x_87 = !lean_is_exclusive(x_86); +if (x_87 == 0) +{ +lean_object* x_88; +x_88 = lean_ctor_get(x_86, 0); +lean_dec(x_88); +lean_ctor_set_tag(x_86, 1); +lean_ctor_set(x_86, 0, x_67); +return x_86; +} +else +{ +lean_object* x_89; lean_object* x_90; +x_89 = lean_ctor_get(x_86, 1); +lean_inc(x_89); +lean_dec(x_86); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_67); +lean_ctor_set(x_90, 1, x_89); +return x_90; +} +} +else +{ +uint8_t 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 = lean_ctor_get_uint8(x_79, sizeof(void*)*2); +x_92 = lean_ctor_get(x_79, 0); +lean_inc(x_92); +lean_dec(x_79); +x_93 = l_Lean_PersistentArray_append___rarg(x_12, x_75); +x_94 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +lean_ctor_set_uint8(x_94, sizeof(void*)*2, x_91); +lean_ctor_set(x_78, 6, x_94); +x_95 = lean_st_ref_set(x_9, x_78, x_80); +lean_dec(x_9); +x_96 = lean_ctor_get(x_95, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + lean_ctor_release(x_95, 1); + x_97 = x_95; +} else { + lean_dec_ref(x_95); + x_97 = lean_box(0); +} +if (lean_is_scalar(x_97)) { + x_98 = lean_alloc_ctor(1, 2, 0); +} else { + x_98 = x_97; + lean_ctor_set_tag(x_98, 1); +} +lean_ctor_set(x_98, 0, x_67); +lean_ctor_set(x_98, 1, x_96); +return x_98; +} +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t 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; +x_99 = lean_ctor_get(x_78, 0); +x_100 = lean_ctor_get(x_78, 1); +x_101 = lean_ctor_get(x_78, 2); +x_102 = lean_ctor_get(x_78, 3); +x_103 = lean_ctor_get(x_78, 4); +x_104 = lean_ctor_get(x_78, 5); +lean_inc(x_104); +lean_inc(x_103); +lean_inc(x_102); +lean_inc(x_101); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_78); +x_105 = lean_ctor_get_uint8(x_79, sizeof(void*)*2); +x_106 = lean_ctor_get(x_79, 0); +lean_inc(x_106); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_107 = x_79; +} else { + lean_dec_ref(x_79); + x_107 = lean_box(0); +} +x_108 = l_Lean_PersistentArray_append___rarg(x_12, x_75); +if (lean_is_scalar(x_107)) { + x_109 = lean_alloc_ctor(0, 2, 1); +} else { + x_109 = x_107; +} +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_108); +lean_ctor_set_uint8(x_109, sizeof(void*)*2, x_105); +x_110 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_110, 0, x_99); +lean_ctor_set(x_110, 1, x_100); +lean_ctor_set(x_110, 2, x_101); +lean_ctor_set(x_110, 3, x_102); +lean_ctor_set(x_110, 4, x_103); +lean_ctor_set(x_110, 5, x_104); +lean_ctor_set(x_110, 6, x_109); +x_111 = lean_st_ref_set(x_9, x_110, x_80); +lean_dec(x_9); +x_112 = lean_ctor_get(x_111, 1); +lean_inc(x_112); +if (lean_is_exclusive(x_111)) { + lean_ctor_release(x_111, 0); + lean_ctor_release(x_111, 1); + x_113 = x_111; +} else { + lean_dec_ref(x_111); + x_113 = lean_box(0); +} +if (lean_is_scalar(x_113)) { + x_114 = lean_alloc_ctor(1, 2, 0); +} else { + x_114 = x_113; + lean_ctor_set_tag(x_114, 1); +} +lean_ctor_set(x_114, 0, x_67); +lean_ctor_set(x_114, 1, x_112); +return x_114; +} +} +else +{ +uint8_t x_115; +lean_dec(x_67); +lean_dec(x_12); +lean_dec(x_9); +x_115 = !lean_is_exclusive(x_74); +if (x_115 == 0) +{ +return x_74; +} +else +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_116 = lean_ctor_get(x_74, 0); +x_117 = lean_ctor_get(x_74, 1); +lean_inc(x_117); +lean_inc(x_116); +lean_dec(x_74); +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_116); +lean_ctor_set(x_118, 1, x_117); +return x_118; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_11, 6); +lean_inc(x_12); +lean_dec(x_11); +x_13 = lean_ctor_get_uint8(x_12, sizeof(void*)*2); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_2); +x_14 = lean_ctor_get(x_10, 1); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_apply_7(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_15); +if (x_20 == 0) +{ +return x_15; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_15, 0); +x_22 = lean_ctor_get(x_15, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_15); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +lean_dec(x_10); +x_25 = lean_box(0); +x_26 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(x_1, x_2, x_25, x_3, x_4, x_5, x_6, x_7, x_8, x_24); +return x_26; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_10); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_8, 0, x_12); +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = lean_ctor_get(x_8, 0); +x_14 = lean_ctor_get(x_8, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_8); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_13); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_15); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_14); +return x_17; +} +} +} +static lean_object* _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1___boxed), 7, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1; +x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +return x_9; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_9); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +} +else +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_9); +if (x_14 == 0) +{ +return x_9; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_9, 0); +x_16 = lean_ctor_get(x_9, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_9); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__1(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: +{ +uint8_t x_11; lean_object* x_12; +x_11 = 1; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_12 = l_Lean_Elab_Term_elabTermEnsuringType(x_1, x_2, x_11, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_16 = l_Lean_Elab_Term_synthesizeSyntheticMVars(x_15, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +x_18 = l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_17); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_18; +} +else +{ +uint8_t x_19; +lean_dec(x_13); +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_19 = !lean_is_exclusive(x_16); +if (x_19 == 0) +{ +return x_16; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_16, 0); +x_21 = lean_ctor_get(x_16, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_16); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +else +{ +uint8_t x_23; +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_23 = !lean_is_exclusive(x_12); +if (x_23 == 0) +{ +return x_12; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_12, 0); +x_25 = lean_ctor_get(x_12, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_12); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_box(0); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; +x_7 = 0; +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2; +x_8 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__1; +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_Elab_Tactic_elabConfig___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_Elab_Tactic_elabConfig___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__4; +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_Elab_Tactic_elabConfig___closed__6() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__5; +x_3 = l_Lean_Elab_Tactic_elabConfig___closed__4; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_4); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__3; +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__6; +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_Elab_Tactic_elabConfig___closed__8() { +_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_Lean_Elab_Tactic_elabConfig___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__9; +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_Elab_Tactic_elabConfig___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__2___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__3___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__4___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; +x_1 = lean_unsigned_to_nat(6u); +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__11; +x_3 = l_Lean_Elab_Tactic_elabConfig___closed__12; +x_4 = l_Lean_Elab_Tactic_elabConfig___closed__13; +x_5 = 0; +x_6 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_2); +lean_ctor_set(x_6, 2, x_3); +lean_ctor_set(x_6, 3, x_4); +lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__15() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; +x_1 = 0; +x_2 = 1; +x_3 = 0; +x_4 = lean_alloc_ctor(0, 0, 4); +lean_ctor_set_uint8(x_4, 0, x_1); +lean_ctor_set_uint8(x_4, 1, x_2); +lean_ctor_set_uint8(x_4, 2, x_3); +lean_ctor_set_uint8(x_4, 3, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__14; +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__15; +x_3 = 1; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set_uint8(x_5, sizeof(void*)*2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 1, x_4); +lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 2, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabConfig___closed__17() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__16; +x_2 = 1; +x_3 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1 + 1, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1 + 2, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig(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) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_Syntax_isNone(x_1); +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; uint8_t x_17; uint8_t 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; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); +x_12 = lean_unsigned_to_nat(3u); +x_13 = l_Lean_Syntax_getArg(x_11, x_12); +lean_dec(x_11); +x_14 = lean_box(0); +x_15 = l_Lean_Elab_Tactic_elabConfig___closed__10; +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__1), 10, 3); +lean_closure_set(x_16, 0, x_13); +lean_closure_set(x_16, 1, x_15); +lean_closure_set(x_16, 2, x_14); +x_17 = 0; +x_18 = 1; +x_19 = lean_box(x_17); +x_20 = lean_box(x_18); +x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg___boxed), 10, 3); +lean_closure_set(x_21, 0, x_16); +lean_closure_set(x_21, 1, x_19); +lean_closure_set(x_21, 2, x_20); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1), 8, 1); +lean_closure_set(x_22, 0, x_21); +x_23 = l_Lean_Elab_Tactic_elabConfig___closed__7; +x_24 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg), 10, 3); +lean_closure_set(x_25, 0, x_23); +lean_closure_set(x_25, 1, x_24); +lean_closure_set(x_25, 2, x_22); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +lean_dec(x_3); +lean_dec(x_2); +return x_29; +} +else +{ +uint8_t x_30; +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_30 = !lean_is_exclusive(x_26); +if (x_30 == 0) +{ +return x_26; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_26, 0); +x_32 = lean_ctor_get(x_26, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_26); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; +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_34 = l_Lean_Elab_Tactic_elabConfig___closed__17; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_8); +return x_35; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__5(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__6(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__7(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__10(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__11(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabConfig___spec__12(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1___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, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_elabConfig___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__3___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___lambda__4___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_elabConfig___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabConfig___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_elabConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ApplyRulesConfig", 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2; +x_3 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +x_10 = 0; +x_11 = l_Lean_Meta_evalExpr_x27___rarg(x_9, x_1, x_10, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1; +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_Elab_Tactic_elabApplyRulesConfig___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; +x_1 = lean_unsigned_to_nat(50u); +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__11; +x_3 = l_Lean_Elab_Tactic_elabConfig___closed__12; +x_4 = l_Lean_Elab_Tactic_elabConfig___closed__13; +x_5 = 0; +x_6 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_2); +lean_ctor_set(x_6, 2, x_3); +lean_ctor_set(x_6, 3, x_4); +lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3; +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__15; +x_3 = 1; +x_4 = 1; +x_5 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set_uint8(x_5, sizeof(void*)*2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 1, x_4); +lean_ctor_set_uint8(x_5, sizeof(void*)*2 + 2, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig(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) { +_start: +{ +uint8_t x_9; +x_9 = l_Lean_Syntax_isNone(x_1); +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; uint8_t x_17; uint8_t 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; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); +x_12 = lean_unsigned_to_nat(3u); +x_13 = l_Lean_Syntax_getArg(x_11, x_12); +lean_dec(x_11); +x_14 = lean_box(0); +x_15 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2; +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_elabConfig___lambda__1), 10, 3); +lean_closure_set(x_16, 0, x_13); +lean_closure_set(x_16, 1, x_15); +lean_closure_set(x_16, 2, x_14); +x_17 = 0; +x_18 = 1; +x_19 = lean_box(x_17); +x_20 = lean_box(x_18); +x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg___boxed), 10, 3); +lean_closure_set(x_21, 0, x_16); +lean_closure_set(x_21, 1, x_19); +lean_closure_set(x_21, 2, x_20); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1), 8, 1); +lean_closure_set(x_22, 0, x_21); +x_23 = l_Lean_Elab_Tactic_elabConfig___closed__7; +x_24 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__3___rarg), 10, 3); +lean_closure_set(x_25, 0, x_23); +lean_closure_set(x_25, 1, x_24); +lean_closure_set(x_25, 2, x_22); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_26 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_elabConfig___spec__13(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189_(x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +lean_dec(x_3); +lean_dec(x_2); +return x_29; +} +else +{ +uint8_t x_30; +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_30 = !lean_is_exclusive(x_26); +if (x_30 == 0) +{ +return x_26; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_26, 0); +x_32 = lean_ctor_get(x_26, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_26); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; +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_34 = l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_8); +return x_35; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabApplyRulesConfig___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_elabApplyRulesConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_box(0); +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("arg", 3); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Elab.Tactic.SolveByElim", 28); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Elab.Tactic.parseArgs", 26); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Unreachable parse of solve_by_elim arguments.", 45); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8() { +_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_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6; +x_3 = lean_unsigned_to_nat(45u); +x_4 = lean_unsigned_to_nat(11u); +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("star", 4); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("erase", 5); +return x_1; +} +} +static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4; +lean_inc(x_5); +x_9 = l_Lean_Syntax_isOfKind(x_5, x_8); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +if (x_9 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_dec(x_5); +x_12 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8; +x_13 = l_panic___at_Lean_Elab_Tactic_parseArgs___spec__1(x_12); +x_14 = lean_array_uset(x_7, x_2, x_13); +x_2 = x_11; +x_3 = x_14; +goto _start; +} +else +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = l_Lean_Syntax_getArg(x_5, x_6); +lean_dec(x_5); +x_17 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10; +lean_inc(x_16); +x_18 = l_Lean_Syntax_isOfKind(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12; +lean_inc(x_16); +x_20 = l_Lean_Syntax_isOfKind(x_16, x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_21, 0, x_16); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = lean_array_uset(x_7, x_2, x_22); +x_2 = x_11; +x_3 = x_23; +goto _start; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_25 = lean_unsigned_to_nat(1u); +x_26 = l_Lean_Syntax_getArg(x_16, x_25); +lean_dec(x_16); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +x_29 = lean_array_uset(x_7, x_2, x_28); +x_2 = x_11; +x_3 = x_29; +goto _start; +} +} +else +{ +lean_object* x_31; lean_object* x_32; +lean_dec(x_16); +x_31 = lean_box(0); +x_32 = lean_array_uset(x_7, x_2, x_31); +x_2 = x_11; +x_3 = x_32; +goto _start; +} +} +} +} +} +LEAN_EXPORT uint8_t l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec(x_2); +x_5 = l_Lean_Syntax_structEq(x_3, x_4); +return x_5; +} +else +{ +uint8_t x_6; +lean_dec(x_2); +lean_dec(x_1); +x_6 = 0; +return x_6; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_7; +lean_dec(x_2); +lean_dec(x_1); +x_7 = 0; +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_1, 0); +lean_inc(x_8); +lean_dec(x_1); +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +lean_dec(x_2); +x_10 = l_Lean_Syntax_structEq(x_8, x_9); +return x_10; +} +} +} +} +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +lean_dec(x_2); +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +lean_dec(x_1); +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_ctor_get(x_2, 0); +lean_inc(x_7); +lean_dec(x_2); +x_8 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(x_6, x_7); +return x_8; +} +} +} +} +LEAN_EXPORT uint8_t l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +lean_dec(x_1); +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 1); +lean_inc(x_5); +lean_dec(x_2); +lean_inc(x_1); +x_6 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(x_1, x_4); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +lean_dec(x_5); +lean_dec(x_1); +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_1 = x_4; +goto _start; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_3, 0); +lean_inc(x_9); +lean_dec(x_3); +x_10 = l_Sum_getLeft_x3f___rarg(x_9); +lean_dec(x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_free_object(x_1); +x_1 = x_7; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_7); +lean_ctor_set(x_1, 1, x_13); +lean_ctor_set(x_1, 0, x_12); +return x_1; +} +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +lean_dec(x_1); +x_15 = lean_ctor_get(x_3, 0); +lean_inc(x_15); +lean_dec(x_3); +x_16 = l_Sum_getLeft_x3f___rarg(x_15); +lean_dec(x_15); +if (lean_obj_tag(x_16) == 0) +{ +x_1 = x_14; +goto _start; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_14); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_1 = x_4; +goto _start; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_3, 0); +lean_inc(x_9); +lean_dec(x_3); +x_10 = l_Sum_getRight_x3f___rarg(x_9); +lean_dec(x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_free_object(x_1); +x_1 = x_7; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_7); +lean_ctor_set(x_1, 1, x_13); +lean_ctor_set(x_1, 0, x_12); +return x_1; +} +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +lean_dec(x_1); +x_15 = lean_ctor_get(x_3, 0); +lean_inc(x_15); +lean_dec(x_3); +x_16 = l_Sum_getRight_x3f___rarg(x_15); +lean_dec(x_15); +if (lean_obj_tag(x_16) == 0) +{ +x_1 = x_14; +goto _start; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_14); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_2 = lean_array_get_size(x_1); +return x_2; +} +} +static size_t _init_l_Lean_Elab_Tactic_parseArgs___closed__2() { +_start: +{ +lean_object* x_1; size_t x_2; +x_1 = l_Lean_Elab_Tactic_parseArgs___closed__1; +x_2 = lean_usize_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("args", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_parseArgs___closed__4() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Lean_Elab_Tactic_parseArgs___closed__3; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseArgs(lean_object* x_1) { +_start: +{ +size_t x_2; lean_object* x_3; +x_2 = 0; +x_3 = lean_box(0); +if (lean_obj_tag(x_1) == 0) +{ +size_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_4 = l_Lean_Elab_Tactic_parseArgs___closed__2; +x_5 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_4, x_2, x_5); +x_7 = lean_array_to_list(lean_box(0), x_6); +lean_inc(x_7); +x_8 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_7); +lean_inc(x_7); +x_9 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_7); +x_10 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_box(x_8); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_1, 0); +lean_inc(x_14); +lean_dec(x_1); +x_15 = l_Lean_Elab_Tactic_parseArgs___closed__4; +lean_inc(x_14); +x_16 = l_Lean_Syntax_isOfKind(x_14, x_15); +if (x_16 == 0) +{ +size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_14); +x_17 = l_Lean_Elab_Tactic_parseArgs___closed__2; +x_18 = l_Lean_Elab_Tactic_elabConfig___closed__8; +x_19 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_17, x_2, x_18); +x_20 = lean_array_to_list(lean_box(0), x_19); +lean_inc(x_20); +x_21 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_20); +lean_inc(x_20); +x_22 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_20); +x_23 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_box(x_21); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; size_t x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_27 = lean_unsigned_to_nat(1u); +x_28 = l_Lean_Syntax_getArg(x_14, x_27); +lean_dec(x_14); +x_29 = l_Lean_Syntax_getArgs(x_28); +lean_dec(x_28); +x_30 = l_Lean_Syntax_TSepArray_getElems___rarg(x_29); +lean_dec(x_29); +x_31 = lean_array_get_size(x_30); +x_32 = lean_usize_of_nat(x_31); +lean_dec(x_31); +x_33 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_32, x_2, x_30); +x_34 = lean_array_to_list(lean_box(0), x_33); +lean_inc(x_34); +x_35 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_3, x_34); +lean_inc(x_34); +x_36 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__6(x_34); +x_37 = l_List_filterMap___at_Lean_Elab_Tactic_parseArgs___spec__7(x_34); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_box(x_35); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Sum_0__Sum_beqSum____x40_Init_Data_Sum___hyg_241____at_Lean_Elab_Tactic_parseArgs___spec__5(x_1, x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Elab_Tactic_parseArgs___spec__4(x_1, x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_List_elem___at_Lean_Elab_Tactic_parseArgs___spec__3(x_1, x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_parseUsing___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("using_", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_parseUsing___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3; +x_5 = l_Lean_Elab_Tactic_parseUsing___closed__1; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_parseUsing(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Tactic_elabConfig___closed__8; +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_Elab_Tactic_parseUsing___closed__2; +lean_inc(x_3); +x_5 = l_Lean_Syntax_isOfKind(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = l_Lean_Elab_Tactic_elabConfig___closed__8; +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_unsigned_to_nat(1u); +x_8 = l_Lean_Syntax_getArg(x_3, x_7); +lean_dec(x_3); +x_9 = l_Lean_Syntax_getArgs(x_8); +lean_dec(x_8); +x_10 = l_Lean_Syntax_TSepArray_getElems___rarg(x_9); +lean_dec(x_9); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___lambda__1(uint8_t x_1, uint8_t 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_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_14 = l_Lean_Meta_SolveByElim_mkAssumptionSet(x_1, x_2, x_3, x_4, x_5, x_9, x_10, x_11, x_12, 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_19; +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 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l_Lean_Meta_SolveByElim_solveByElim(x_6, x_17, x_18, x_7, x_9, x_10, x_11, x_12, x_16); +return x_19; +} +else +{ +uint8_t x_20; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_14); +if (x_20 == 0) +{ +return x_14; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_processSyntax___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Removing local hypotheses is not supported when operating on multiple goals.", 76); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_processSyntax___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_processSyntax___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax(lean_object* x_1, uint8_t x_2, uint8_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = l_List_isEmpty___rarg(x_5); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_unsigned_to_nat(0u); +x_15 = l_List_lengthTRAux___rarg(x_7, x_14); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_dec_lt(x_16, x_15); +lean_dec(x_15); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +x_19 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_18, x_8, x_9, x_10, x_11, x_12); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_20 = l_Lean_Elab_Tactic_processSyntax___closed__2; +x_21 = l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(x_20, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_box(0); +x_27 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_2, x_3, x_4, x_5, x_6, x_1, x_7, x_26, x_8, x_9, x_10, x_11, x_12); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___lambda__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_1); +lean_dec(x_1); +x_15 = lean_unbox(x_2); +lean_dec(x_2); +x_16 = l_Lean_Elab_Tactic_processSyntax___lambda__1(x_14, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_8); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_processSyntax___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_2); +lean_dec(x_2); +x_14 = lean_unbox(x_3); +lean_dec(x_3); +x_15 = l_Lean_Elab_Tactic_processSyntax(x_1, x_13, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1; +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_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2; +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_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1(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) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg), 1, 0); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +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; +x_15 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = l_Lean_Elab_Tactic_parseUsing(x_5); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_190; +x_190 = lean_box(0); +x_21 = x_190; +goto block_189; +} +else +{ +uint8_t x_191; +x_191 = !lean_is_exclusive(x_3); +if (x_191 == 0) +{ +x_21 = x_3; +goto block_189; +} +else +{ +lean_object* x_192; lean_object* x_193; +x_192 = lean_ctor_get(x_3, 0); +lean_inc(x_192); +lean_dec(x_3); +x_193 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_193, 0, x_192); +x_21 = x_193; +goto block_189; +} +} +block_189: +{ +lean_object* x_22; lean_object* x_23; +x_22 = l_Lean_mkOptionalNode(x_21); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Elab_Tactic_elabConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = !lean_is_exclusive(x_24); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +x_29 = lean_ctor_get(x_24, 0); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_25); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_25, 0); +lean_dec(x_31); +x_32 = !lean_is_exclusive(x_26); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_26, 0); +lean_dec(x_33); +x_34 = lean_unsigned_to_nat(1u); +lean_ctor_set(x_26, 0, x_34); +x_35 = 0; +lean_ctor_set_uint8(x_24, sizeof(void*)*1, x_35); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_36 = l_Lean_Elab_Tactic_getMainGoal(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_27); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +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); +x_39 = lean_box(0); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_37); +lean_ctor_set(x_40, 1, x_39); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_41; lean_object* x_42; +x_41 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_42 = l_Lean_Elab_Tactic_processSyntax(x_24, x_35, x_41, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); +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); +x_45 = l_Lean_Elab_Tactic_replaceMainGoal(x_43, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_44); +return x_45; +} +else +{ +uint8_t x_46; +lean_dec(x_13); +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_6); +x_46 = !lean_is_exclusive(x_42); +if (x_46 == 0) +{ +return x_42; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_42, 0); +x_48 = lean_ctor_get(x_42, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_42); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +else +{ +uint8_t x_50; uint8_t x_51; lean_object* x_52; +x_50 = 1; +x_51 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_52 = l_Lean_Elab_Tactic_processSyntax(x_24, x_50, x_51, x_18, x_19, x_20, x_40, x_10, x_11, x_12, x_13, x_38); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +lean_dec(x_52); +x_55 = l_Lean_Elab_Tactic_replaceMainGoal(x_53, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_54); +return x_55; +} +else +{ +uint8_t x_56; +lean_dec(x_13); +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_6); +x_56 = !lean_is_exclusive(x_52); +if (x_56 == 0) +{ +return x_52; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_52, 0); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_52); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +} +else +{ +uint8_t x_60; +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +x_60 = !lean_is_exclusive(x_36); +if (x_60 == 0) +{ +return x_36; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_36, 0); +x_62 = lean_ctor_get(x_36, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_36); +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; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; +x_64 = lean_ctor_get(x_26, 1); +x_65 = lean_ctor_get(x_26, 2); +x_66 = lean_ctor_get(x_26, 3); +x_67 = lean_ctor_get_uint8(x_26, sizeof(void*)*4); +lean_inc(x_66); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_26); +x_68 = lean_unsigned_to_nat(1u); +x_69 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_64); +lean_ctor_set(x_69, 2, x_65); +lean_ctor_set(x_69, 3, x_66); +lean_ctor_set_uint8(x_69, sizeof(void*)*4, x_67); +lean_ctor_set(x_25, 0, x_69); +x_70 = 0; +lean_ctor_set_uint8(x_24, sizeof(void*)*1, x_70); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_71 = l_Lean_Elab_Tactic_getMainGoal(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_27); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec(x_71); +x_74 = lean_box(0); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_72); +lean_ctor_set(x_75, 1, x_74); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_76; lean_object* x_77; +x_76 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_77 = l_Lean_Elab_Tactic_processSyntax(x_24, x_70, x_76, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +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_Elab_Tactic_replaceMainGoal(x_78, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_79); +return x_80; +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_13); +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_6); +x_81 = lean_ctor_get(x_77, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_77, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_83 = x_77; +} else { + lean_dec_ref(x_77); + x_83 = lean_box(0); +} +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); +} else { + x_84 = x_83; +} +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; +} +} +else +{ +uint8_t x_85; uint8_t x_86; lean_object* x_87; +x_85 = 1; +x_86 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_87 = l_Lean_Elab_Tactic_processSyntax(x_24, x_85, x_86, x_18, x_19, x_20, x_75, x_10, x_11, x_12, x_13, x_73); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = l_Lean_Elab_Tactic_replaceMainGoal(x_88, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_89); +return x_90; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_13); +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_6); +x_91 = lean_ctor_get(x_87, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_87, 1); +lean_inc(x_92); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_93 = x_87; +} else { + lean_dec_ref(x_87); + x_93 = lean_box(0); +} +if (lean_is_scalar(x_93)) { + x_94 = lean_alloc_ctor(1, 2, 0); +} else { + x_94 = x_93; +} +lean_ctor_set(x_94, 0, x_91); +lean_ctor_set(x_94, 1, x_92); +return x_94; +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +x_95 = lean_ctor_get(x_71, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_71, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_97 = x_71; +} else { + lean_dec_ref(x_71); + x_97 = lean_box(0); +} +if (lean_is_scalar(x_97)) { + x_98 = lean_alloc_ctor(1, 2, 0); +} else { + x_98 = x_97; +} +lean_ctor_set(x_98, 0, x_95); +lean_ctor_set(x_98, 1, x_96); +return x_98; +} +} +} +else +{ +lean_object* x_99; uint8_t x_100; uint8_t x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; +x_99 = lean_ctor_get(x_25, 1); +x_100 = lean_ctor_get_uint8(x_25, sizeof(void*)*2); +x_101 = lean_ctor_get_uint8(x_25, sizeof(void*)*2 + 1); +x_102 = lean_ctor_get_uint8(x_25, sizeof(void*)*2 + 2); +lean_inc(x_99); +lean_dec(x_25); +x_103 = lean_ctor_get(x_26, 1); +lean_inc(x_103); +x_104 = lean_ctor_get(x_26, 2); +lean_inc(x_104); +x_105 = lean_ctor_get(x_26, 3); +lean_inc(x_105); +x_106 = lean_ctor_get_uint8(x_26, sizeof(void*)*4); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + lean_ctor_release(x_26, 3); + x_107 = x_26; +} else { + lean_dec_ref(x_26); + x_107 = lean_box(0); +} +x_108 = lean_unsigned_to_nat(1u); +if (lean_is_scalar(x_107)) { + x_109 = lean_alloc_ctor(0, 4, 1); +} else { + x_109 = x_107; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_103); +lean_ctor_set(x_109, 2, x_104); +lean_ctor_set(x_109, 3, x_105); +lean_ctor_set_uint8(x_109, sizeof(void*)*4, x_106); +x_110 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_99); +lean_ctor_set_uint8(x_110, sizeof(void*)*2, x_100); +lean_ctor_set_uint8(x_110, sizeof(void*)*2 + 1, x_101); +lean_ctor_set_uint8(x_110, sizeof(void*)*2 + 2, x_102); +x_111 = 0; +lean_ctor_set(x_24, 0, x_110); +lean_ctor_set_uint8(x_24, sizeof(void*)*1, x_111); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_112 = l_Lean_Elab_Tactic_getMainGoal(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_27); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); +x_115 = lean_box(0); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_113); +lean_ctor_set(x_116, 1, x_115); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_117; lean_object* x_118; +x_117 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_118 = l_Lean_Elab_Tactic_processSyntax(x_24, x_111, x_117, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); +if (lean_obj_tag(x_118) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_118, 1); +lean_inc(x_120); +lean_dec(x_118); +x_121 = l_Lean_Elab_Tactic_replaceMainGoal(x_119, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_120); +return x_121; +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec(x_13); +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_6); +x_122 = lean_ctor_get(x_118, 0); +lean_inc(x_122); +x_123 = lean_ctor_get(x_118, 1); +lean_inc(x_123); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + x_124 = x_118; +} else { + lean_dec_ref(x_118); + 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 +{ +uint8_t x_126; uint8_t x_127; lean_object* x_128; +x_126 = 1; +x_127 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_128 = l_Lean_Elab_Tactic_processSyntax(x_24, x_126, x_127, x_18, x_19, x_20, x_116, x_10, x_11, x_12, x_13, x_114); +if (lean_obj_tag(x_128) == 0) +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_128, 0); +lean_inc(x_129); +x_130 = lean_ctor_get(x_128, 1); +lean_inc(x_130); +lean_dec(x_128); +x_131 = l_Lean_Elab_Tactic_replaceMainGoal(x_129, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_130); +return x_131; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; +lean_dec(x_13); +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_6); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +x_133 = lean_ctor_get(x_128, 1); +lean_inc(x_133); +if (lean_is_exclusive(x_128)) { + lean_ctor_release(x_128, 0); + lean_ctor_release(x_128, 1); + x_134 = x_128; +} else { + lean_dec_ref(x_128); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_134)) { + x_135 = lean_alloc_ctor(1, 2, 0); +} else { + x_135 = x_134; +} +lean_ctor_set(x_135, 0, x_132); +lean_ctor_set(x_135, 1, x_133); +return x_135; +} +} +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_24); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +x_136 = lean_ctor_get(x_112, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_112, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + x_138 = x_112; +} else { + lean_dec_ref(x_112); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 2, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_136); +lean_ctor_set(x_139, 1, x_137); +return x_139; +} +} +} +else +{ +uint8_t x_140; uint8_t x_141; lean_object* x_142; uint8_t x_143; uint8_t x_144; uint8_t x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; +x_140 = lean_ctor_get_uint8(x_24, sizeof(void*)*1 + 1); +x_141 = lean_ctor_get_uint8(x_24, sizeof(void*)*1 + 2); +lean_dec(x_24); +x_142 = lean_ctor_get(x_25, 1); +lean_inc(x_142); +x_143 = lean_ctor_get_uint8(x_25, sizeof(void*)*2); +x_144 = lean_ctor_get_uint8(x_25, sizeof(void*)*2 + 1); +x_145 = lean_ctor_get_uint8(x_25, sizeof(void*)*2 + 2); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_146 = x_25; +} else { + lean_dec_ref(x_25); + x_146 = lean_box(0); +} +x_147 = lean_ctor_get(x_26, 1); +lean_inc(x_147); +x_148 = lean_ctor_get(x_26, 2); +lean_inc(x_148); +x_149 = lean_ctor_get(x_26, 3); +lean_inc(x_149); +x_150 = lean_ctor_get_uint8(x_26, sizeof(void*)*4); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + lean_ctor_release(x_26, 3); + x_151 = x_26; +} else { + lean_dec_ref(x_26); + x_151 = lean_box(0); +} +x_152 = lean_unsigned_to_nat(1u); +if (lean_is_scalar(x_151)) { + x_153 = lean_alloc_ctor(0, 4, 1); +} else { + x_153 = x_151; +} +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_147); +lean_ctor_set(x_153, 2, x_148); +lean_ctor_set(x_153, 3, x_149); +lean_ctor_set_uint8(x_153, sizeof(void*)*4, x_150); +if (lean_is_scalar(x_146)) { + x_154 = lean_alloc_ctor(0, 2, 3); +} else { + x_154 = x_146; +} +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_142); +lean_ctor_set_uint8(x_154, sizeof(void*)*2, x_143); +lean_ctor_set_uint8(x_154, sizeof(void*)*2 + 1, x_144); +lean_ctor_set_uint8(x_154, sizeof(void*)*2 + 2, x_145); +x_155 = 0; +x_156 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set_uint8(x_156, sizeof(void*)*1, x_155); +lean_ctor_set_uint8(x_156, sizeof(void*)*1 + 1, x_140); +lean_ctor_set_uint8(x_156, sizeof(void*)*1 + 2, x_141); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_157 = l_Lean_Elab_Tactic_getMainGoal(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_27); +if (lean_obj_tag(x_157) == 0) +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec(x_157); +x_160 = lean_box(0); +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_158); +lean_ctor_set(x_161, 1, x_160); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_162; lean_object* x_163; +x_162 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_163 = l_Lean_Elab_Tactic_processSyntax(x_156, x_155, x_162, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec(x_163); +x_166 = l_Lean_Elab_Tactic_replaceMainGoal(x_164, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_165); +return x_166; +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; +lean_dec(x_13); +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_6); +x_167 = lean_ctor_get(x_163, 0); +lean_inc(x_167); +x_168 = lean_ctor_get(x_163, 1); +lean_inc(x_168); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + lean_ctor_release(x_163, 1); + x_169 = x_163; +} else { + lean_dec_ref(x_163); + x_169 = lean_box(0); +} +if (lean_is_scalar(x_169)) { + x_170 = lean_alloc_ctor(1, 2, 0); +} else { + x_170 = x_169; +} +lean_ctor_set(x_170, 0, x_167); +lean_ctor_set(x_170, 1, x_168); +return x_170; +} +} +else +{ +uint8_t x_171; uint8_t x_172; lean_object* x_173; +x_171 = 1; +x_172 = lean_unbox(x_17); +lean_dec(x_17); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_173 = l_Lean_Elab_Tactic_processSyntax(x_156, x_171, x_172, x_18, x_19, x_20, x_161, x_10, x_11, x_12, x_13, x_159); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec(x_173); +x_176 = l_Lean_Elab_Tactic_replaceMainGoal(x_174, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_175); +return x_176; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_dec(x_13); +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_6); +x_177 = lean_ctor_get(x_173, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_173, 1); +lean_inc(x_178); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_179 = x_173; +} else { + lean_dec_ref(x_173); + x_179 = lean_box(0); +} +if (lean_is_scalar(x_179)) { + x_180 = lean_alloc_ctor(1, 2, 0); +} else { + x_180 = x_179; +} +lean_ctor_set(x_180, 0, x_177); +lean_ctor_set(x_180, 1, x_178); +return x_180; +} +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_156); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +x_181 = lean_ctor_get(x_157, 0); +lean_inc(x_181); +x_182 = lean_ctor_get(x_157, 1); +lean_inc(x_182); +if (lean_is_exclusive(x_157)) { + lean_ctor_release(x_157, 0); + lean_ctor_release(x_157, 1); + x_183 = x_157; +} else { + lean_dec_ref(x_157); + x_183 = lean_box(0); +} +if (lean_is_scalar(x_183)) { + x_184 = lean_alloc_ctor(1, 2, 0); +} else { + x_184 = x_183; +} +lean_ctor_set(x_184, 0, x_181); +lean_ctor_set(x_184, 1, x_182); +return x_184; +} +} +} +else +{ +uint8_t x_185; +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +x_185 = !lean_is_exclusive(x_23); +if (x_185 == 0) +{ +return x_23; +} +else +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_186 = lean_ctor_get(x_23, 0); +x_187 = lean_ctor_get(x_23, 1); +lean_inc(x_187); +lean_inc(x_186); +lean_dec(x_23); +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_186); +lean_ctor_set(x_188, 1, x_187); +return x_188; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_dec(x_4); +x_15 = lean_unsigned_to_nat(4u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +lean_dec(x_1); +x_17 = l_Lean_Syntax_isNone(x_16); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_unsigned_to_nat(1u); +lean_inc(x_16); +x_19 = l_Lean_Syntax_matchesNull(x_16, x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_16); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Syntax_getArg(x_16, x_21); +lean_dec(x_16); +x_23 = l_Lean_Elab_Tactic_parseUsing___closed__2; +lean_inc(x_22); +x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); +if (x_24 == 0) +{ +lean_object* x_25; +lean_dec(x_22); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_22); +x_27 = lean_box(0); +x_28 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_28; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_16); +x_29 = lean_box(0); +x_30 = lean_box(0); +x_31 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_31; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +lean_dec(x_3); +x_14 = lean_unsigned_to_nat(3u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_unsigned_to_nat(1u); +lean_inc(x_15); +x_18 = l_Lean_Syntax_matchesNull(x_15, x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_15); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Lean_Syntax_getArg(x_15, x_20); +lean_dec(x_15); +x_22 = l_Lean_Elab_Tactic_parseArgs___closed__4; +lean_inc(x_21); +x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_21); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_21); +x_26 = lean_box(0); +x_27 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_4); +return x_27; +} +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_15); +x_28 = lean_box(0); +x_29 = lean_box(0); +x_30 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_4); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_2); +x_13 = lean_unsigned_to_nat(2u); +x_14 = l_Lean_Syntax_getArg(x_1, x_13); +x_15 = l_Lean_Syntax_isNone(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = l_Lean_Syntax_matchesNull(x_14, x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +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_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_14, x_19); +lean_dec(x_14); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__3(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_14); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__3(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_26; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("applyAssumption", 15); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption(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: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +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); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +uint8_t x_17; +lean_inc(x_15); +x_17 = l_Lean_Syntax_matchesNull(x_15, x_14); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_15); +lean_dec(x_9); +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); +lean_dec(x_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_15, x_19); +lean_dec(x_15); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_15); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__4(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +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); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_4); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyAssumption___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l_Lean_Elab_Tactic_evalApplyAssumption___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_2); +return x_15; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elab", 4); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalApplyAssumption", 19); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyAssumption), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_evalApplyAssumption___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5; +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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(69u); +x_2 = lean_unsigned_to_nat(0u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(79u); +x_2 = lean_unsigned_to_nat(31u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(69u); +x_2 = lean_unsigned_to_nat(4u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(69u); +x_2 = lean_unsigned_to_nat(23u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5; +x_4 = lean_unsigned_to_nat(23u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6; +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; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t 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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_16 = l_Lean_Elab_Tactic_getMainGoal(x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_box(0); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_17); +lean_ctor_set(x_20, 1, x_19); +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_21; lean_object* x_22; +x_21 = 0; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_22 = l_Lean_Elab_Tactic_processSyntax(x_2, x_21, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +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 = l_Lean_Elab_Tactic_replaceMainGoal(x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_25, 0); +lean_dec(x_27); +x_28 = lean_box(0); +lean_ctor_set(x_25, 0, x_28); +return x_25; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_25, 1); +lean_inc(x_29); +lean_dec(x_25); +x_30 = lean_box(0); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_25); +if (x_32 == 0) +{ +return x_25; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_25, 0); +x_34 = lean_ctor_get(x_25, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_25); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_36 = !lean_is_exclusive(x_22); +if (x_36 == 0) +{ +return x_22; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_22, 0); +x_38 = lean_ctor_get(x_22, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_22); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +uint8_t x_40; lean_object* x_41; +x_40 = 1; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_41 = l_Lean_Elab_Tactic_processSyntax(x_2, x_40, x_3, x_4, x_5, x_6, x_20, x_11, x_12, x_13, x_14, x_18); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +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); +x_44 = l_Lean_Elab_Tactic_replaceMainGoal(x_42, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_43); +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; +x_46 = lean_ctor_get(x_44, 0); +lean_dec(x_46); +x_47 = lean_box(0); +lean_ctor_set(x_44, 0, x_47); +return x_44; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_44, 1); +lean_inc(x_48); +lean_dec(x_44); +x_49 = lean_box(0); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +return x_50; +} +} +else +{ +uint8_t x_51; +x_51 = !lean_is_exclusive(x_44); +if (x_51 == 0) +{ +return x_44; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +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_44); +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; +} +} +} +else +{ +uint8_t x_55; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_55 = !lean_is_exclusive(x_41); +if (x_55 == 0) +{ +return x_41; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_41, 0); +x_57 = lean_ctor_get(x_41, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_41); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_57); +return x_58; +} +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_14); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_59 = !lean_is_exclusive(x_16); +if (x_59 == 0) +{ +return x_16; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_16, 0); +x_61 = lean_ctor_get(x_16, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_16); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +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; +x_15 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = l_Lean_Elab_Tactic_parseUsing(x_5); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_36; +x_36 = lean_box(0); +x_21 = x_36; +goto block_35; +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_3); +if (x_37 == 0) +{ +x_21 = x_3; +goto block_35; +} +else +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_3, 0); +lean_inc(x_38); +lean_dec(x_3); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +x_21 = x_39; +goto block_35; +} +} +block_35: +{ +lean_object* x_22; lean_object* x_23; +x_22 = l_Lean_mkOptionalNode(x_21); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_23 = l_Lean_Elab_Tactic_elabApplyRulesConfig(x_22, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = 0; +x_27 = 1; +x_28 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_28, 0, x_24); +lean_ctor_set_uint8(x_28, sizeof(void*)*1, x_26); +lean_ctor_set_uint8(x_28, sizeof(void*)*1 + 1, x_27); +lean_ctor_set_uint8(x_28, sizeof(void*)*1 + 2, x_27); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyRules___lambda__1___boxed), 15, 6); +lean_closure_set(x_29, 0, x_2); +lean_closure_set(x_29, 1, x_28); +lean_closure_set(x_29, 2, x_17); +lean_closure_set(x_29, 3, x_18); +lean_closure_set(x_29, 4, x_19); +lean_closure_set(x_29, 5, x_20); +x_30 = l_Lean_Elab_Tactic_withMainContext___rarg(x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_25); +return x_30; +} +else +{ +uint8_t x_31; +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_13); +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_6); +lean_dec(x_2); +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) +{ +return x_23; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_23, 0); +x_33 = lean_ctor_get(x_23, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_23); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_dec(x_4); +x_15 = lean_unsigned_to_nat(4u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +lean_dec(x_1); +x_17 = l_Lean_Syntax_isNone(x_16); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_unsigned_to_nat(1u); +lean_inc(x_16); +x_19 = l_Lean_Syntax_matchesNull(x_16, x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_16); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Syntax_getArg(x_16, x_21); +lean_dec(x_16); +x_23 = l_Lean_Elab_Tactic_parseUsing___closed__2; +lean_inc(x_22); +x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); +if (x_24 == 0) +{ +lean_object* x_25; +lean_dec(x_22); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_22); +x_27 = lean_box(0); +x_28 = l_Lean_Elab_Tactic_evalApplyRules___lambda__2(x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_28; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_16); +x_29 = lean_box(0); +x_30 = lean_box(0); +x_31 = l_Lean_Elab_Tactic_evalApplyRules___lambda__2(x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_31; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__4(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_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +lean_dec(x_3); +x_14 = lean_unsigned_to_nat(3u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_unsigned_to_nat(1u); +lean_inc(x_15); +x_18 = l_Lean_Syntax_matchesNull(x_15, x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_15); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Lean_Syntax_getArg(x_15, x_20); +lean_dec(x_15); +x_22 = l_Lean_Elab_Tactic_parseArgs___closed__4; +lean_inc(x_21); +x_23 = l_Lean_Syntax_isOfKind(x_21, x_22); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_21); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_24 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_21); +x_26 = lean_box(0); +x_27 = l_Lean_Elab_Tactic_evalApplyRules___lambda__3(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_27; +} +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_15); +x_28 = lean_box(0); +x_29 = lean_box(0); +x_30 = l_Lean_Elab_Tactic_evalApplyRules___lambda__3(x_1, x_4, x_2, x_29, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__5(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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_2); +x_13 = lean_unsigned_to_nat(2u); +x_14 = l_Lean_Syntax_getArg(x_1, x_13); +x_15 = l_Lean_Syntax_isNone(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = l_Lean_Syntax_matchesNull(x_14, x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +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_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_14, x_19); +lean_dec(x_14); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalApplyRules___lambda__4(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_14); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalApplyRules___lambda__4(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_26; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalApplyRules___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("applyRules", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalApplyRules___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalApplyRules___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules(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: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalApplyRules___closed__2; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +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); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +uint8_t x_17; +lean_inc(x_15); +x_17 = l_Lean_Syntax_matchesNull(x_15, x_14); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_15); +lean_dec(x_9); +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); +lean_dec(x_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_15, x_19); +lean_dec(x_15); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalApplyRules___lambda__5(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_15); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalApplyRules___lambda__5(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___lambda__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; lean_object* x_17; +x_16 = lean_unbox(x_3); +lean_dec(x_3); +x_17 = l_Lean_Elab_Tactic_evalApplyRules___lambda__1(x_1, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalApplyRules___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l_Lean_Elab_Tactic_evalApplyRules___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_4); +return x_15; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalApplyRules", 14); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalApplyRules), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_evalApplyRules___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3; +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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elaborator for apply_rules.\n\nSee `Lean.MVarId.applyRules` for a `MetaM` level analogue of this tactic.\n", 103); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1; +x_4 = l_Lean_addBuiltinDocString(x_2, x_3, x_1); +return x_4; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(87u); +x_2 = lean_unsigned_to_nat(0u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(95u); +x_2 = lean_unsigned_to_nat(31u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(87u); +x_2 = lean_unsigned_to_nat(4u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(87u); +x_2 = lean_unsigned_to_nat(18u); +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___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5; +x_4 = lean_unsigned_to_nat(18u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6; +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; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("solve_by_elim unexpectedly returned subgoals", 44); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(uint8_t 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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_46; +x_46 = lean_box(0); +x_17 = x_46; +goto block_45; +} +else +{ +uint8_t x_47; +x_47 = !lean_is_exclusive(x_6); +if (x_47 == 0) +{ +x_17 = x_6; +goto block_45; +} +else +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_6, 0); +lean_inc(x_48); +lean_dec(x_6); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +x_17 = x_49; +goto block_45; +} +} +block_45: +{ +lean_object* x_18; lean_object* x_19; +x_18 = l_Lean_mkOptionalNode(x_17); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_19 = l_Lean_Elab_Tactic_elabConfig(x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +if (lean_obj_tag(x_5) == 0) +{ +uint8_t x_39; +x_39 = 0; +x_22 = x_39; +goto block_38; +} +else +{ +uint8_t x_40; +x_40 = 1; +x_22 = x_40; +goto block_38; +} +block_38: +{ +lean_object* x_23; +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +x_23 = l_Lean_Elab_Tactic_processSyntax(x_20, x_22, x_1, x_2, x_3, x_4, x_7, x_12, x_13, x_14, x_15, x_21); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +uint8_t x_25; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_25 = !lean_is_exclusive(x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_23, 0); +lean_dec(x_26); +x_27 = lean_box(0); +lean_ctor_set(x_23, 0, x_27); +return x_23; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_23, 1); +lean_inc(x_28); +lean_dec(x_23); +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +return x_30; +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_24); +x_31 = lean_ctor_get(x_23, 1); +lean_inc(x_31); +lean_dec(x_23); +x_32 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2; +x_33 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___spec__2(x_32, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_31); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_34 = !lean_is_exclusive(x_23); +if (x_34 == 0) +{ +return x_23; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_23, 0); +x_36 = lean_ctor_get(x_23, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_23); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +} +else +{ +uint8_t x_41; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_41 = !lean_is_exclusive(x_19); +if (x_41 == 0) +{ +return x_19; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_19, 0); +x_43 = lean_ctor_get(x_19, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_19); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +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_dec(x_5); +x_16 = l_Lean_Elab_Tactic_parseArgs(x_1); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = l_Lean_Elab_Tactic_parseUsing(x_6); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_22; +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_22 = l_Lean_Elab_Tactic_getMainGoal(x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; +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_box(0); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_23); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_unbox(x_18); +lean_dec(x_18); +x_28 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_27, x_19, x_20, x_21, x_2, x_3, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +return x_28; +} +else +{ +uint8_t x_29; +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_14); +lean_dec(x_13); +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_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; +lean_dec(x_4); +x_33 = l_Lean_Elab_Tactic_getGoals___rarg(x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +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); +x_36 = lean_unbox(x_18); +lean_dec(x_18); +x_37 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_36, x_19, x_20, x_21, x_2, x_3, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_35); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +return x_37; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +lean_dec(x_5); +x_16 = lean_unsigned_to_nat(5u); +x_17 = l_Lean_Syntax_getArg(x_1, x_16); +lean_dec(x_1); +x_18 = l_Lean_Syntax_isNone(x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_unsigned_to_nat(1u); +lean_inc(x_17); +x_20 = l_Lean_Syntax_matchesNull(x_17, x_19); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_17); +lean_dec(x_14); +lean_dec(x_13); +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_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_15); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_unsigned_to_nat(0u); +x_23 = l_Lean_Syntax_getArg(x_17, x_22); +lean_dec(x_17); +x_24 = l_Lean_Elab_Tactic_parseUsing___closed__2; +lean_inc(x_23); +x_25 = l_Lean_Syntax_isOfKind(x_23, x_24); +if (x_25 == 0) +{ +lean_object* x_26; +lean_dec(x_23); +lean_dec(x_14); +lean_dec(x_13); +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_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_26 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_15); +return x_26; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_23); +x_28 = lean_box(0); +x_29 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_28, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_29; +} +} +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_17); +x_30 = lean_box(0); +x_31 = lean_box(0); +x_32 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__2(x_6, x_2, x_3, x_4, x_31, x_30, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_dec(x_4); +x_15 = lean_unsigned_to_nat(4u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +x_17 = l_Lean_Syntax_isNone(x_16); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_unsigned_to_nat(1u); +lean_inc(x_16); +x_19 = l_Lean_Syntax_matchesNull(x_16, x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_16); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Syntax_getArg(x_16, x_21); +lean_dec(x_16); +x_23 = l_Lean_Elab_Tactic_parseArgs___closed__4; +lean_inc(x_22); +x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); +if (x_24 == 0) +{ +lean_object* x_25; +lean_dec(x_22); +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_14); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_22); +x_27 = lean_box(0); +x_28 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_27, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_28; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_16); +x_29 = lean_box(0); +x_30 = lean_box(0); +x_31 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__3(x_1, x_5, x_2, x_3, x_30, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_31; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(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_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +lean_dec(x_3); +x_14 = lean_unsigned_to_nat(3u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_unsigned_to_nat(1u); +lean_inc(x_15); +x_18 = l_Lean_Syntax_matchesNull(x_15, x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_15); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_13); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Lean_Syntax_getArg(x_15, x_20); +lean_dec(x_15); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = lean_box(0); +x_24 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_23, x_22, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_15); +x_25 = lean_box(0); +x_26 = lean_box(0); +x_27 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__4(x_1, x_4, x_2, x_26, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_2); +x_13 = lean_unsigned_to_nat(2u); +x_14 = l_Lean_Syntax_getArg(x_1, x_13); +x_15 = l_Lean_Syntax_isNone(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_unsigned_to_nat(1u); +lean_inc(x_14); +x_17 = l_Lean_Syntax_matchesNull(x_14, x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +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_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_14, x_19); +lean_dec(x_14); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(x_1, x_3, x_22, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_14); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__5(x_1, x_3, x_25, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_26; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("solveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l_Lean_Elab_Tactic_evalSolveByElim___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim(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: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalSolveByElim___closed__2; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +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); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_16 = l_Lean_Syntax_isNone(x_15); +if (x_16 == 0) +{ +uint8_t x_17; +lean_inc(x_15); +x_17 = l_Lean_Syntax_matchesNull(x_15, x_14); +if (x_17 == 0) +{ +lean_object* x_18; +lean_dec(x_15); +lean_dec(x_9); +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); +lean_dec(x_1); +x_18 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg(x_10); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_15, x_19); +lean_dec(x_15); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_box(0); +x_23 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(x_1, x_22, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_15); +x_24 = lean_box(0); +x_25 = lean_box(0); +x_26 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__6(x_1, x_25, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___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, 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) { +_start: +{ +uint8_t x_17; lean_object* x_18; +x_17 = lean_unbox(x_1); +lean_dec(x_1); +x_18 = l_Lean_Elab_Tactic_evalSolveByElim___lambda__1(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +return x_18; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalSolveByElim", 15); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2() { +_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_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1; +x_3 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSolveByElim), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(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___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4; +x_3 = l_Lean_Elab_Tactic_evalSolveByElim___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3; +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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(98u); +x_2 = lean_unsigned_to_nat(0u); +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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(111u); +x_2 = lean_unsigned_to_nat(31u); +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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(98u); +x_2 = lean_unsigned_to_nat(4u); +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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(98u); +x_2 = lean_unsigned_to_nat(19u); +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___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5; +x_4 = lean_unsigned_to_nat(19u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6; +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; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +lean_object* initialize_Lean_Meta_Tactic_SolveByElim(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Config(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_SolveByElim(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Tactic_SolveByElim(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Config(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__1); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__2); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__3); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__4); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_8____closed__5); +l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1 = _init_l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Tactic_elabConfig___spec__1___closed__1); +l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1 = _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__1); +l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2 = _init_l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___lambda__4___closed__2); +l_Lean_Elab_Tactic_elabConfig___closed__1 = _init_l_Lean_Elab_Tactic_elabConfig___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__1); +l_Lean_Elab_Tactic_elabConfig___closed__2 = _init_l_Lean_Elab_Tactic_elabConfig___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__2); +l_Lean_Elab_Tactic_elabConfig___closed__3 = _init_l_Lean_Elab_Tactic_elabConfig___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__3); +l_Lean_Elab_Tactic_elabConfig___closed__4 = _init_l_Lean_Elab_Tactic_elabConfig___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__4); +l_Lean_Elab_Tactic_elabConfig___closed__5 = _init_l_Lean_Elab_Tactic_elabConfig___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__5); +l_Lean_Elab_Tactic_elabConfig___closed__6 = _init_l_Lean_Elab_Tactic_elabConfig___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__6); +l_Lean_Elab_Tactic_elabConfig___closed__7 = _init_l_Lean_Elab_Tactic_elabConfig___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__7); +l_Lean_Elab_Tactic_elabConfig___closed__8 = _init_l_Lean_Elab_Tactic_elabConfig___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__8); +l_Lean_Elab_Tactic_elabConfig___closed__9 = _init_l_Lean_Elab_Tactic_elabConfig___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__9); +l_Lean_Elab_Tactic_elabConfig___closed__10 = _init_l_Lean_Elab_Tactic_elabConfig___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__10); +l_Lean_Elab_Tactic_elabConfig___closed__11 = _init_l_Lean_Elab_Tactic_elabConfig___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__11); +l_Lean_Elab_Tactic_elabConfig___closed__12 = _init_l_Lean_Elab_Tactic_elabConfig___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__12); +l_Lean_Elab_Tactic_elabConfig___closed__13 = _init_l_Lean_Elab_Tactic_elabConfig___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__13); +l_Lean_Elab_Tactic_elabConfig___closed__14 = _init_l_Lean_Elab_Tactic_elabConfig___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__14); +l_Lean_Elab_Tactic_elabConfig___closed__15 = _init_l_Lean_Elab_Tactic_elabConfig___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__15); +l_Lean_Elab_Tactic_elabConfig___closed__16 = _init_l_Lean_Elab_Tactic_elabConfig___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__16); +l_Lean_Elab_Tactic_elabConfig___closed__17 = _init_l_Lean_Elab_Tactic_elabConfig___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabConfig___closed__17); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__1); +l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2 = _init_l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalUnsafe____x40_Lean_Elab_Tactic_SolveByElim___hyg_189____closed__2); +l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__1); +l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__2); +l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__3); +l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4 = _init_l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_elabApplyRulesConfig___closed__4); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__1); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__2); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__3); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__4); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__5); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__6); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__7); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__8); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__9); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__10); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__11); +l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_parseArgs___spec__2___closed__12); +l_Lean_Elab_Tactic_parseArgs___closed__1 = _init_l_Lean_Elab_Tactic_parseArgs___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__1); +l_Lean_Elab_Tactic_parseArgs___closed__2 = _init_l_Lean_Elab_Tactic_parseArgs___closed__2(); +l_Lean_Elab_Tactic_parseArgs___closed__3 = _init_l_Lean_Elab_Tactic_parseArgs___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__3); +l_Lean_Elab_Tactic_parseArgs___closed__4 = _init_l_Lean_Elab_Tactic_parseArgs___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_parseArgs___closed__4); +l_Lean_Elab_Tactic_parseUsing___closed__1 = _init_l_Lean_Elab_Tactic_parseUsing___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_parseUsing___closed__1); +l_Lean_Elab_Tactic_parseUsing___closed__2 = _init_l_Lean_Elab_Tactic_parseUsing___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_parseUsing___closed__2); +l_Lean_Elab_Tactic_processSyntax___closed__1 = _init_l_Lean_Elab_Tactic_processSyntax___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_processSyntax___closed__1); +l_Lean_Elab_Tactic_processSyntax___closed__2 = _init_l_Lean_Elab_Tactic_processSyntax___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_processSyntax___closed__2); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__1); +l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalApplyAssumption___spec__1___rarg___closed__2); +l_Lean_Elab_Tactic_evalApplyAssumption___closed__1 = _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyAssumption___closed__1); +l_Lean_Elab_Tactic_evalApplyAssumption___closed__2 = _init_l_Lean_Elab_Tactic_evalApplyAssumption___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyAssumption___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption___closed__5); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyAssumption_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Elab_Tactic_evalApplyRules___closed__1 = _init_l_Lean_Elab_Tactic_evalApplyRules___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyRules___closed__1); +l_Lean_Elab_Tactic_evalApplyRules___closed__2 = _init_l_Lean_Elab_Tactic_evalApplyRules___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalApplyRules___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString___closed__1); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_docString(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalApplyRules_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__1); +l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___lambda__1___closed__2); +l_Lean_Elab_Tactic_evalSolveByElim___closed__1 = _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___closed__1); +l_Lean_Elab_Tactic_evalSolveByElim___closed__2 = _init_l_Lean_Elab_Tactic_evalSolveByElim___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSolveByElim___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSolveByElim_declRange(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)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/Tactic/Symm.c b/stage0/stdlib/Lean/Elab/Tactic/Symm.c new file mode 100644 index 0000000000..4a70191690 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic/Symm.c @@ -0,0 +1,1024 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic.Symm +// Imports: Lean.Meta.Tactic.Symm Lean.Elab.Tactic.Location +#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___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2; +lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4___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_evalSymmSaturate_declRange___closed__2; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__4; +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___spec__2(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_Tactic_expandLocation(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange(lean_object*); +extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6; +lean_object* l_Lean_MVarId_applySymmAt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_getMainGoal(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_evalSymm_declRange___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__7; +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +lean_object* l_Lean_Elab_Tactic_withLocation(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*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate(lean_object*); +lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(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_evalSymmSaturate_declRange___closed__5; +lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__3; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__11; +lean_object* l_Lean_MVarId_applySymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__9; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__8; +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__1(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_evalSymm___closed__10; +static lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymmSaturate(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_evalSymmSaturate___closed__1; +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSymm___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm(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_evalSymmSaturate___closed__3; +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7; +lean_object* l_Lean_Elab_Tactic_liftMetaTactic1(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_evalSymm_declRange___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymmSaturate___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4(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_evalSymmSaturate___closed__3; +lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_symmSaturate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__1(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: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_11 = l_Lean_Elab_Tactic_getMainGoal(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_14 = l_Lean_MVarId_applySymmAt(x_1, x_12, x_6, x_7, x_8, x_9, 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_19; +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 = lean_box(0); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Lean_Elab_Tactic_replaceMainGoal(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_16); +return x_19; +} +else +{ +uint8_t x_20; +lean_dec(x_9); +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_20 = !lean_is_exclusive(x_14); +if (x_20 == 0) +{ +return x_14; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +uint8_t x_24; +lean_dec(x_9); +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); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_11); +if (x_24 == 0) +{ +return x_11; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_11, 0); +x_26 = lean_ctor_get(x_11, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_11); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___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) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymm___lambda__1), 10, 1); +lean_closure_set(x_11, 0, x_1); +x_12 = l_Lean_Elab_Tactic_withMainContext___rarg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_MVarId_applySymm(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_7, 0, x_10); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_7, 0); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_7); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_7); +if (x_15 == 0) +{ +return x_7; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_7, 0); +x_17 = lean_ctor_get(x_7, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_7); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symm made no progress", 21); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4(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: +{ +lean_object* x_11; lean_object* x_12; +x_11 = l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2; +x_12 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic_throwExs___spec__2(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symm", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__5() { +_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_Elab_Tactic_evalSymm___closed__1; +x_2 = l_Lean_Elab_Tactic_evalSymm___closed__2; +x_3 = l_Lean_Elab_Tactic_evalSymm___closed__3; +x_4 = l_Lean_Elab_Tactic_evalSymm___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymm___lambda__3), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_evalSymm___closed__6; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_liftMetaTactic1), 10, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__8() { +_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_Lean_Elab_Tactic_evalSymm___closed__9() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_evalSymm___closed__8; +x_2 = 1; +x_3 = lean_alloc_ctor(1, 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_Lean_Elab_Tactic_evalSymm___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymm___lambda__2), 10, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymm___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymm___lambda__4___boxed), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm(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: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalSymm___closed__5; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +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); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +lean_dec(x_1); +x_16 = l_Lean_Syntax_getOptional_x3f(x_15); +lean_dec(x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = l_Lean_Elab_Tactic_evalSymm___closed__9; +x_18 = l_Lean_Elab_Tactic_evalSymm___closed__10; +x_19 = l_Lean_Elab_Tactic_evalSymm___closed__7; +x_20 = l_Lean_Elab_Tactic_evalSymm___closed__11; +x_21 = l_Lean_Elab_Tactic_withLocation(x_17, x_18, x_19, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_22 = lean_ctor_get(x_16, 0); +lean_inc(x_22); +lean_dec(x_16); +x_23 = l_Lean_Elab_Tactic_expandLocation(x_22); +lean_dec(x_22); +x_24 = l_Lean_Elab_Tactic_evalSymm___closed__10; +x_25 = l_Lean_Elab_Tactic_evalSymm___closed__7; +x_26 = l_Lean_Elab_Tactic_evalSymm___closed__11; +x_27 = l_Lean_Elab_Tactic_withLocation(x_23, x_24, x_25, x_26, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_27; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymm___lambda__4___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, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_evalSymm___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +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); +lean_dec(x_1); +return x_11; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Elab", 4); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalSymm", 8); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3() { +_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_Elab_Tactic_evalSymm___closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1; +x_3 = l_Lean_Elab_Tactic_evalSymm___closed__3; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymm), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm(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___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4; +x_3 = l_Lean_Elab_Tactic_evalSymm___closed__5; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5; +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___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(13u); +x_2 = lean_unsigned_to_nat(0u); +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___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(20u); +x_2 = lean_unsigned_to_nat(31u); +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___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(13u); +x_2 = lean_unsigned_to_nat(4u); +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___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(13u); +x_2 = lean_unsigned_to_nat(12u); +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___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__5; +x_4 = lean_unsigned_to_nat(12u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6; +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; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymmSaturate___lambda__1(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; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_10 = l_Lean_Elab_Tactic_getMainGoal(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_13 = l_Lean_MVarId_symmSaturate(x_11, x_5, x_6, x_7, x_8, 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_18; +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_16 = lean_box(0); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_14); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_Elab_Tactic_replaceMainGoal(x_17, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +return x_18; +} +else +{ +uint8_t x_19; +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); +lean_dec(x_1); +x_19 = !lean_is_exclusive(x_13); +if (x_19 == 0) +{ +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_13, 0); +x_21 = lean_ctor_get(x_13, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_13); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +else +{ +uint8_t x_23; +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); +lean_dec(x_1); +x_23 = !lean_is_exclusive(x_10); +if (x_23 == 0) +{ +return x_10; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_10, 0); +x_25 = lean_ctor_get(x_10, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_10); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symmSaturate", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__2() { +_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_Elab_Tactic_evalSymm___closed__1; +x_2 = l_Lean_Elab_Tactic_evalSymm___closed__2; +x_3 = l_Lean_Elab_Tactic_evalSymm___closed__3; +x_4 = l_Lean_Elab_Tactic_evalSymmSaturate___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymmSaturate___lambda__1), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalSymmSaturate(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: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +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_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Elab_Tactic_evalSymmSaturate___closed__3; +x_15 = l_Lean_Elab_Tactic_withMainContext___rarg(x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_15; +} +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("evalSymmSaturate", 16); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2() { +_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_Elab_Tactic_evalSymm___closed__1; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1; +x_3 = l_Lean_Elab_Tactic_evalSymm___closed__3; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalSymmSaturate), 10, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate(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___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4; +x_3 = l_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__3; +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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(23u); +x_2 = lean_unsigned_to_nat(0u); +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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(27u); +x_2 = lean_unsigned_to_nat(31u); +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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__2; +x_4 = lean_unsigned_to_nat(31u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(23u); +x_2 = lean_unsigned_to_nat(4u); +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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(23u); +x_2 = lean_unsigned_to_nat(20u); +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___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4; +x_2 = lean_unsigned_to_nat(4u); +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__5; +x_4 = lean_unsigned_to_nat(20u); +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6; +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; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7; +x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); +return x_4; +} +} +lean_object* initialize_Lean_Meta_Tactic_Symm(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Location(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Symm(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Tactic_Symm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Location(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1 = _init_l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__1); +l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2 = _init_l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___lambda__4___closed__2); +l_Lean_Elab_Tactic_evalSymm___closed__1 = _init_l_Lean_Elab_Tactic_evalSymm___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__1); +l_Lean_Elab_Tactic_evalSymm___closed__2 = _init_l_Lean_Elab_Tactic_evalSymm___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__2); +l_Lean_Elab_Tactic_evalSymm___closed__3 = _init_l_Lean_Elab_Tactic_evalSymm___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__3); +l_Lean_Elab_Tactic_evalSymm___closed__4 = _init_l_Lean_Elab_Tactic_evalSymm___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__4); +l_Lean_Elab_Tactic_evalSymm___closed__5 = _init_l_Lean_Elab_Tactic_evalSymm___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__5); +l_Lean_Elab_Tactic_evalSymm___closed__6 = _init_l_Lean_Elab_Tactic_evalSymm___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__6); +l_Lean_Elab_Tactic_evalSymm___closed__7 = _init_l_Lean_Elab_Tactic_evalSymm___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__7); +l_Lean_Elab_Tactic_evalSymm___closed__8 = _init_l_Lean_Elab_Tactic_evalSymm___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__8); +l_Lean_Elab_Tactic_evalSymm___closed__9 = _init_l_Lean_Elab_Tactic_evalSymm___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__9); +l_Lean_Elab_Tactic_evalSymm___closed__10 = _init_l_Lean_Elab_Tactic_evalSymm___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__10); +l_Lean_Elab_Tactic_evalSymm___closed__11 = _init_l_Lean_Elab_Tactic_evalSymm___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymm___closed__11); +l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm___closed__5); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSymm(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSymm_declRange(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Elab_Tactic_evalSymmSaturate___closed__1 = _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymmSaturate___closed__1); +l_Lean_Elab_Tactic_evalSymmSaturate___closed__2 = _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymmSaturate___closed__2); +l_Lean_Elab_Tactic_evalSymmSaturate___closed__3 = _init_l_Lean_Elab_Tactic_evalSymmSaturate___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalSymmSaturate___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate___closed__3); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__5); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__6); +l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7 = _init_l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange___closed__7); +if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalSymmSaturate_declRange(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)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/LabelAttribute.c b/stage0/stdlib/Lean/LabelAttribute.c new file mode 100644 index 0000000000..80e5019f80 --- /dev/null +++ b/stage0/stdlib/Lean/LabelAttribute.c @@ -0,0 +1,3272 @@ +// Lean compiler output +// Module: Lean.LabelAttribute +// Imports: Lean.ScopedEnvExtension Lean.DocString +#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_Lean_labelled___closed__4; +lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__7; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__20; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34; +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__10; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28; +static lean_object* l_Lean_labelled___closed__1; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__18; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29; +lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__14; +lean_object* l_Lean_Syntax_getId(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4; +lean_object* lean_mk_array(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__23; +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26; +LEAN_EXPORT lean_object* l_Array_erase___at_Lean_mkLabelAttr___spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_labelled___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18; +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__7; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__11; +lean_object* l_Lean_removeLeadingSpaces(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42; +lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27; +lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_LabelAttribute___hyg_18_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__3; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__19; +lean_object* l_Lean_ScopedEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25; +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23; +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_registerLabelAttr___spec__3(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +LEAN_EXPORT lean_object* l_Lean_labelled(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__5; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__4; +lean_object* l_Lean_ScopedEnvExtension_addScopedEntry___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_take(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50; +lean_object* l_Lean_registerSimpleScopedEnvExtension___rarg(lean_object*, lean_object*); +lean_object* l_Array_feraseIdx___rarg(lean_object*, lean_object*); +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +static lean_object* l_Lean_labelled___closed__2; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10; +lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_labelled___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__22; +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2___boxed(lean_object*, lean_object*); +lean_object* l_Lean_quoteNameMk(lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__17; +LEAN_EXPORT lean_object* l_Lean_mkLabelExt___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59; +static lean_object* l_Lean_registerLabelAttr___closed__1; +lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41; +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_registerLabelAttr(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20; +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__5; +lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_append(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27; +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48; +uint8_t lean_name_eq(lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13; +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_initFn____x40_Lean_LabelAttribute___hyg_18____spec__1___boxed(lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__1; +lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16; +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__8; +lean_object* l_Lean_TSyntax_getDocString(lean_object*); +static lean_object* l_Lean_mkLabelExt___closed__1; +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__28; +size_t lean_hashmap_mk_idx(lean_object*, uint64_t); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__6; +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37; +lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39; +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at_Lean_registerLabelAttr___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7; +LEAN_EXPORT lean_object* l_Array_erase___at_Lean_mkLabelAttr___spec__2___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_labelExtensionMapRef; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33; +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_registerLabelAttr___spec__5(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__16; +lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51; +lean_object* l_id___rarg___boxed(lean_object*); +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at_Lean_registerLabelAttr___spec__4(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_labelled___closed__3; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__12; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2; +LEAN_EXPORT lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52_; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__14; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15; +lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +uint64_t l_Lean_Name_hash___override(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49; +uint8_t l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_labelled___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mkArray1___rarg(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21; +lean_object* lean_nat_mul(lean_object*, lean_object*); +lean_object* l_Array_indexOfAux___at_Lean_MetavarContext_setMVarUserName___spec__3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_addLocalEntry___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32; +lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__9; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54; +lean_object* l_String_intercalate(lean_object*, lean_object*); +lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkLabelExt(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11; +static lean_object* l_Lean_mkLabelExt___closed__2; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40; +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__12; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__17; +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___auto____x40_Lean_LabelAttribute___hyg_220_; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8; +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22; +lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l___auto____x40_Lean_LabelAttribute___hyg_118_; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__24; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__20; +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__13; +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__8; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30; +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_labelled___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5; +lean_object* l_String_toSubstring_x27(lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_MessageData_ofName(lean_object*); +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53; +static lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19; +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_initFn____x40_Lean_LabelAttribute___hyg_18____spec__1(lean_object*); +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__15; +LEAN_EXPORT lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__26; +static lean_object* l_Lean_Parser_Command_registerLabelAttr___closed__2; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +static lean_object* l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_registerLabelAttr; +lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_initFn____x40_Lean_LabelAttribute___hyg_18____spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_LabelAttribute___hyg_18_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = lean_unsigned_to_nat(8u); +x_3 = l_Lean_mkHashMapImp___rarg(x_2); +x_4 = lean_st_mk_ref(x_3, x_1); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); +lean_inc(x_6); +lean_dec(x_4); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_initFn____x40_Lean_LabelAttribute___hyg_18____spec__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashMap___at_Lean_initFn____x40_Lean_LabelAttribute___hyg_18____spec__1(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Parser", 6); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("tacticSeq", 9); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3; +x_4 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("tacticSeq1Indented", 18); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3; +x_4 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__7; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("null", 4); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("exact", 5); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3; +x_4 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(2); +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11; +x_3 = lean_alloc_ctor(2, 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___auto____x40_Lean_LabelAttribute___hyg_52____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Term", 4); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("declName", 8); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("decl_name%", 10); +return x_1; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(2); +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18; +x_3 = lean_alloc_ctor(2, 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___auto____x40_Lean_LabelAttribute___hyg_52____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__17; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__20; +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___auto____x40_Lean_LabelAttribute___hyg_52____closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__14; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____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___auto____x40_Lean_LabelAttribute___hyg_52____closed__12; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____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___auto____x40_Lean_LabelAttribute___hyg_52____closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__23; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__10; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__24; +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___auto____x40_Lean_LabelAttribute___hyg_52____closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__8; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__26; +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___auto____x40_Lean_LabelAttribute___hyg_52____closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__5; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__28; +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___auto____x40_Lean_LabelAttribute___hyg_52_() { +_start: +{ +lean_object* x_1; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelExt___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(x_1, x_2); +if (x_3 == 0) +{ +lean_object* x_4; +x_4 = lean_array_push(x_1, x_2); +return x_4; +} +else +{ +lean_dec(x_2); +return x_1; +} +} +} +static lean_object* _init_l_Lean_mkLabelExt___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_mkLabelExt___lambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_mkLabelExt___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_id___rarg___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelExt(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; lean_object* x_7; +x_3 = l_Lean_mkLabelExt___closed__1; +x_4 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_5 = l_Lean_mkLabelExt___closed__2; +x_6 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_5); +x_7 = l_Lean_registerSimpleScopedEnvExtension___rarg(x_6, x_2); +return x_7; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_118_() { +_start: +{ +lean_object* x_1; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29; +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1; +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_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +switch (x_3) { +case 0: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_dec(x_4); +x_7 = lean_st_ref_take(x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = !lean_is_exclusive(x_8); +if (x_10 == 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_ctor_get(x_8, 0); +x_12 = lean_ctor_get(x_8, 4); +lean_dec(x_12); +x_13 = l_Lean_ScopedEnvExtension_addEntry___rarg(x_1, x_11, x_2); +x_14 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +lean_ctor_set(x_8, 4, x_14); +lean_ctor_set(x_8, 0, x_13); +x_15 = lean_st_ref_set(x_5, x_8, x_9); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +x_18 = lean_box(0); +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = lean_box(0); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +else +{ +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; +x_22 = lean_ctor_get(x_8, 0); +x_23 = lean_ctor_get(x_8, 1); +x_24 = lean_ctor_get(x_8, 2); +x_25 = lean_ctor_get(x_8, 3); +x_26 = lean_ctor_get(x_8, 5); +x_27 = lean_ctor_get(x_8, 6); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_8); +x_28 = l_Lean_ScopedEnvExtension_addEntry___rarg(x_1, x_22, x_2); +x_29 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +x_30 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_23); +lean_ctor_set(x_30, 2, x_24); +lean_ctor_set(x_30, 3, x_25); +lean_ctor_set(x_30, 4, x_29); +lean_ctor_set(x_30, 5, x_26); +lean_ctor_set(x_30, 6, x_27); +x_31 = lean_st_ref_set(x_5, x_30, x_9); +x_32 = lean_ctor_get(x_31, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_33 = x_31; +} else { + lean_dec_ref(x_31); + x_33 = lean_box(0); +} +x_34 = lean_box(0); +if (lean_is_scalar(x_33)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_33; +} +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +return x_35; +} +} +case 1: +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_dec(x_4); +x_36 = lean_st_ref_take(x_5, x_6); +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); +x_39 = !lean_is_exclusive(x_37); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_40 = lean_ctor_get(x_37, 0); +x_41 = lean_ctor_get(x_37, 4); +lean_dec(x_41); +x_42 = l_Lean_ScopedEnvExtension_addLocalEntry___rarg(x_1, x_40, x_2); +x_43 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +lean_ctor_set(x_37, 4, x_43); +lean_ctor_set(x_37, 0, x_42); +x_44 = lean_st_ref_set(x_5, x_37, x_38); +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_44, 0); +lean_dec(x_46); +x_47 = lean_box(0); +lean_ctor_set(x_44, 0, x_47); +return x_44; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_44, 1); +lean_inc(x_48); +lean_dec(x_44); +x_49 = lean_box(0); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +return x_50; +} +} +else +{ +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_51 = lean_ctor_get(x_37, 0); +x_52 = lean_ctor_get(x_37, 1); +x_53 = lean_ctor_get(x_37, 2); +x_54 = lean_ctor_get(x_37, 3); +x_55 = lean_ctor_get(x_37, 5); +x_56 = lean_ctor_get(x_37, 6); +lean_inc(x_56); +lean_inc(x_55); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_37); +x_57 = l_Lean_ScopedEnvExtension_addLocalEntry___rarg(x_1, x_51, x_2); +x_58 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +x_59 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_52); +lean_ctor_set(x_59, 2, x_53); +lean_ctor_set(x_59, 3, x_54); +lean_ctor_set(x_59, 4, x_58); +lean_ctor_set(x_59, 5, x_55); +lean_ctor_set(x_59, 6, x_56); +x_60 = lean_st_ref_set(x_5, x_59, x_38); +x_61 = lean_ctor_get(x_60, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + lean_ctor_release(x_60, 1); + x_62 = x_60; +} else { + lean_dec_ref(x_60); + x_62 = lean_box(0); +} +x_63 = lean_box(0); +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_62; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_61); +return x_64; +} +} +default: +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_65 = lean_ctor_get(x_4, 6); +lean_inc(x_65); +lean_dec(x_4); +x_66 = lean_st_ref_take(x_5, x_6); +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec(x_66); +x_69 = !lean_is_exclusive(x_67); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_70 = lean_ctor_get(x_67, 0); +x_71 = lean_ctor_get(x_67, 4); +lean_dec(x_71); +x_72 = l_Lean_ScopedEnvExtension_addScopedEntry___rarg(x_1, x_70, x_65, x_2); +x_73 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +lean_ctor_set(x_67, 4, x_73); +lean_ctor_set(x_67, 0, x_72); +x_74 = lean_st_ref_set(x_5, x_67, x_68); +x_75 = !lean_is_exclusive(x_74); +if (x_75 == 0) +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_74, 0); +lean_dec(x_76); +x_77 = lean_box(0); +lean_ctor_set(x_74, 0, x_77); +return x_74; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_74, 1); +lean_inc(x_78); +lean_dec(x_74); +x_79 = lean_box(0); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_78); +return x_80; +} +} +else +{ +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; +x_81 = lean_ctor_get(x_67, 0); +x_82 = lean_ctor_get(x_67, 1); +x_83 = lean_ctor_get(x_67, 2); +x_84 = lean_ctor_get(x_67, 3); +x_85 = lean_ctor_get(x_67, 5); +x_86 = lean_ctor_get(x_67, 6); +lean_inc(x_86); +lean_inc(x_85); +lean_inc(x_84); +lean_inc(x_83); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_67); +x_87 = l_Lean_ScopedEnvExtension_addScopedEntry___rarg(x_1, x_81, x_65, x_2); +x_88 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +x_89 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_82); +lean_ctor_set(x_89, 2, x_83); +lean_ctor_set(x_89, 3, x_84); +lean_ctor_set(x_89, 4, x_88); +lean_ctor_set(x_89, 5, x_85); +lean_ctor_set(x_89, 6, x_86); +x_90 = lean_st_ref_set(x_5, x_89, x_68); +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_92 = x_90; +} else { + lean_dec_ref(x_90); + x_92 = lean_box(0); +} +x_93 = lean_box(0); +if (lean_is_scalar(x_92)) { + x_94 = lean_alloc_ctor(0, 2, 0); +} else { + x_94 = x_92; +} +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_91); +return x_94; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_erase___at_Lean_mkLabelAttr___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_unsigned_to_nat(0u); +x_4 = l_Array_indexOfAux___at_Lean_MetavarContext_setMVarUserName___spec__3(x_1, x_2, x_3); +if (lean_obj_tag(x_4) == 0) +{ +return x_1; +} +else +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +x_6 = l_Array_feraseIdx___rarg(x_1, x_5); +lean_dec(x_5); +return x_6; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +uint8_t x_8; lean_object* x_9; +lean_dec(x_3); +x_8 = 0; +x_9 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1(x_1, x_2, x_8, x_5, x_6, x_7); +lean_dec(x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_erase___at_Lean_mkLabelAttr___spec__2(x_1, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__3(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; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_6 = lean_st_ref_get(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_11 = l_Lean_ScopedEnvExtension_getState___rarg(x_10, x_1, x_9); +lean_dec(x_9); +x_12 = lean_st_ref_take(x_4, x_8); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 4); +lean_dec(x_17); +x_18 = lean_alloc_closure((void*)(l_Lean_mkLabelAttr___lambda__2___boxed), 3, 2); +lean_closure_set(x_18, 0, x_11); +lean_closure_set(x_18, 1, x_2); +x_19 = l_Lean_ScopedEnvExtension_modifyState___rarg(x_1, x_16, x_18); +x_20 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +lean_ctor_set(x_13, 4, x_20); +lean_ctor_set(x_13, 0, x_19); +x_21 = lean_st_ref_set(x_4, x_13, x_14); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_21, 0); +lean_dec(x_23); +x_24 = lean_box(0); +lean_ctor_set(x_21, 0, x_24); +return x_21; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_21, 1); +lean_inc(x_25); +lean_dec(x_21); +x_26 = lean_box(0); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +else +{ +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; +x_28 = lean_ctor_get(x_13, 0); +x_29 = lean_ctor_get(x_13, 1); +x_30 = lean_ctor_get(x_13, 2); +x_31 = lean_ctor_get(x_13, 3); +x_32 = lean_ctor_get(x_13, 5); +x_33 = lean_ctor_get(x_13, 6); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_13); +x_34 = lean_alloc_closure((void*)(l_Lean_mkLabelAttr___lambda__2___boxed), 3, 2); +lean_closure_set(x_34, 0, x_11); +lean_closure_set(x_34, 1, x_2); +x_35 = l_Lean_ScopedEnvExtension_modifyState___rarg(x_1, x_28, x_34); +x_36 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4; +x_37 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_29); +lean_ctor_set(x_37, 2, x_30); +lean_ctor_set(x_37, 3, x_31); +lean_ctor_set(x_37, 4, x_36); +lean_ctor_set(x_37, 5, x_32); +lean_ctor_set(x_37, 6, x_33); +x_38 = lean_st_ref_set(x_4, x_37, x_14); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_40 = x_38; +} else { + lean_dec_ref(x_38); + x_40 = lean_box(0); +} +x_41 = lean_box(0); +if (lean_is_scalar(x_40)) { + x_42 = lean_alloc_ctor(0, 2, 0); +} else { + x_42 = x_40; +} +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_39); +return x_42; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = 1; +x_7 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_7, 0, x_4); +lean_ctor_set(x_7, 1, x_1); +lean_ctor_set(x_7, 2, x_2); +lean_ctor_set_uint8(x_7, sizeof(void*)*3, x_6); +lean_inc(x_3); +x_8 = lean_alloc_closure((void*)(l_Lean_mkLabelAttr___lambda__1___boxed), 7, 1); +lean_closure_set(x_8, 0, x_3); +x_9 = lean_alloc_closure((void*)(l_Lean_mkLabelAttr___lambda__3___boxed), 5, 1); +lean_closure_set(x_9, 0, x_3); +x_10 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_9); +x_11 = l_Lean_registerBuiltinAttribute(x_10, x_5); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +lean_dec(x_3); +x_8 = l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1(x_1, x_2, x_7, x_4, x_5, x_6); +lean_dec(x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_erase___at_Lean_mkLabelAttr___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Array_erase___at_Lean_mkLabelAttr___spec__2(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__1___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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_4); +lean_dec(x_4); +x_9 = l_Lean_mkLabelAttr___lambda__1(x_1, x_2, x_3, x_8, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_mkLabelAttr___lambda__2(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_mkLabelAttr___lambda__3___boxed(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; +x_6 = l_Lean_mkLabelAttr___lambda__3(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_6; +} +} +static lean_object* _init_l___auto____x40_Lean_LabelAttribute___hyg_220_() { +_start: +{ +lean_object* x_1; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29; +return x_1; +} +} +LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_name_eq(x_4, x_1); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_registerLabelAttr___spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_array_get_size(x_1); +x_7 = l_Lean_Name_hash___override(x_4); +x_8 = lean_hashmap_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_1, x_8); +lean_ctor_set(x_2, 2, x_9); +x_10 = lean_array_uset(x_1, x_8, x_2); +x_1 = x_10; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint64_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_2); +x_15 = lean_array_get_size(x_1); +x_16 = l_Lean_Name_hash___override(x_12); +x_17 = lean_hashmap_mk_idx(x_15, x_16); +x_18 = lean_array_uget(x_1, x_17); +x_19 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_18); +x_20 = lean_array_uset(x_1, x_17, x_19); +x_1 = x_20; +x_2 = x_14; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at_Lean_registerLabelAttr___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_Lean_AssocList_foldlM___at_Lean_registerLabelAttr___spec__5(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_registerLabelAttr___spec__3(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(2u); +x_5 = lean_nat_mul(x_3, x_4); +lean_dec(x_3); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_5, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_HashMapImp_moveEntries___at_Lean_registerLabelAttr___spec__4(x_8, x_2, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(0); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_3, 0); +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_3, 2); +x_9 = lean_name_eq(x_6, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(x_1, x_2, x_8); +lean_ctor_set(x_3, 2, x_10); +return x_3; +} +else +{ +lean_dec(x_7); +lean_dec(x_6); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_3, 1); +x_13 = lean_ctor_get(x_3, 2); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_3); +x_14 = lean_name_eq(x_11, x_1); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(x_1, x_2, x_13); +x_16 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_12); +lean_ctor_set(x_16, 2, x_15); +return x_16; +} +else +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_11); +x_17 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_2); +lean_ctor_set(x_17, 2, x_13); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at_Lean_registerLabelAttr___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; size_t x_9; lean_object* x_10; uint8_t x_11; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_6); +x_8 = l_Lean_Name_hash___override(x_2); +lean_inc(x_7); +x_9 = lean_hashmap_mk_idx(x_7, x_8); +x_10 = lean_array_uget(x_6, x_9); +x_11 = l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2(x_2, 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; uint8_t x_17; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_5, x_12); +lean_dec(x_5); +x_14 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_14, 0, x_2); +lean_ctor_set(x_14, 1, x_3); +lean_ctor_set(x_14, 2, x_10); +x_15 = lean_array_uset(x_6, x_9, x_14); +x_16 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_13); +x_17 = lean_nat_dec_le(x_16, x_7); +lean_dec(x_7); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +lean_free_object(x_1); +x_18 = l_Lean_HashMapImp_expand___at_Lean_registerLabelAttr___spec__3(x_13, x_15); +return x_18; +} +else +{ +lean_ctor_set(x_1, 1, x_15); +lean_ctor_set(x_1, 0, x_13); +return x_1; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_7); +x_19 = l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(x_2, x_3, x_10); +x_20 = lean_array_uset(x_6, x_9, x_19); +lean_ctor_set(x_1, 1, x_20); +return x_1; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint64_t x_24; size_t x_25; lean_object* x_26; uint8_t x_27; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +x_23 = lean_array_get_size(x_22); +x_24 = l_Lean_Name_hash___override(x_2); +lean_inc(x_23); +x_25 = lean_hashmap_mk_idx(x_23, x_24); +x_26 = lean_array_uget(x_22, x_25); +x_27 = l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2(x_2, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_unsigned_to_nat(1u); +x_29 = lean_nat_add(x_21, x_28); +lean_dec(x_21); +x_30 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_30, 0, x_2); +lean_ctor_set(x_30, 1, x_3); +lean_ctor_set(x_30, 2, x_26); +x_31 = lean_array_uset(x_22, x_25, x_30); +x_32 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_29); +x_33 = lean_nat_dec_le(x_32, x_23); +lean_dec(x_23); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; +x_34 = l_Lean_HashMapImp_expand___at_Lean_registerLabelAttr___spec__3(x_29, x_31); +return x_34; +} +else +{ +lean_object* x_35; +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_29); +lean_ctor_set(x_35, 1, x_31); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_23); +x_36 = l_Lean_AssocList_replace___at_Lean_registerLabelAttr___spec__6(x_2, x_3, x_26); +x_37 = lean_array_uset(x_22, x_25, x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_21); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +static lean_object* _init_l_Lean_registerLabelAttr___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_labelExtensionMapRef; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_registerLabelAttr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +lean_inc(x_3); +x_5 = l_Lean_mkLabelExt(x_3, x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +lean_inc(x_6); +lean_inc(x_1); +x_8 = l_Lean_mkLabelAttr(x_1, x_2, x_6, x_3, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; 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_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = l_Lean_registerLabelAttr___closed__1; +x_11 = lean_st_ref_take(x_10, x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +lean_inc(x_6); +x_14 = l_Lean_HashMap_insert___at_Lean_registerLabelAttr___spec__1(x_12, x_1, x_6); +x_15 = lean_st_ref_set(x_10, x_14, x_13); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +lean_ctor_set(x_15, 0, x_6); +return x_15; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_6); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +else +{ +uint8_t x_20; +lean_dec(x_6); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_8); +if (x_20 == 0) +{ +return x_8; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_8, 0); +x_22 = lean_ctor_get(x_8, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_8); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +uint8_t x_24; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_5); +if (x_24 == 0) +{ +return x_5; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_5, 0); +x_26 = lean_ctor_get(x_5, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_5); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_AssocList_contains___at_Lean_registerLabelAttr___spec__2(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_root_", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Command", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("registerLabelAttr", 17); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__4() { +_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___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__1; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_4 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_5 = l_Lean_Parser_Command_registerLabelAttr___closed__3; +x_6 = l_Lean_Name_mkStr6(x_1, x_2, x_1, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("andthen", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("optional", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___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_registerLabelAttr___closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("docComment", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_registerLabelAttr___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_registerLabelAttr___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__8; +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__11; +x_3 = lean_alloc_ctor(1, 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_registerLabelAttr___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("register_label_attr ", 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__13; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__6; +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__12; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__14; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Command_registerLabelAttr___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ident", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__16; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_registerLabelAttr___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__17; +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_registerLabelAttr___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__6; +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__15; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__18; +x_4 = lean_alloc_ctor(2, 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_Lean_Parser_Command_registerLabelAttr___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__4; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__19; +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_Lean_Parser_Command_registerLabelAttr() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__20; +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Attr", 4); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initialize", 10); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("declModifiers", 13); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initializeKeyword", 17); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("ext", 3); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("typeSpec", 8); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(":", 1); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.LabelExtension", 19); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("LabelExtension", 14); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18; +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_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19; +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_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("←", 3); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doSeqIndent", 11); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doSeqItem", 9); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("doExpr", 6); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("app", 3); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_registerLabelAttr___closed__3; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l_Lean_Parser_Command_registerLabelAttr___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32; +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_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32; +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___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34; +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_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33; +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35; +x_3 = lean_alloc_ctor(1, 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___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("syntax", 6); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attrKind", 8); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("namedName", 9); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean_Parser_Command_registerLabelAttr___closed__2; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("(", 1); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("name", 4); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(":=", 2); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(")", 1); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax", 6); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("atom", 4); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attr", 4); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(10u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("quotedName", 10); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1; +x_2 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2; +x_3 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15; +x_4 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(".", 1); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("`", 1); +return x_1; +} +} +static lean_object* _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58() { +_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_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("labelled declarations for ", 26); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__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_Lean_Parser_Command_registerLabelAttr___closed__4; +lean_inc(x_1); +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); +lean_dec(x_1); +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; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_Syntax_getArg(x_1, x_8); +x_10 = lean_unsigned_to_nat(2u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); +lean_dec(x_1); +x_12 = l_Lean_Syntax_getOptional_x3f(x_9); +lean_dec(x_9); +x_13 = l_Lean_Syntax_getId(x_11); +x_14 = 1; +lean_inc(x_13); +x_15 = l_Lean_Name_toString(x_13, x_14); +x_16 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2; +lean_inc(x_13); +x_17 = l_Lean_Name_append(x_16, x_13); +x_18 = 0; +x_19 = l_Lean_mkIdentFrom(x_11, x_17, x_18); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_148; +x_148 = lean_box(0); +x_20 = x_148; +goto block_147; +} +else +{ +uint8_t x_149; +x_149 = !lean_is_exclusive(x_12); +if (x_149 == 0) +{ +x_20 = x_12; +goto block_147; +} +else +{ +lean_object* x_150; lean_object* x_151; +x_150 = lean_ctor_get(x_12, 0); +lean_inc(x_150); +lean_dec(x_12); +x_151 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_151, 0, x_150); +x_20 = x_151; +goto block_147; +} +} +block_147: +{ +lean_object* x_21; +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_143; lean_object* x_144; +x_143 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59; +x_144 = lean_string_append(x_143, x_15); +x_21 = x_144; +goto block_142; +} +else +{ +lean_object* x_145; lean_object* x_146; +x_145 = lean_ctor_get(x_20, 0); +lean_inc(x_145); +x_146 = l_Lean_TSyntax_getDocString(x_145); +lean_dec(x_145); +x_21 = x_146; +goto block_142; +} +block_142: +{ +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; +x_22 = l_Lean_removeLeadingSpaces(x_21); +x_23 = lean_box(2); +x_24 = l_Lean_Syntax_mkStrLit(x_22, x_23); +lean_dec(x_22); +x_25 = lean_ctor_get(x_2, 5); +lean_inc(x_25); +x_26 = l_Lean_SourceInfo_fromRef(x_25, x_18); +x_27 = lean_ctor_get(x_2, 2); +lean_inc(x_27); +x_28 = lean_ctor_get(x_2, 1); +lean_inc(x_28); +lean_dec(x_2); +x_29 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10; +x_30 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +lean_inc(x_26); +x_31 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_31, 0, x_26); +lean_ctor_set(x_31, 1, x_29); +lean_ctor_set(x_31, 2, x_30); +x_32 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3; +lean_inc(x_26); +x_33 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_33, 0, x_26); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8; +lean_inc(x_26); +x_35 = l_Lean_Syntax_node1(x_26, x_34, x_33); +x_36 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11; +lean_inc(x_27); +lean_inc(x_28); +x_37 = l_Lean_addMacroScope(x_28, x_36, x_27); +x_38 = lean_box(0); +x_39 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10; +lean_inc(x_26); +x_40 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_40, 0, x_26); +lean_ctor_set(x_40, 1, x_39); +lean_ctor_set(x_40, 2, x_37); +lean_ctor_set(x_40, 3, x_38); +x_41 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14; +lean_inc(x_26); +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_26); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18; +lean_inc(x_27); +lean_inc(x_28); +x_44 = l_Lean_addMacroScope(x_28, x_43, x_27); +x_45 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16; +x_46 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20; +lean_inc(x_26); +x_47 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_47, 0, x_26); +lean_ctor_set(x_47, 1, x_45); +lean_ctor_set(x_47, 2, x_44); +lean_ctor_set(x_47, 3, x_46); +x_48 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13; +lean_inc(x_42); +lean_inc(x_26); +x_49 = l_Lean_Syntax_node2(x_26, x_48, x_42, x_47); +x_50 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21; +lean_inc(x_26); +x_51 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_51, 0, x_26); +lean_ctor_set(x_51, 1, x_50); +lean_inc(x_26); +x_52 = l_Lean_Syntax_node3(x_26, x_29, x_40, x_49, x_51); +x_53 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31; +lean_inc(x_27); +lean_inc(x_28); +x_54 = l_Lean_addMacroScope(x_28, x_53, x_27); +x_55 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30; +x_56 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36; +lean_inc(x_26); +x_57 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_57, 0, x_26); +lean_ctor_set(x_57, 1, x_55); +lean_ctor_set(x_57, 2, x_54); +lean_ctor_set(x_57, 3, x_56); +lean_inc(x_13); +x_58 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_38, x_13); +x_59 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40; +lean_inc(x_31); +lean_inc(x_26); +x_60 = l_Lean_Syntax_node1(x_26, x_59, x_31); +x_61 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37; +lean_inc(x_26); +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_26); +lean_ctor_set(x_62, 1, x_61); +x_63 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43; +lean_inc(x_26); +x_64 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_64, 0, x_26); +lean_ctor_set(x_64, 1, x_63); +x_65 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44; +lean_inc(x_26); +x_66 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_66, 0, x_26); +lean_ctor_set(x_66, 1, x_65); +x_67 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45; +lean_inc(x_26); +x_68 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_68, 0, x_26); +lean_ctor_set(x_68, 1, x_67); +x_69 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46; +lean_inc(x_26); +x_70 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_70, 0, x_26); +lean_ctor_set(x_70, 1, x_69); +x_71 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42; +lean_inc(x_26); +x_72 = l_Lean_Syntax_node5(x_26, x_71, x_64, x_66, x_68, x_19, x_70); +lean_inc(x_26); +x_73 = l_Lean_Syntax_node1(x_26, x_29, x_72); +x_74 = l_Lean_Syntax_mkStrLit(x_15, x_23); +lean_dec(x_15); +x_75 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49; +lean_inc(x_26); +x_76 = l_Lean_Syntax_node1(x_26, x_75, x_74); +lean_inc(x_26); +x_77 = l_Lean_Syntax_node1(x_26, x_29, x_76); +x_78 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52; +x_79 = l_Lean_addMacroScope(x_28, x_78, x_27); +x_80 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51; +lean_inc(x_26); +x_81 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_81, 0, x_26); +lean_ctor_set(x_81, 1, x_80); +lean_ctor_set(x_81, 2, x_79); +lean_ctor_set(x_81, 3, x_38); +if (lean_obj_tag(x_20) == 0) +{ +x_82 = x_30; +goto block_139; +} +else +{ +lean_object* x_140; lean_object* x_141; +x_140 = lean_ctor_get(x_20, 0); +lean_inc(x_140); +lean_dec(x_20); +x_141 = l_Array_mkArray1___rarg(x_140); +x_82 = x_141; +goto block_139; +} +block_139: +{ +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; +x_83 = l_Array_append___rarg(x_30, x_82); +lean_inc(x_26); +x_84 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_84, 0, x_26); +lean_ctor_set(x_84, 1, x_29); +lean_ctor_set(x_84, 2, x_83); +x_85 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6; +lean_inc_n(x_31, 5); +lean_inc(x_84); +lean_inc(x_26); +x_86 = l_Lean_Syntax_node6(x_26, x_85, x_84, x_31, x_31, x_31, x_31, x_31); +x_87 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53; +x_88 = lean_array_push(x_87, x_84); +lean_inc(x_31); +x_89 = lean_array_push(x_88, x_31); +x_90 = lean_array_push(x_89, x_60); +x_91 = lean_array_push(x_90, x_62); +lean_inc(x_31); +x_92 = lean_array_push(x_91, x_31); +x_93 = lean_array_push(x_92, x_73); +lean_inc(x_31); +x_94 = lean_array_push(x_93, x_31); +x_95 = lean_array_push(x_94, x_77); +x_96 = lean_array_push(x_95, x_42); +x_97 = lean_array_push(x_96, x_81); +x_98 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38; +lean_inc(x_26); +x_99 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_99, 0, x_26); +lean_ctor_set(x_99, 1, x_98); +lean_ctor_set(x_99, 2, x_97); +if (lean_obj_tag(x_58) == 0) +{ +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; +x_100 = l_Lean_quoteNameMk(x_13); +lean_inc(x_100); +lean_inc(x_26); +x_101 = l_Lean_Syntax_node3(x_26, x_29, x_100, x_24, x_100); +x_102 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29; +lean_inc(x_26); +x_103 = l_Lean_Syntax_node2(x_26, x_102, x_57, x_101); +x_104 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27; +lean_inc(x_26); +x_105 = l_Lean_Syntax_node1(x_26, x_104, x_103); +x_106 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25; +lean_inc(x_26); +x_107 = l_Lean_Syntax_node2(x_26, x_106, x_105, x_31); +lean_inc(x_26); +x_108 = l_Lean_Syntax_node1(x_26, x_29, x_107); +x_109 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23; +lean_inc(x_26); +x_110 = l_Lean_Syntax_node1(x_26, x_109, x_108); +x_111 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4; +lean_inc(x_26); +x_112 = l_Lean_Syntax_node4(x_26, x_111, x_86, x_35, x_52, x_110); +x_113 = l_Lean_Syntax_node2(x_26, x_29, x_112, x_99); +x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_114, 0, x_113); +lean_ctor_set(x_114, 1, x_3); +return x_114; +} +else +{ +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_dec(x_13); +x_115 = lean_ctor_get(x_58, 0); +lean_inc(x_115); +lean_dec(x_58); +x_116 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56; +x_117 = l_String_intercalate(x_116, x_115); +x_118 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57; +x_119 = lean_string_append(x_118, x_117); +lean_dec(x_117); +x_120 = l_Lean_Syntax_mkNameLit(x_119, x_23); +x_121 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58; +x_122 = lean_array_push(x_121, x_120); +x_123 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55; +x_124 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_124, 0, x_23); +lean_ctor_set(x_124, 1, x_123); +lean_ctor_set(x_124, 2, x_122); +lean_inc(x_124); +lean_inc(x_26); +x_125 = l_Lean_Syntax_node3(x_26, x_29, x_124, x_24, x_124); +x_126 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29; +lean_inc(x_26); +x_127 = l_Lean_Syntax_node2(x_26, x_126, x_57, x_125); +x_128 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27; +lean_inc(x_26); +x_129 = l_Lean_Syntax_node1(x_26, x_128, x_127); +x_130 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25; +lean_inc(x_26); +x_131 = l_Lean_Syntax_node2(x_26, x_130, x_129, x_31); +lean_inc(x_26); +x_132 = l_Lean_Syntax_node1(x_26, x_29, x_131); +x_133 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23; +lean_inc(x_26); +x_134 = l_Lean_Syntax_node1(x_26, x_133, x_132); +x_135 = l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4; +lean_inc(x_26); +x_136 = l_Lean_Syntax_node4(x_26, x_135, x_86, x_35, x_52, x_134); +x_137 = l_Lean_Syntax_node2(x_26, x_29, x_136, x_99); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_3); +return x_138; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_2, 2); +x_7 = lean_name_eq(x_4, x_1); +if (x_7 == 0) +{ +x_2 = x_6; +goto _start; +} +else +{ +lean_object* x_9; +lean_inc(x_5); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_5); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_labelled___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_array_get_size(x_3); +x_5 = l_Lean_Name_hash___override(x_2); +x_6 = lean_hashmap_mk_idx(x_4, x_5); +x_7 = lean_array_uget(x_3, x_6); +lean_dec(x_3); +x_8 = l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2(x_2, x_7); +lean_dec(x_7); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_labelled___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_ctor_get(x_2, 5); +x_6 = l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(x_1, x_2, x_3, x_4); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_5); +lean_ctor_set(x_9, 1, x_8); +lean_ctor_set_tag(x_6, 1); +lean_ctor_set(x_6, 0, x_9); +return x_6; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_6, 0); +x_11 = lean_ctor_get(x_6, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_6); +lean_inc(x_5); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 1, x_10); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +} +} +static lean_object* _init_l_Lean_labelled___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("No extension named ", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_labelled___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_labelled___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_labelled___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_labelled___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_labelled___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_labelled(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = l_Lean_registerLabelAttr___closed__1; +x_6 = lean_st_ref_get(x_5, x_4); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +lean_inc(x_1); +x_9 = l_Lean_HashMapImp_find_x3f___at_Lean_labelled___spec__1(x_7, x_1); +if (lean_obj_tag(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; +x_10 = l_Lean_MessageData_ofName(x_1); +x_11 = l_Lean_labelled___closed__2; +x_12 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +x_13 = l_Lean_labelled___closed__4; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Lean_throwError___at_Lean_labelled___spec__3(x_14, x_2, x_3, x_8); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +lean_dec(x_1); +x_16 = lean_ctor_get(x_9, 0); +lean_inc(x_16); +lean_dec(x_9); +x_17 = lean_st_ref_get(x_3, x_8); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec(x_19); +x_21 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_22 = l_Lean_ScopedEnvExtension_getState___rarg(x_21, x_16, x_20); +lean_dec(x_20); +lean_dec(x_16); +lean_ctor_set(x_17, 0, x_22); +return x_17; +} +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; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_17); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +lean_dec(x_23); +x_26 = l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6; +x_27 = l_Lean_ScopedEnvExtension_getState___rarg(x_26, x_16, x_25); +lean_dec(x_25); +lean_dec(x_16); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_24); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_AssocList_find_x3f___at_Lean_labelled___spec__2(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_labelled___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_throwError___at_Lean_labelled___spec__3(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_labelled___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_labelled(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +lean_object* initialize_Lean_ScopedEnvExtension(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_DocString(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_LabelAttribute(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_ScopedEnvExtension(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_DocString(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +if (builtin) {res = l_Lean_initFn____x40_Lean_LabelAttribute___hyg_18_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_labelExtensionMapRef = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_labelExtensionMapRef); +lean_dec_ref(res); +}l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__1); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__2); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__3); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__4); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__5 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__5(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__5); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__6); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__7 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__7(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__7); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__8 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__8(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__8); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__9); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__10); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__11); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__12 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__12(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__12); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__13); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__14 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__14(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__14); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__15); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__16); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__17 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__17(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__17); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__18); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__19); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__20 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__20(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__20); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__21); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__22 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__22(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__22); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__23 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__23(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__23); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__24 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__24(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__24); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__25); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__26 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__26(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__26); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__27); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__28 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__28(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__28); +l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29 = _init_l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52____closed__29); +l___auto____x40_Lean_LabelAttribute___hyg_52_ = _init_l___auto____x40_Lean_LabelAttribute___hyg_52_(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_52_); +l_Lean_mkLabelExt___closed__1 = _init_l_Lean_mkLabelExt___closed__1(); +lean_mark_persistent(l_Lean_mkLabelExt___closed__1); +l_Lean_mkLabelExt___closed__2 = _init_l_Lean_mkLabelExt___closed__2(); +lean_mark_persistent(l_Lean_mkLabelExt___closed__2); +l___auto____x40_Lean_LabelAttribute___hyg_118_ = _init_l___auto____x40_Lean_LabelAttribute___hyg_118_(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_118_); +l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__1); +l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__2); +l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__3); +l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_mkLabelAttr___spec__1___closed__4); +l___auto____x40_Lean_LabelAttribute___hyg_220_ = _init_l___auto____x40_Lean_LabelAttribute___hyg_220_(); +lean_mark_persistent(l___auto____x40_Lean_LabelAttribute___hyg_220_); +l_Lean_registerLabelAttr___closed__1 = _init_l_Lean_registerLabelAttr___closed__1(); +lean_mark_persistent(l_Lean_registerLabelAttr___closed__1); +l_Lean_Parser_Command_registerLabelAttr___closed__1 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__1); +l_Lean_Parser_Command_registerLabelAttr___closed__2 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__2); +l_Lean_Parser_Command_registerLabelAttr___closed__3 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__3); +l_Lean_Parser_Command_registerLabelAttr___closed__4 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__4); +l_Lean_Parser_Command_registerLabelAttr___closed__5 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__5); +l_Lean_Parser_Command_registerLabelAttr___closed__6 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__6); +l_Lean_Parser_Command_registerLabelAttr___closed__7 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__7); +l_Lean_Parser_Command_registerLabelAttr___closed__8 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__8); +l_Lean_Parser_Command_registerLabelAttr___closed__9 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__9); +l_Lean_Parser_Command_registerLabelAttr___closed__10 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__10); +l_Lean_Parser_Command_registerLabelAttr___closed__11 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__11); +l_Lean_Parser_Command_registerLabelAttr___closed__12 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__12); +l_Lean_Parser_Command_registerLabelAttr___closed__13 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__13); +l_Lean_Parser_Command_registerLabelAttr___closed__14 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__14); +l_Lean_Parser_Command_registerLabelAttr___closed__15 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__15); +l_Lean_Parser_Command_registerLabelAttr___closed__16 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__16); +l_Lean_Parser_Command_registerLabelAttr___closed__17 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__17); +l_Lean_Parser_Command_registerLabelAttr___closed__18 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__18); +l_Lean_Parser_Command_registerLabelAttr___closed__19 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__19); +l_Lean_Parser_Command_registerLabelAttr___closed__20 = _init_l_Lean_Parser_Command_registerLabelAttr___closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr___closed__20); +l_Lean_Parser_Command_registerLabelAttr = _init_l_Lean_Parser_Command_registerLabelAttr(); +lean_mark_persistent(l_Lean_Parser_Command_registerLabelAttr); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__1); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__2); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__3); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__4); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__5); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__6); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__7); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__8); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__9); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__10); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__11); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__12); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__13); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__14); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__15); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__16); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__17); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__18); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__19); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__20); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__21); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__22); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__23); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__24); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__25); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__26); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__27); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__28); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__29); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__30); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__31); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__32); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__33); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__34); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__35); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__36); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__37); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__38); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__39); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__40); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__41); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__42); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__43); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__44); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__45); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__46); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__47); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__48); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__49); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__50); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__51); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__52); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__53); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__54); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__55); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__56); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__57); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__58); +l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59 = _init_l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59(); +lean_mark_persistent(l_Lean___aux__Lean__LabelAttribute______macroRules__Lean____root____Lean__Parser__Command__registerLabelAttr__1___closed__59); +l_Lean_labelled___closed__1 = _init_l_Lean_labelled___closed__1(); +lean_mark_persistent(l_Lean_labelled___closed__1); +l_Lean_labelled___closed__2 = _init_l_Lean_labelled___closed__2(); +lean_mark_persistent(l_Lean_labelled___closed__2); +l_Lean_labelled___closed__3 = _init_l_Lean_labelled___closed__3(); +lean_mark_persistent(l_Lean_labelled___closed__3); +l_Lean_labelled___closed__4 = _init_l_Lean_labelled___closed__4(); +lean_mark_persistent(l_Lean_labelled___closed__4); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta.c b/stage0/stdlib/Lean/Meta.c index 539d065908..47f987c1ba 100644 --- a/stage0/stdlib/Lean/Meta.c +++ b/stage0/stdlib/Lean/Meta.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta -// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.ExprDefEq Lean.Meta.DecLevel Lean.Meta.DiscrTree Lean.Meta.Reduce Lean.Meta.Instances Lean.Meta.AbstractMVars Lean.Meta.SynthInstance Lean.Meta.AppBuilder Lean.Meta.Tactic Lean.Meta.KAbstract Lean.Meta.RecursorInfo Lean.Meta.GeneralizeTelescope Lean.Meta.Match Lean.Meta.ReduceEval Lean.Meta.Closure Lean.Meta.AbstractNestedProofs Lean.Meta.ForEachExpr Lean.Meta.Transform Lean.Meta.PPGoal Lean.Meta.UnificationHint Lean.Meta.Inductive Lean.Meta.SizeOf Lean.Meta.IndPredBelow Lean.Meta.Coe Lean.Meta.CollectFVars Lean.Meta.GeneralizeVars Lean.Meta.Injective Lean.Meta.Structure Lean.Meta.Constructions Lean.Meta.CongrTheorems Lean.Meta.Eqns Lean.Meta.ExprLens Lean.Meta.ExprTraverse Lean.Meta.Eval Lean.Meta.CoeAttr +// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.ExprDefEq Lean.Meta.DecLevel Lean.Meta.DiscrTree Lean.Meta.Reduce Lean.Meta.Instances Lean.Meta.AbstractMVars Lean.Meta.SynthInstance Lean.Meta.AppBuilder Lean.Meta.Tactic Lean.Meta.KAbstract Lean.Meta.RecursorInfo Lean.Meta.GeneralizeTelescope Lean.Meta.Match Lean.Meta.ReduceEval Lean.Meta.Closure Lean.Meta.AbstractNestedProofs Lean.Meta.ForEachExpr Lean.Meta.Transform Lean.Meta.PPGoal Lean.Meta.UnificationHint Lean.Meta.Inductive Lean.Meta.SizeOf Lean.Meta.IndPredBelow Lean.Meta.Coe Lean.Meta.CollectFVars Lean.Meta.GeneralizeVars Lean.Meta.Injective Lean.Meta.Structure Lean.Meta.Constructions Lean.Meta.CongrTheorems Lean.Meta.Eqns Lean.Meta.ExprLens Lean.Meta.ExprTraverse Lean.Meta.Eval Lean.Meta.CoeAttr Lean.Meta.Iterator #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -53,6 +53,7 @@ lean_object* initialize_Lean_Meta_ExprLens(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_ExprTraverse(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Eval(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_CoeAttr(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Iterator(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta(uint8_t builtin, lean_object* w) { lean_object * res; @@ -178,6 +179,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_CoeAttr(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Iterator(builtin, 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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/CollectMVars.c b/stage0/stdlib/Lean/Meta/CollectMVars.c index ab08273113..e4b720a5d7 100644 --- a/stage0/stdlib/Lean/Meta/CollectMVars.c +++ b/stage0/stdlib/Lean/Meta/CollectMVars.c @@ -13,57 +13,119 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5___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_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at_Lean_MVarId_getMVarDependencies_addMVars___spec__2(lean_object*, lean_object*); +extern lean_object* l_Lean_maxRecDepthErrorMessage; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_hashset_mk_idx(lean_object*, uint64_t); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4(uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_array(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_getMVars___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_getMVarsAtDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___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_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_collectMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvar___override(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_MVarId_getMVarDependencies_addMVars___spec__1(lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); uint8_t l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isDelayedAssigned___spec__1(lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_Meta_collectMVars___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___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_st_ref_take(lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at_Lean_MVarId_getMVarDependencies_addMVars___spec__4(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_getMVars___closed__2; +LEAN_EXPORT lean_object* l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Declaration_foldExprM___at_Lean_Meta_collectMVarsAtDecl___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Meta_collectMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Declaration_foldExprM___at_Lean_Meta_collectMVarsAtDecl___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10___boxed(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_MVarId_getMVarDependencies_go___spec__4___closed__1; +uint8_t l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isAssigned___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Meta_collectMVars___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_getMVarsNoDelayed___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_addMVars(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMVarsAtDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_CollectMVars_visit(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_Meta_collectMVars___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_getMVarsNoDelayed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashSetImp_moveEntries___at_Lean_MVarId_getMVarDependencies_addMVars___spec__5(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5(uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_addMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Meta_collectMVars___spec__3___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_LocalDecl_type(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_getMVarsNoDelayed___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Meta_collectMVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Meta_collectMVarsAtDecl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_getDelayedMVarAssignment_x3f___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9___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* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_MVarId_getMVarDependencies_addMVars___spec__1___boxed(lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at_Lean_MVarId_getMVarDependencies_addMVars___spec__6(lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_collectMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1; uint8_t lean_usize_dec_lt(size_t, size_t); +LEAN_EXPORT lean_object* l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7___boxed(lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_collectMVarsAtDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3___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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_getMVarsNoDelayed___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_Lean_Meta_getMVars___closed__1; +LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Meta_collectMVars___spec__1(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) { _start: { @@ -1056,6 +1118,2780 @@ lean_dec(x_2); return x_7; } } +LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_MVarId_getMVarDependencies_addMVars___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashSetImp___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT uint8_t l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_name_eq(x_1, x_4); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at_Lean_MVarId_getMVarDependencies_addMVars___spec__6(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_array_get_size(x_1); +x_7 = l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(x_4); +x_8 = lean_hashset_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_1, x_8); +lean_ctor_set(x_2, 1, x_9); +x_10 = lean_array_uset(x_1, x_8, x_2); +x_1 = x_10; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint64_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_2); +x_14 = lean_array_get_size(x_1); +x_15 = l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(x_12); +x_16 = lean_hashset_mk_idx(x_14, x_15); +x_17 = lean_array_uget(x_1, x_16); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_12); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_array_uset(x_1, x_16, x_18); +x_1 = x_19; +x_2 = x_13; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashSetImp_moveEntries___at_Lean_MVarId_getMVarDependencies_addMVars___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_List_foldl___at_Lean_MVarId_getMVarDependencies_addMVars___spec__6(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at_Lean_MVarId_getMVarDependencies_addMVars___spec__4(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_3 = lean_array_get_size(x_2); +x_4 = lean_unsigned_to_nat(2u); +x_5 = lean_nat_mul(x_3, x_4); +lean_dec(x_3); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_5, x_6); +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_HashSetImp_moveEntries___at_Lean_MVarId_getMVarDependencies_addMVars___spec__5(x_8, x_2, x_7); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; +lean_dec(x_3); +x_4 = lean_box(0); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_name_eq(x_6, x_2); +if (x_8 == 0) +{ +lean_object* x_9; +x_9 = l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(x_7, x_2, x_3); +lean_ctor_set(x_1, 1, x_9); +return x_1; +} +else +{ +lean_dec(x_6); +lean_ctor_set(x_1, 0, x_3); +return x_1; +} +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_1); +x_12 = lean_name_eq(x_10, x_2); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(x_11, x_2, x_3); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +else +{ +lean_object* x_15; +lean_dec(x_10); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_3); +lean_ctor_set(x_15, 1, x_11); +return x_15; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at_Lean_MVarId_getMVarDependencies_addMVars___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_array_get_size(x_5); +x_7 = l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(x_2); +lean_inc(x_6); +x_8 = lean_hashset_mk_idx(x_6, x_7); +x_9 = lean_array_uget(x_5, x_8); +x_10 = l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(x_2, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_2); +lean_ctor_set(x_13, 1, x_9); +x_14 = lean_array_uset(x_5, x_8, x_13); +x_15 = lean_nat_dec_le(x_12, x_6); +lean_dec(x_6); +if (x_15 == 0) +{ +lean_object* x_16; +lean_free_object(x_1); +x_16 = l_Lean_HashSetImp_expand___at_Lean_MVarId_getMVarDependencies_addMVars___spec__4(x_12, x_14); +return x_16; +} +else +{ +lean_ctor_set(x_1, 1, x_14); +lean_ctor_set(x_1, 0, x_12); +return x_1; +} +} +else +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_6); +lean_inc(x_2); +x_17 = l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(x_9, x_2, x_2); +lean_dec(x_2); +x_18 = lean_array_uset(x_5, x_8, x_17); +lean_ctor_set(x_1, 1, x_18); +return x_1; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint64_t x_22; size_t x_23; lean_object* x_24; uint8_t x_25; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_1); +x_21 = lean_array_get_size(x_20); +x_22 = l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(x_2); +lean_inc(x_21); +x_23 = lean_hashset_mk_idx(x_21, x_22); +x_24 = lean_array_uget(x_20, x_23); +x_25 = l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(x_2, x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_unsigned_to_nat(1u); +x_27 = lean_nat_add(x_19, x_26); +lean_dec(x_19); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_2); +lean_ctor_set(x_28, 1, x_24); +x_29 = lean_array_uset(x_20, x_23, x_28); +x_30 = lean_nat_dec_le(x_27, x_21); +lean_dec(x_21); +if (x_30 == 0) +{ +lean_object* x_31; +x_31 = l_Lean_HashSetImp_expand___at_Lean_MVarId_getMVarDependencies_addMVars___spec__4(x_27, x_29); +return x_31; +} +else +{ +lean_object* x_32; +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_29); +return x_32; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_21); +lean_inc(x_2); +x_33 = l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(x_24, x_2, x_2); +lean_dec(x_2); +x_34 = lean_array_uset(x_20, x_23, x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_19); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_st_ref_get(x_4, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_ctor_get(x_11, 8); +lean_inc(x_12); +lean_dec(x_11); +x_13 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isDelayedAssigned___spec__1(x_12, x_1); +x_14 = lean_box(x_13); +lean_ctor_set(x_8, 0, x_14); +return x_8; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_15 = lean_ctor_get(x_8, 0); +x_16 = lean_ctor_get(x_8, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_8); +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_ctor_get(x_17, 8); +lean_inc(x_18); +lean_dec(x_17); +x_19 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isDelayedAssigned___spec__1(x_18, x_1); +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_16); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9(uint8_t x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_4, x_3); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_5); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_array_uget(x_2, x_4); +if (x_1 == 0) +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_inc(x_14); +x_25 = l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8(x_14, x_6, x_7, x_8, x_9, x_10, x_11); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_unbox(x_26); +lean_dec(x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +x_28 = lean_ctor_get(x_25, 1); +lean_inc(x_28); +lean_dec(x_25); +x_29 = 1; +x_15 = x_29; +x_16 = x_28; +goto block_24; +} +else +{ +lean_object* x_30; uint8_t x_31; +x_30 = lean_ctor_get(x_25, 1); +lean_inc(x_30); +lean_dec(x_25); +x_31 = 0; +x_15 = x_31; +x_16 = x_30; +goto block_24; +} +} +else +{ +x_15 = x_1; +x_16 = x_11; +goto block_24; +} +block_24: +{ +if (x_15 == 0) +{ +size_t x_17; size_t x_18; +lean_dec(x_14); +x_17 = 1; +x_18 = lean_usize_add(x_4, x_17); +x_4 = x_18; +x_11 = x_16; +goto _start; +} +else +{ +lean_object* x_20; size_t x_21; size_t x_22; +x_20 = l_Lean_HashSetImp_insert___at_Lean_MVarId_getMVarDependencies_addMVars___spec__2(x_5, x_14); +x_21 = 1; +x_22 = lean_usize_add(x_4, x_21); +x_4 = x_22; +x_5 = x_20; +x_11 = x_16; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10(uint8_t x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_eq(x_3, x_4); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_5); +x_13 = lean_array_uget(x_2, x_3); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_14 = l_Lean_MVarId_getMVarDependencies_go(x_1, x_13, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +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 = 1; +x_18 = lean_usize_add(x_3, x_17); +x_3 = x_18; +x_5 = x_15; +x_11 = x_16; +goto _start; +} +else +{ +uint8_t x_20; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_14); +if (x_20 == 0) +{ +return x_14; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +lean_object* x_24; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_5); +lean_ctor_set(x_24, 1, x_11); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_addMVars(uint8_t 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) { +_start: +{ +lean_object* x_9; 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; size_t x_20; size_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_9 = l_Lean_Meta_getMVars(x_2, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_st_ref_get(x_3, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_unsigned_to_nat(8u); +x_16 = l_Lean_mkHashSetImp___rarg(x_15); +x_17 = lean_st_ref_set(x_3, x_16, x_14); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +lean_dec(x_17); +x_19 = lean_array_get_size(x_10); +x_20 = lean_usize_of_nat(x_19); +x_21 = 0; +x_22 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9(x_1, x_10, x_20, x_21, x_13, x_3, x_4, x_5, x_6, x_7, x_18); +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_set(x_3, x_23, 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; uint8_t x_30; +x_27 = lean_ctor_get(x_25, 1); +x_28 = lean_ctor_get(x_25, 0); +lean_dec(x_28); +x_29 = lean_unsigned_to_nat(0u); +x_30 = lean_nat_dec_lt(x_29, x_19); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_31 = lean_box(0); +lean_ctor_set(x_25, 0, x_31); +return x_25; +} +else +{ +uint8_t x_32; +x_32 = lean_nat_dec_le(x_19, x_19); +lean_dec(x_19); +if (x_32 == 0) +{ +lean_object* x_33; +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_33 = lean_box(0); +lean_ctor_set(x_25, 0, x_33); +return x_25; +} +else +{ +lean_object* x_34; lean_object* x_35; +lean_free_object(x_25); +x_34 = lean_box(0); +x_35 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10(x_1, x_10, x_21, x_20, x_34, x_3, x_4, x_5, x_6, x_7, x_27); +lean_dec(x_10); +return x_35; +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_25, 1); +lean_inc(x_36); +lean_dec(x_25); +x_37 = lean_unsigned_to_nat(0u); +x_38 = lean_nat_dec_lt(x_37, x_19); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_39 = lean_box(0); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_36); +return x_40; +} +else +{ +uint8_t x_41; +x_41 = lean_nat_dec_le(x_19, x_19); +lean_dec(x_19); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_42 = lean_box(0); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_36); +return x_43; +} +else +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_box(0); +x_45 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10(x_1, x_10, x_21, x_20, x_44, x_3, x_4, x_5, x_6, x_7, x_36); +lean_dec(x_10); +return x_45; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_6, x_5); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_uget(x_4, x_6); +x_17 = !lean_is_exclusive(x_7); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_7, 1); +x_19 = lean_ctor_get(x_7, 0); +lean_dec(x_19); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_18); +lean_inc(x_2); +x_20 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(x_1, x_2, x_16, x_18, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 0); +lean_dec(x_23); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_7, 0, x_24); +lean_ctor_set(x_20, 0, x_7); +return x_20; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_20, 1); +lean_inc(x_25); +lean_dec(x_20); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_7, 0, x_26); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_7); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; +lean_dec(x_18); +x_28 = lean_ctor_get(x_20, 1); +lean_inc(x_28); +lean_dec(x_20); +x_29 = lean_ctor_get(x_21, 0); +lean_inc(x_29); +lean_dec(x_21); +lean_inc(x_3); +lean_ctor_set(x_7, 1, x_29); +lean_ctor_set(x_7, 0, x_3); +x_30 = 1; +x_31 = lean_usize_add(x_6, x_30); +x_6 = x_31; +x_13 = x_28; +goto _start; +} +} +else +{ +uint8_t x_33; +lean_free_object(x_7); +lean_dec(x_18); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +x_33 = !lean_is_exclusive(x_20); +if (x_33 == 0) +{ +return x_20; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_20, 0); +x_35 = lean_ctor_get(x_20, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_20); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_7, 1); +lean_inc(x_37); +lean_dec(x_7); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_37); +lean_inc(x_2); +x_38 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(x_1, x_2, x_16, x_37, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_41 = x_38; +} else { + lean_dec_ref(x_38); + x_41 = lean_box(0); +} +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_37); +if (lean_is_scalar(x_41)) { + x_44 = lean_alloc_ctor(0, 2, 0); +} else { + x_44 = x_41; +} +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_40); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; size_t x_48; size_t x_49; +lean_dec(x_37); +x_45 = lean_ctor_get(x_38, 1); +lean_inc(x_45); +lean_dec(x_38); +x_46 = lean_ctor_get(x_39, 0); +lean_inc(x_46); +lean_dec(x_39); +lean_inc(x_3); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_3); +lean_ctor_set(x_47, 1, x_46); +x_48 = 1; +x_49 = lean_usize_add(x_6, x_48); +x_6 = x_49; +x_7 = x_47; +x_13 = x_45; +goto _start; +} +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_37); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +x_51 = lean_ctor_get(x_38, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_38, 1); +lean_inc(x_52); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_53 = x_38; +} else { + lean_dec_ref(x_38); + x_53 = lean_box(0); +} +if (lean_is_scalar(x_53)) { + x_54 = lean_alloc_ctor(1, 2, 0); +} else { + x_54 = x_53; +} +lean_ctor_set(x_54, 0, x_51); +lean_ctor_set(x_54, 1, x_52); +return x_54; +} +} +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4(uint8_t x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_5, x_4); +if (x_13 == 0) +{ +lean_object* x_14; +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_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_array_uget(x_3, x_5); +x_16 = lean_ctor_get(x_6, 1); +lean_inc(x_16); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + x_17 = x_6; +} else { + lean_dec_ref(x_6); + x_17 = lean_box(0); +} +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_26; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_16); +x_18 = x_26; +x_19 = x_12; +goto block_25; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +lean_dec(x_16); +x_27 = lean_ctor_get(x_15, 0); +lean_inc(x_27); +lean_dec(x_15); +x_28 = l_Lean_LocalDecl_type(x_27); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_29 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_28, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = l_Lean_LocalDecl_value_x3f(x_27); +lean_dec(x_27); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; +x_32 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1; +x_18 = x_32; +x_19 = x_30; +goto block_25; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_31, 0); +lean_inc(x_33); +lean_dec(x_31); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_34 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_33, x_7, x_8, x_9, x_10, x_11, x_30); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +lean_dec(x_34); +x_36 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1; +x_18 = x_36; +x_19 = x_35; +goto block_25; +} +else +{ +uint8_t x_37; +lean_dec(x_17); +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_37 = !lean_is_exclusive(x_34); +if (x_37 == 0) +{ +return x_34; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 0); +x_39 = lean_ctor_get(x_34, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_34); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +else +{ +uint8_t x_41; +lean_dec(x_27); +lean_dec(x_17); +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_41 = !lean_is_exclusive(x_29); +if (x_41 == 0) +{ +return x_29; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_29, 0); +x_43 = lean_ctor_get(x_29, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_29); +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; +} +} +} +block_25: +{ +lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_2); +if (lean_is_scalar(x_17)) { + x_21 = lean_alloc_ctor(0, 2, 0); +} else { + x_21 = x_17; +} +lean_ctor_set(x_21, 0, x_2); +lean_ctor_set(x_21, 1, x_20); +x_22 = 1; +x_23 = lean_usize_add(x_5, x_22); +x_5 = x_23; +x_6 = x_21; +x_12 = x_19; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_1); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(uint8_t 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: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_11 = lean_ctor_get(x_3, 0); +lean_inc(x_11); +lean_dec(x_3); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_4); +x_14 = lean_array_get_size(x_11); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_17 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3(x_1, x_2, x_12, x_11, x_15, x_16, x_13, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); +x_22 = lean_box(0); +x_23 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1(x_21, x_22, 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_23; +} +else +{ +uint8_t x_24; +lean_dec(x_18); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_24 = !lean_is_exclusive(x_17); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_17, 0); +lean_dec(x_25); +x_26 = lean_ctor_get(x_19, 0); +lean_inc(x_26); +lean_dec(x_19); +lean_ctor_set(x_17, 0, x_26); +return x_17; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 1); +lean_inc(x_27); +lean_dec(x_17); +x_28 = lean_ctor_get(x_19, 0); +lean_inc(x_28); +lean_dec(x_19); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_30 = !lean_is_exclusive(x_17); +if (x_30 == 0) +{ +return x_17; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_17, 0); +x_32 = lean_ctor_get(x_17, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_17); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; lean_object* x_40; +lean_dec(x_2); +x_34 = lean_ctor_get(x_3, 0); +lean_inc(x_34); +lean_dec(x_3); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_4); +x_37 = lean_array_get_size(x_34); +x_38 = lean_usize_of_nat(x_37); +lean_dec(x_37); +x_39 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_40 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4(x_1, x_35, x_34, x_38, x_39, x_36, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_34); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_dec(x_41); +x_45 = lean_box(0); +x_46 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1(x_44, x_45, x_5, x_6, x_7, x_8, x_9, x_43); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_46; +} +else +{ +uint8_t x_47; +lean_dec(x_41); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_47 = !lean_is_exclusive(x_40); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_40, 0); +lean_dec(x_48); +x_49 = lean_ctor_get(x_42, 0); +lean_inc(x_49); +lean_dec(x_42); +lean_ctor_set(x_40, 0, x_49); +return x_40; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_40, 1); +lean_inc(x_50); +lean_dec(x_40); +x_51 = lean_ctor_get(x_42, 0); +lean_inc(x_51); +lean_dec(x_42); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +return x_52; +} +} +} +else +{ +uint8_t x_53; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_53 = !lean_is_exclusive(x_40); +if (x_53 == 0) +{ +return x_40; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_40, 0); +x_55 = lean_ctor_get(x_40, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_40); +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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5(uint8_t x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_5, x_4); +if (x_13 == 0) +{ +lean_object* x_14; +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_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_6); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_array_uget(x_3, x_5); +x_16 = lean_ctor_get(x_6, 1); +lean_inc(x_16); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + x_17 = x_6; +} else { + lean_dec_ref(x_6); + x_17 = lean_box(0); +} +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_26; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_16); +x_18 = x_26; +x_19 = x_12; +goto block_25; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +lean_dec(x_16); +x_27 = lean_ctor_get(x_15, 0); +lean_inc(x_27); +lean_dec(x_15); +x_28 = l_Lean_LocalDecl_type(x_27); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_29 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_28, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = l_Lean_LocalDecl_value_x3f(x_27); +lean_dec(x_27); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; +x_32 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1; +x_18 = x_32; +x_19 = x_30; +goto block_25; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_31, 0); +lean_inc(x_33); +lean_dec(x_31); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_34 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_33, x_7, x_8, x_9, x_10, x_11, x_30); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +lean_dec(x_34); +x_36 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1; +x_18 = x_36; +x_19 = x_35; +goto block_25; +} +else +{ +uint8_t x_37; +lean_dec(x_17); +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_37 = !lean_is_exclusive(x_34); +if (x_37 == 0) +{ +return x_34; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 0); +x_39 = lean_ctor_get(x_34, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_34); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +else +{ +uint8_t x_41; +lean_dec(x_27); +lean_dec(x_17); +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_41 = !lean_is_exclusive(x_29); +if (x_41 == 0) +{ +return x_29; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_29, 0); +x_43 = lean_ctor_get(x_29, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_29); +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; +} +} +} +block_25: +{ +lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +lean_inc(x_2); +if (lean_is_scalar(x_17)) { + x_21 = lean_alloc_ctor(0, 2, 0); +} else { + x_21 = x_17; +} +lean_ctor_set(x_21, 0, x_2); +lean_ctor_set(x_21, 1, x_20); +x_22 = 1; +x_23 = lean_usize_add(x_5, x_22); +x_5 = x_23; +x_6 = x_21; +x_12 = x_19; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___lambda__1(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) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1(uint8_t 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; lean_object* x_11; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +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_11 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(x_1, x_3, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_12, 0); +lean_inc(x_15); +lean_dec(x_12); +lean_ctor_set(x_11, 0, x_15); +return x_11; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; +x_19 = lean_ctor_get(x_11, 1); +lean_inc(x_19); +lean_dec(x_11); +x_20 = lean_ctor_get(x_12, 0); +lean_inc(x_20); +lean_dec(x_12); +x_21 = lean_ctor_get(x_2, 1); +lean_inc(x_21); +lean_dec(x_2); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_20); +x_24 = lean_array_get_size(x_21); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = 0; +x_27 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5(x_1, x_22, x_21, x_25, x_26, x_23, x_4, x_5, x_6, x_7, x_8, x_19); +lean_dec(x_21); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_27); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_27, 0); +lean_dec(x_31); +x_32 = lean_ctor_get(x_28, 1); +lean_inc(x_32); +lean_dec(x_28); +lean_ctor_set(x_27, 0, x_32); +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_27, 1); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_ctor_get(x_28, 1); +lean_inc(x_34); +lean_dec(x_28); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +else +{ +uint8_t x_36; +lean_dec(x_28); +x_36 = !lean_is_exclusive(x_27); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_27, 0); +lean_dec(x_37); +x_38 = lean_ctor_get(x_29, 0); +lean_inc(x_38); +lean_dec(x_29); +lean_ctor_set(x_27, 0, x_38); +return x_27; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_27, 1); +lean_inc(x_39); +lean_dec(x_27); +x_40 = lean_ctor_get(x_29, 0); +lean_inc(x_40); +lean_dec(x_29); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +return x_41; +} +} +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_27); +if (x_42 == 0) +{ +return x_27; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_27, 0); +x_44 = lean_ctor_get(x_27, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_27); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +} +else +{ +uint8_t x_46; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_46 = !lean_is_exclusive(x_11); +if (x_46 == 0) +{ +return x_11; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_11, 0); +x_48 = lean_ctor_get(x_11, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_11); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_st_ref_get(x_4, x_7); +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; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_ctor_get(x_11, 8); +lean_inc(x_12); +lean_dec(x_11); +x_13 = l_Lean_PersistentHashMap_find_x3f___at_Lean_getDelayedMVarAssignment_x3f___spec__1(x_12, x_1); +lean_ctor_set(x_8, 0, x_13); +return x_8; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_14 = lean_ctor_get(x_8, 0); +x_15 = lean_ctor_get(x_8, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_8); +x_16 = lean_ctor_get(x_14, 0); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_ctor_get(x_16, 8); +lean_inc(x_17); +lean_dec(x_16); +x_18 = l_Lean_PersistentHashMap_find_x3f___at_Lean_getDelayedMVarAssignment_x3f___spec__1(x_17, x_1); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_15); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_st_ref_get(x_4, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_ctor_get(x_11, 7); +lean_inc(x_12); +lean_inc(x_1); +x_13 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isAssigned___spec__1(x_12, x_1); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_11, 8); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isDelayedAssigned___spec__1(x_14, x_1); +x_16 = lean_box(x_15); +lean_ctor_set(x_8, 0, x_16); +return x_8; +} +else +{ +uint8_t x_17; lean_object* x_18; +lean_dec(x_11); +lean_dec(x_1); +x_17 = 1; +x_18 = lean_box(x_17); +lean_ctor_set(x_8, 0, x_18); +return x_8; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_8, 0); +x_20 = lean_ctor_get(x_8, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_8); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +lean_dec(x_19); +x_22 = lean_ctor_get(x_21, 7); +lean_inc(x_22); +lean_inc(x_1); +x_23 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isAssigned___spec__1(x_22, x_1); +if (x_23 == 0) +{ +lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; +x_24 = lean_ctor_get(x_21, 8); +lean_inc(x_24); +lean_dec(x_21); +x_25 = l_Lean_PersistentHashMap_contains___at_Lean_MVarId_isDelayedAssigned___spec__1(x_24, x_1); +x_26 = lean_box(x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_20); +return x_27; +} +else +{ +uint8_t x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_21); +lean_dec(x_1); +x_28 = 1; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_20); +return x_30; +} +} +} +} +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_maxRecDepthErrorMessage; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___lambda__1(uint8_t 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; +lean_dec(x_3); +x_10 = l_Lean_MVarId_getMVarDependencies_go(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go(uint8_t 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) { +_start: +{ +lean_object* x_9; 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; uint8_t x_20; uint8_t x_21; +x_9 = lean_ctor_get(x_6, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_6, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_6, 2); +lean_inc(x_11); +x_12 = lean_ctor_get(x_6, 3); +lean_inc(x_12); +x_13 = lean_ctor_get(x_6, 4); +lean_inc(x_13); +x_14 = lean_ctor_get(x_6, 5); +lean_inc(x_14); +x_15 = lean_ctor_get(x_6, 6); +lean_inc(x_15); +x_16 = lean_ctor_get(x_6, 7); +lean_inc(x_16); +x_17 = lean_ctor_get(x_6, 8); +lean_inc(x_17); +x_18 = lean_ctor_get(x_6, 9); +lean_inc(x_18); +x_19 = lean_ctor_get(x_6, 10); +lean_inc(x_19); +x_20 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +x_21 = lean_nat_dec_eq(x_12, x_13); +if (x_21 == 0) +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_6); +if (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_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_23 = lean_ctor_get(x_6, 10); +lean_dec(x_23); +x_24 = lean_ctor_get(x_6, 9); +lean_dec(x_24); +x_25 = lean_ctor_get(x_6, 8); +lean_dec(x_25); +x_26 = lean_ctor_get(x_6, 7); +lean_dec(x_26); +x_27 = lean_ctor_get(x_6, 6); +lean_dec(x_27); +x_28 = lean_ctor_get(x_6, 5); +lean_dec(x_28); +x_29 = lean_ctor_get(x_6, 4); +lean_dec(x_29); +x_30 = lean_ctor_get(x_6, 3); +lean_dec(x_30); +x_31 = lean_ctor_get(x_6, 2); +lean_dec(x_31); +x_32 = lean_ctor_get(x_6, 1); +lean_dec(x_32); +x_33 = lean_ctor_get(x_6, 0); +lean_dec(x_33); +x_34 = lean_unsigned_to_nat(1u); +x_35 = lean_nat_add(x_12, x_34); +lean_dec(x_12); +lean_ctor_set(x_6, 3, x_35); +lean_inc(x_2); +x_36 = l_Lean_MVarId_getDecl(x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +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); +x_39 = lean_ctor_get(x_37, 2); +lean_inc(x_39); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_40 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_39, x_3, x_4, x_5, x_6, x_7, x_38); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = lean_ctor_get(x_37, 1); +lean_inc(x_42); +lean_dec(x_37); +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +lean_dec(x_42); +x_44 = lean_box(0); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_45 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1(x_1, x_43, x_44, x_3, x_4, x_5, x_6, x_7, x_41); +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, 1); +lean_inc(x_46); +lean_dec(x_45); +x_47 = l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6(x_2, x_3, x_4, x_5, x_6, x_7, x_46); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +if (lean_obj_tag(x_48) == 0) +{ +uint8_t x_49; +lean_dec(x_6); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_49 = !lean_is_exclusive(x_47); +if (x_49 == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_47, 0); +lean_dec(x_50); +lean_ctor_set(x_47, 0, x_44); +return x_47; +} +else +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_47, 1); +lean_inc(x_51); +lean_dec(x_47); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_44); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_53 = lean_ctor_get(x_47, 1); +lean_inc(x_53); +lean_dec(x_47); +x_54 = lean_ctor_get(x_48, 0); +lean_inc(x_54); +lean_dec(x_48); +x_55 = lean_ctor_get(x_54, 1); +lean_inc(x_55); +lean_dec(x_54); +lean_inc(x_55); +x_67 = l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7(x_55, x_3, x_4, x_5, x_6, x_7, x_53); +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_unbox(x_68); +lean_dec(x_68); +if (x_69 == 0) +{ +lean_object* x_70; uint8_t x_71; +x_70 = lean_ctor_get(x_67, 1); +lean_inc(x_70); +lean_dec(x_67); +x_71 = 1; +x_56 = x_71; +x_57 = x_70; +goto block_66; +} +else +{ +lean_object* x_72; uint8_t x_73; +x_72 = lean_ctor_get(x_67, 1); +lean_inc(x_72); +lean_dec(x_67); +x_73 = 0; +x_56 = x_73; +x_57 = x_72; +goto block_66; +} +block_66: +{ +if (x_56 == 0) +{ +x_2 = x_55; +x_8 = x_57; +goto _start; +} +else +{ +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_59 = lean_st_ref_take(x_3, x_57); +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +lean_dec(x_59); +lean_inc(x_55); +x_62 = l_Lean_HashSetImp_insert___at_Lean_MVarId_getMVarDependencies_addMVars___spec__2(x_60, x_55); +x_63 = lean_st_ref_set(x_3, x_62, x_61); +x_64 = lean_ctor_get(x_63, 1); +lean_inc(x_64); +lean_dec(x_63); +x_2 = x_55; +x_8 = x_64; +goto _start; +} +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_6); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_45); +if (x_74 == 0) +{ +return x_45; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_45, 0); +x_76 = lean_ctor_get(x_45, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_45); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +else +{ +uint8_t x_78; +lean_dec(x_37); +lean_dec(x_6); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_78 = !lean_is_exclusive(x_40); +if (x_78 == 0) +{ +return x_40; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_40, 0); +x_80 = lean_ctor_get(x_40, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_40); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; +} +} +} +else +{ +uint8_t x_82; +lean_dec(x_6); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_82 = !lean_is_exclusive(x_36); +if (x_82 == 0) +{ +return x_36; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_36, 0); +x_84 = lean_ctor_get(x_36, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_36); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_6); +x_86 = lean_unsigned_to_nat(1u); +x_87 = lean_nat_add(x_12, x_86); +lean_dec(x_12); +x_88 = lean_alloc_ctor(0, 11, 1); +lean_ctor_set(x_88, 0, x_9); +lean_ctor_set(x_88, 1, x_10); +lean_ctor_set(x_88, 2, x_11); +lean_ctor_set(x_88, 3, x_87); +lean_ctor_set(x_88, 4, x_13); +lean_ctor_set(x_88, 5, x_14); +lean_ctor_set(x_88, 6, x_15); +lean_ctor_set(x_88, 7, x_16); +lean_ctor_set(x_88, 8, x_17); +lean_ctor_set(x_88, 9, x_18); +lean_ctor_set(x_88, 10, x_19); +lean_ctor_set_uint8(x_88, sizeof(void*)*11, x_20); +lean_inc(x_2); +x_89 = l_Lean_MVarId_getDecl(x_2, x_4, x_5, x_88, x_7, x_8); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +x_92 = lean_ctor_get(x_90, 2); +lean_inc(x_92); +lean_inc(x_7); +lean_inc(x_88); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_93 = l_Lean_MVarId_getMVarDependencies_addMVars(x_1, x_92, x_3, x_4, x_5, x_88, x_7, x_91); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_94 = lean_ctor_get(x_93, 1); +lean_inc(x_94); +lean_dec(x_93); +x_95 = lean_ctor_get(x_90, 1); +lean_inc(x_95); +lean_dec(x_90); +x_96 = lean_ctor_get(x_95, 1); +lean_inc(x_96); +lean_dec(x_95); +x_97 = lean_box(0); +lean_inc(x_7); +lean_inc(x_88); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_98 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1(x_1, x_96, x_97, x_3, x_4, x_5, x_88, x_7, x_94); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_98, 1); +lean_inc(x_99); +lean_dec(x_98); +x_100 = l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6(x_2, x_3, x_4, x_5, x_88, x_7, x_99); +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec(x_88); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + lean_ctor_release(x_100, 1); + x_103 = x_100; +} else { + lean_dec_ref(x_100); + x_103 = lean_box(0); +} +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(0, 2, 0); +} else { + x_104 = x_103; +} +lean_ctor_set(x_104, 0, x_97); +lean_ctor_set(x_104, 1, x_102); +return x_104; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; lean_object* x_109; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_105 = lean_ctor_get(x_100, 1); +lean_inc(x_105); +lean_dec(x_100); +x_106 = lean_ctor_get(x_101, 0); +lean_inc(x_106); +lean_dec(x_101); +x_107 = lean_ctor_get(x_106, 1); +lean_inc(x_107); +lean_dec(x_106); +lean_inc(x_107); +x_119 = l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7(x_107, x_3, x_4, x_5, x_88, x_7, x_105); +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +x_121 = lean_unbox(x_120); +lean_dec(x_120); +if (x_121 == 0) +{ +lean_object* x_122; uint8_t x_123; +x_122 = lean_ctor_get(x_119, 1); +lean_inc(x_122); +lean_dec(x_119); +x_123 = 1; +x_108 = x_123; +x_109 = x_122; +goto block_118; +} +else +{ +lean_object* x_124; uint8_t x_125; +x_124 = lean_ctor_get(x_119, 1); +lean_inc(x_124); +lean_dec(x_119); +x_125 = 0; +x_108 = x_125; +x_109 = x_124; +goto block_118; +} +block_118: +{ +if (x_108 == 0) +{ +x_2 = x_107; +x_6 = x_88; +x_8 = x_109; +goto _start; +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_111 = lean_st_ref_take(x_3, x_109); +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); +lean_inc(x_107); +x_114 = l_Lean_HashSetImp_insert___at_Lean_MVarId_getMVarDependencies_addMVars___spec__2(x_112, x_107); +x_115 = lean_st_ref_set(x_3, x_114, x_113); +x_116 = lean_ctor_get(x_115, 1); +lean_inc(x_116); +lean_dec(x_115); +x_2 = x_107; +x_6 = x_88; +x_8 = x_116; +goto _start; +} +} +} +} +else +{ +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec(x_88); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_126 = lean_ctor_get(x_98, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_98, 1); +lean_inc(x_127); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_128 = x_98; +} else { + lean_dec_ref(x_98); + x_128 = lean_box(0); +} +if (lean_is_scalar(x_128)) { + x_129 = lean_alloc_ctor(1, 2, 0); +} else { + x_129 = x_128; +} +lean_ctor_set(x_129, 0, x_126); +lean_ctor_set(x_129, 1, x_127); +return x_129; +} +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec(x_90); +lean_dec(x_88); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_130 = lean_ctor_get(x_93, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_93, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + lean_ctor_release(x_93, 1); + x_132 = x_93; +} else { + lean_dec_ref(x_93); + x_132 = lean_box(0); +} +if (lean_is_scalar(x_132)) { + x_133 = lean_alloc_ctor(1, 2, 0); +} else { + x_133 = x_132; +} +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_131); +return x_133; +} +} +else +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +lean_dec(x_88); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_134 = lean_ctor_get(x_89, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_89, 1); +lean_inc(x_135); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_136 = x_89; +} else { + lean_dec_ref(x_89); + x_136 = lean_box(0); +} +if (lean_is_scalar(x_136)) { + x_137 = lean_alloc_ctor(1, 2, 0); +} else { + x_137 = x_136; +} +lean_ctor_set(x_137, 0, x_134); +lean_ctor_set(x_137, 1, x_135); +return x_137; +} +} +} +else +{ +lean_object* x_138; +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_2); +x_138 = l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8(x_14, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_138; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_MVarId_getMVarDependencies_addMVars___spec__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_mkHashSet___at_Lean_MVarId_getMVarDependencies_addMVars___spec__1(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_replace___at_Lean_MVarId_getMVarDependencies_addMVars___spec__7(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_MVarId_isDelayedAssigned___at_Lean_MVarId_getMVarDependencies_addMVars___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; size_t x_13; size_t x_14; lean_object* x_15; +x_12 = lean_unbox(x_1); +lean_dec(x_1); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_addMVars___spec__9(x_12, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; size_t x_13; size_t x_14; lean_object* x_15; +x_12 = lean_unbox(x_1); +lean_dec(x_1); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_getMVarDependencies_addMVars___spec__10(x_12, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_addMVars___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +lean_dec(x_1); +x_10 = l_Lean_MVarId_getMVarDependencies_addMVars(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_1); +lean_dec(x_1); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_17 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__3(x_14, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_4); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_1); +lean_dec(x_1); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4(x_13, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_3); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__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, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +lean_dec(x_1); +x_12 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getMVarDependencies_go___spec__2(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_1); +lean_dec(x_1); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__5(x_13, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_3); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___lambda__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, 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); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_getMVarDependencies_go___spec__1(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_getDelayedMVarAssignment_x3f___at_Lean_MVarId_getMVarDependencies_go___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_MVarId_isAssignedOrDelayedAssigned___at_Lean_MVarId_getMVarDependencies_go___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___lambda__1___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l_Lean_MVarId_getMVarDependencies_go___lambda__1(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies_go___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +lean_dec(x_1); +x_10 = l_Lean_MVarId_getMVarDependencies_go(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = l_Lean_Meta_getMVars___closed__1; +x_9 = lean_st_mk_ref(x_8, x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +lean_inc(x_10); +x_12 = l_Lean_MVarId_getMVarDependencies_go(x_2, x_1, x_10, x_3, x_4, x_5, x_6, x_11); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_st_ref_get(x_10, x_13); +lean_dec(x_10); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_dec(x_10); +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +return x_12; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_12, 0); +x_21 = lean_ctor_get(x_12, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_12); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_getMVarDependencies___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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_2); +lean_dec(x_2); +x_9 = l_Lean_MVarId_getMVarDependencies(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} lean_object* initialize_Lean_Util_CollectMVars(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -1075,6 +3911,12 @@ l_Lean_Meta_getMVars___closed__2 = _init_l_Lean_Meta_getMVars___closed__2(); lean_mark_persistent(l_Lean_Meta_getMVars___closed__2); l_Lean_Meta_getMVars___closed__3 = _init_l_Lean_Meta_getMVars___closed__3(); lean_mark_persistent(l_Lean_Meta_getMVars___closed__3); +l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_MVarId_getMVarDependencies_go___spec__4___closed__1); +l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__1); +l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at_Lean_MVarId_getMVarDependencies_go___spec__8___closed__2); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Iterator.c b/stage0/stdlib/Lean/Meta/Iterator.c new file mode 100644 index 0000000000..d5b41a4796 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Iterator.c @@ -0,0 +1,813 @@ +// Lean compiler output +// Module: Lean.Meta.Iterator +// Imports: Lean.Meta.Basic +#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 +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_head(lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___next(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___elambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM(lean_object*, lean_object*); +lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Iterator_head___rarg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___next___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList(lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1(lean_object*); +lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_firstM(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_head___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Iterator_head___rarg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_firstM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___lambda__1(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = l_Lean_Meta_SavedState_restore(x_1, x_3, x_4, x_5, x_6, x_7); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_st_ref_get(x_2, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_dec(x_13); +x_14 = lean_box(0); +lean_ctor_set(x_10, 0, x_14); +return x_10; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_box(0); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +lean_dec(x_10); +x_19 = lean_ctor_get(x_11, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_11, 1); +lean_inc(x_20); +lean_dec(x_11); +x_21 = lean_st_ref_set(x_2, x_20, x_18); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +x_23 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_22); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_19); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_23, 0, x_27); +return x_23; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_23, 0); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_23); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_19); +lean_ctor_set(x_30, 1, x_28); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_29); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_7 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_st_mk_ref(x_1, x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_ofList___rarg___lambda__1___boxed), 7, 2); +lean_closure_set(x_13, 0, x_8); +lean_closure_set(x_13, 1, x_12); +lean_ctor_set(x_10, 0, x_13); +return x_10; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_10); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_ofList___rarg___lambda__1___boxed), 7, 2); +lean_closure_set(x_16, 0, x_8); +lean_closure_set(x_16, 1, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_ofList___rarg___boxed), 6, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_Iterator_ofList___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_ofList___rarg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_Iterator_ofList___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___next___rarg(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) { +_start: +{ +lean_object* x_8; +lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = lean_apply_5(x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +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_10 = !lean_is_exclusive(x_8); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_8, 0); +lean_dec(x_11); +x_12 = lean_box(0); +lean_ctor_set(x_8, 0, x_12); +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_dec(x_8); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +else +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_9, 0); +lean_inc(x_16); +lean_dec(x_9); +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec(x_8); +x_18 = !lean_is_exclusive(x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_ctor_get(x_16, 0); +x_20 = lean_ctor_get(x_16, 1); +x_21 = l_Lean_Meta_SavedState_restore(x_20, x_3, x_4, x_5, x_6, x_17); +lean_dec(x_20); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +lean_inc(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_23 = lean_apply_6(x_1, x_19, x_3, x_4, x_5, x_6, x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +lean_free_object(x_16); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_7 = x_25; +goto _start; +} +else +{ +lean_object* x_27; uint8_t x_28; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = !lean_is_exclusive(x_24); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_24, 0); +x_30 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_27); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = lean_ctor_get(x_30, 0); +lean_ctor_set(x_16, 1, x_32); +lean_ctor_set(x_16, 0, x_29); +lean_ctor_set(x_24, 0, x_16); +lean_ctor_set(x_30, 0, x_24); +return x_30; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_30, 0); +x_34 = lean_ctor_get(x_30, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_30); +lean_ctor_set(x_16, 1, x_33); +lean_ctor_set(x_16, 0, x_29); +lean_ctor_set(x_24, 0, x_16); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_24); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +else +{ +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; +x_36 = lean_ctor_get(x_24, 0); +lean_inc(x_36); +lean_dec(x_24); +x_37 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_27); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_40 = x_37; +} else { + lean_dec_ref(x_37); + x_40 = lean_box(0); +} +lean_ctor_set(x_16, 1, x_38); +lean_ctor_set(x_16, 0, x_36); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_16); +if (lean_is_scalar(x_40)) { + x_42 = lean_alloc_ctor(0, 2, 0); +} else { + x_42 = x_40; +} +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_39); +return x_42; +} +} +} +else +{ +uint8_t x_43; +lean_free_object(x_16); +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_43 = !lean_is_exclusive(x_23); +if (x_43 == 0) +{ +return x_23; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_23, 0); +x_45 = lean_ctor_get(x_23, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_23); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_47 = lean_ctor_get(x_16, 0); +x_48 = lean_ctor_get(x_16, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_16); +x_49 = l_Lean_Meta_SavedState_restore(x_48, x_3, x_4, x_5, x_6, x_17); +lean_dec(x_48); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +lean_dec(x_49); +lean_inc(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_51 = lean_apply_6(x_1, x_47, x_3, x_4, x_5, x_6, x_50); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_7 = x_53; +goto _start; +} +else +{ +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_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_55 = lean_ctor_get(x_51, 1); +lean_inc(x_55); +lean_dec(x_51); +x_56 = lean_ctor_get(x_52, 0); +lean_inc(x_56); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + x_57 = x_52; +} else { + lean_dec_ref(x_52); + x_57 = lean_box(0); +} +x_58 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_55); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_61 = x_58; +} else { + lean_dec_ref(x_58); + x_61 = lean_box(0); +} +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_56); +lean_ctor_set(x_62, 1, x_59); +if (lean_is_scalar(x_57)) { + x_63 = lean_alloc_ctor(1, 1, 0); +} else { + x_63 = x_57; +} +lean_ctor_set(x_63, 0, x_62); +if (lean_is_scalar(x_61)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_61; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_60); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +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_65 = lean_ctor_get(x_51, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_51, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + x_67 = x_51; +} else { + lean_dec_ref(x_51); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +} +} +else +{ +uint8_t x_69; +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_69 = !lean_is_exclusive(x_8); +if (x_69 == 0) +{ +return x_8; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_8, 0); +x_71 = lean_ctor_get(x_8, 1); +lean_inc(x_71); +lean_inc(x_70); +lean_dec(x_8); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +return x_72; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___next(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___next___rarg), 7, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg(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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_Iterator_filterMapM___next___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___elambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg), 7, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_filterMapM(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___rarg), 2, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg___boxed), 6, 0); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Iterator_head___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Iterator_head___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Iterator_head___rarg___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_head___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_Meta_Iterator_head___rarg___closed__2; +x_11 = l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg(x_10, x_2, x_3, x_4, x_5, x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); +lean_dec(x_8); +x_13 = lean_ctor_get(x_7, 1); +lean_inc(x_13); +lean_dec(x_7); +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec(x_12); +x_16 = l_Lean_Meta_SavedState_restore(x_15, x_2, x_3, x_4, x_5, x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_15); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_14); +return x_16; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_21 = !lean_is_exclusive(x_7); +if (x_21 == 0) +{ +return x_7; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_7, 0); +x_23 = lean_ctor_get(x_7, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_7); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_head(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_head___rarg), 6, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at_Lean_Meta_Iterator_head___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_firstM___rarg(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg), 7, 2); +lean_closure_set(x_8, 0, x_2); +lean_closure_set(x_8, 1, x_1); +x_9 = l_Lean_Meta_Iterator_head___rarg(x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Iterator_firstM(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_firstM___rarg), 7, 0); +return x_3; +} +} +lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Iterator(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_Iterator_head___rarg___closed__1 = _init_l_Lean_Meta_Iterator_head___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Iterator_head___rarg___closed__1); +l_Lean_Meta_Iterator_head___rarg___closed__2 = _init_l_Lean_Meta_Iterator_head___rarg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Iterator_head___rarg___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic.c b/stage0/stdlib/Lean/Meta/Tactic.c index e547f90f24..0acd73e965 100644 --- a/stage0/stdlib/Lean/Meta/Tactic.c +++ b/stage0/stdlib/Lean/Meta/Tactic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic -// Imports: Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.Contradiction Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Clear Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Rewrite Lean.Meta.Tactic.Generalize Lean.Meta.Tactic.Replace Lean.Meta.Tactic.Induction Lean.Meta.Tactic.Cases Lean.Meta.Tactic.ElimInfo Lean.Meta.Tactic.Delta Lean.Meta.Tactic.Constructor Lean.Meta.Tactic.Simp Lean.Meta.Tactic.AuxLemma Lean.Meta.Tactic.SplitIf Lean.Meta.Tactic.Split Lean.Meta.Tactic.TryThis Lean.Meta.Tactic.Cleanup Lean.Meta.Tactic.Unfold Lean.Meta.Tactic.Rename Lean.Meta.Tactic.LinearArith Lean.Meta.Tactic.AC Lean.Meta.Tactic.Refl Lean.Meta.Tactic.Congr Lean.Meta.Tactic.Repeat Lean.Meta.Tactic.NormCast +// Imports: Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.Contradiction Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Clear Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Rewrite Lean.Meta.Tactic.Generalize Lean.Meta.Tactic.Replace Lean.Meta.Tactic.Induction Lean.Meta.Tactic.Cases Lean.Meta.Tactic.ElimInfo Lean.Meta.Tactic.Delta Lean.Meta.Tactic.Constructor Lean.Meta.Tactic.Simp Lean.Meta.Tactic.AuxLemma Lean.Meta.Tactic.SplitIf Lean.Meta.Tactic.Split Lean.Meta.Tactic.TryThis Lean.Meta.Tactic.Cleanup Lean.Meta.Tactic.Unfold Lean.Meta.Tactic.Rename Lean.Meta.Tactic.LinearArith Lean.Meta.Tactic.AC Lean.Meta.Tactic.Refl Lean.Meta.Tactic.Congr Lean.Meta.Tactic.Repeat Lean.Meta.Tactic.NormCast Lean.Meta.Tactic.IndependentOf Lean.Meta.Tactic.Symm Lean.Meta.Tactic.Backtrack Lean.Meta.Tactic.SolveByElim #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -42,6 +42,10 @@ lean_object* initialize_Lean_Meta_Tactic_Refl(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Congr(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Repeat(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_NormCast(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_IndependentOf(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Symm(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Backtrack(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_SolveByElim(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic(uint8_t builtin, lean_object* w) { lean_object * res; @@ -134,6 +138,18 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_NormCast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_IndependentOf(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Symm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Backtrack(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_SolveByElim(builtin, 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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Tactic/Apply.c b/stage0/stdlib/Lean/Meta/Tactic/Apply.c index 1371e52178..8d8cfdabfc 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Apply.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Apply.c @@ -22,20 +22,18 @@ LEAN_EXPORT lean_object* l_Lean_Meta_ApplyNewGoals_noConfusion___rarg___boxed(le lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_exfalso___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_ApplyNewGoals_toCtorIdx___boxed(lean_object*); static lean_object* l_Lean_MVarId_exfalso___lambda__1___closed__2; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(lean_object*, lean_object*); static lean_object* l_Lean_MVarId_nthConstructor___lambda__2___closed__1; static lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_partitionDependentMVars___closed__2; static lean_object* l_Lean_MVarId_nthConstructor___lambda__2___closed__4; static lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_throwApplyError___rarg___closed__5; lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_splitAndCore_go___closed__5; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_checkNotAssigned(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_apply_go(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_Meta_Tactic_Apply_0__Lean_Meta_dependsOnOthers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -57,7 +55,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Tact lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_Meta_splitAndCore_go___closed__7; lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_elem___at_Lean_MVarId_apply___spec__1___boxed(lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getExpectedNumArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -71,7 +68,6 @@ lean_object* l_Lean_Meta_appendTag(lean_object*, lean_object*); static lean_object* l_Lean_Meta_splitAndCore_go___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_postprocessAppMVars(lean_object*, lean_object*, 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_Meta_Tactic_Apply_0__Lean_Meta_reorderGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_List_elem___at_Lean_MVarId_apply___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_nthConstructor___lambda__1(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_MVarId_exfalso___closed__2; @@ -132,10 +128,12 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_nthConstructor(lean_object*, lean_object* lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_apply___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_Lean_MVarId_nthConstructor___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_nthConstructor___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_isDefEqApply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_nthConstructor___lambda__1___closed__3; lean_object* lean_name_append_index_after(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_exfalso___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_partitionDependentMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_apply___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -156,7 +154,8 @@ lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Meta_isExprDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_postprocessAppMVars___boxed(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_Meta_getExpectedNumArgsAux___closed__1; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_splitAndCore_go___closed__2; static lean_object* l_Lean_Meta_splitAndCore_go___closed__3; static lean_object* l_Lean_MVarId_exfalso___lambda__1___closed__5; @@ -165,8 +164,8 @@ static lean_object* l_Lean_MVarId_nthConstructor___lambda__2___closed__3; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_nthConstructor___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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getExpectedNumArgsAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_forM_loop___at_Lean_Meta_appendParentTag___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*); @@ -3077,36 +3076,7 @@ lean_dec(x_2); return x_12; } } -LEAN_EXPORT uint8_t l_List_elem___at_Lean_MVarId_apply___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = 0; -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 1); -x_6 = lean_name_eq(x_1, x_4); -if (x_6 == 0) -{ -x_2 = x_5; -goto _start; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__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_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3163,7 +3133,7 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -3172,7 +3142,7 @@ if (x_6 == 0) { lean_object* x_7; uint8_t x_8; size_t x_9; size_t x_10; x_7 = lean_array_uget(x_2, x_3); -x_8 = l_List_elem___at_Lean_MVarId_apply___spec__1(x_7, x_1); +x_8 = l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(x_7, x_1); x_9 = 1; x_10 = lean_usize_add(x_3, x_9); if (x_8 == 0) @@ -3196,7 +3166,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4(lean_object* x_1, size_t x_2, size_t 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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(lean_object* x_1, size_t x_2, size_t 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: { uint8_t x_10; @@ -3347,7 +3317,7 @@ x_89 = 0; x_90 = lean_usize_of_nat(x_29); lean_dec(x_29); x_91 = l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_partitionDependentMVars___closed__1; -x_92 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4(x_17, x_89, x_90, x_91, x_8, x_9, x_10, x_11, x_28); +x_92 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(x_17, x_89, x_90, x_91, x_8, x_9, x_10, x_11, x_28); lean_dec(x_17); x_93 = lean_ctor_get(x_92, 0); lean_inc(x_93); @@ -3396,7 +3366,7 @@ lean_dec(x_35); x_43 = l_Lean_MVarId_apply___lambda__1___closed__1; x_44 = l_List_appendTR___rarg(x_39, x_43); lean_inc(x_44); -x_45 = l_List_forM___at_Lean_MVarId_apply___spec__2(x_44, x_8, x_9, x_10, x_11, x_40); +x_45 = l_List_forM___at_Lean_MVarId_apply___spec__1(x_44, x_8, x_9, x_10, x_11, x_40); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -3461,7 +3431,7 @@ lean_dec(x_35); x_55 = l_Lean_MVarId_apply___lambda__1___closed__1; x_56 = l_List_appendTR___rarg(x_39, x_55); lean_inc(x_56); -x_57 = l_List_forM___at_Lean_MVarId_apply___spec__2(x_56, x_8, x_9, x_10, x_11, x_40); +x_57 = l_List_forM___at_Lean_MVarId_apply___spec__1(x_56, x_8, x_9, x_10, x_11, x_40); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -3521,12 +3491,12 @@ x_66 = 0; x_67 = lean_usize_of_nat(x_41); lean_dec(x_41); x_68 = l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_partitionDependentMVars___closed__1; -x_69 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(x_39, x_35, x_66, x_67, x_68); +x_69 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2(x_39, x_35, x_66, x_67, x_68); lean_dec(x_35); x_70 = lean_array_to_list(lean_box(0), x_69); x_71 = l_List_appendTR___rarg(x_39, x_70); lean_inc(x_71); -x_72 = l_List_forM___at_Lean_MVarId_apply___spec__2(x_71, x_8, x_9, x_10, x_11, x_40); +x_72 = l_List_forM___at_Lean_MVarId_apply___spec__1(x_71, x_8, x_9, x_10, x_11, x_40); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -3958,22 +3928,11 @@ x_11 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_ return x_11; } } -LEAN_EXPORT lean_object* l_List_elem___at_Lean_MVarId_apply___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_List_elem___at_Lean_MVarId_apply___spec__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__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_EXPORT lean_object* l_List_forM___at_Lean_MVarId_apply___spec__1___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) { _start: { lean_object* x_7; -x_7 = l_List_forM___at_Lean_MVarId_apply___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_List_forM___at_Lean_MVarId_apply___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -3981,7 +3940,7 @@ lean_dec(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -3989,13 +3948,13 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__2(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); lean_dec(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4___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) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3___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: { size_t x_10; size_t x_11; lean_object* x_12; @@ -4003,7 +3962,7 @@ x_10 = lean_unbox_usize(x_2); lean_dec(x_2); x_11 = lean_unbox_usize(x_3); lean_dec(x_3); -x_12 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__4(x_1, x_10, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Array_foldlMUnsafe_fold___at_Lean_MVarId_apply___spec__3(x_1, x_10, x_11, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Assert.c b/stage0/stdlib/Lean/Meta/Tactic/Assert.c index 21241f77a2..776cc45c8b 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Assert.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Assert.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Assert -// Imports: Init.Data.List.BasicAux Lean.Meta.Tactic.FVarSubst Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Revert +// Imports: Lean.Meta.Tactic.FVarSubst Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Revert Lean.Util.ForEachExpr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -25,36 +25,56 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_assert___lambda__1___boxed(lean_object*, lean_object* l_Lean_Meta_FVarSubst_insert(lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assertHypotheses___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_assertHypotheses(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MVarId_assertExt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bvar___override(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_fvarId_x21(lean_object*); +static lean_object* l_Lean_MVarId_replace_findMaxFVar___closed__1; +LEAN_EXPORT lean_object* l_Lean_MVarId_replace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_define___lambda__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_Lean_MVarId_define___closed__2; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_MVarId_assertHypotheses___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assert___closed__1; +static lean_object* l_Lean_MVarId_replace_findMaxFVar___closed__2; LEAN_EXPORT lean_object* l_Lean_MVarId_define___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_index(lean_object*); +lean_object* l_Lean_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assertExt___lambda__1___closed__2; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_assertHypotheses___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assertExt___lambda__1___closed__1; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_replace___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assertHypotheses___closed__3; +lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_FVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_assertExt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_note(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assertAfter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Expr_letE___override(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_clear(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assertHypotheses___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_MVarId_assertHypotheses___spec__2(lean_object*, size_t, size_t, lean_object*); +lean_object* l_Lean_LocalDecl_fvarId(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assert(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_Lean_MVarId_assertAfter___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_define(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_userName(lean_object*); lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_assertAfter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -62,26 +82,36 @@ lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_assertAfter___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assertAfter___closed__2; +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_assertHypotheses___spec__1(lean_object*, size_t, size_t, lean_object*); size_t lean_usize_sub(size_t, size_t); +lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); size_t lean_usize_add(size_t, size_t); +uint8_t l_Lean_Expr_hasFVar(lean_object*); static lean_object* l_Lean_MVarId_assertAfter___closed__1; lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Expr_fvar___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_define(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_MVarId_assert___closed__2; +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +uint8_t l_Lean_Exception_isRuntime(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assertHypotheses(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isFVar(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); static lean_object* l_Lean_MVarId_assertHypotheses___closed__1; +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_assertExt___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_MVarId_assertExt___lambda__1(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_MVarId_replace___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_define___closed__1; uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assert___lambda__1(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) { @@ -296,6 +326,152 @@ x_10 = l_Lean_MVarId_assert(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_MVarId_note(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: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_10; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_3); +x_10 = lean_infer_type(x_3, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_13 = l_Lean_MVarId_assert(x_1, x_2, x_11, x_3, x_5, x_6, x_7, x_8, x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +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_16 = 1; +x_17 = l_Lean_Meta_intro1Core(x_14, x_16, x_5, x_6, x_7, x_8, x_15); +return x_17; +} +else +{ +uint8_t x_18; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) +{ +return x_13; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_13, 0); +x_20 = lean_ctor_get(x_13, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_13); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_10); +if (x_22 == 0) +{ +return x_10; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_10, 0); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_10); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_4, 0); +lean_inc(x_26); +lean_dec(x_4); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_27 = l_Lean_MVarId_assert(x_1, x_2, x_26, x_3, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; +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 = 1; +x_31 = l_Lean_Meta_intro1Core(x_28, x_30, x_5, x_6, x_7, x_8, x_29); +return x_31; +} +else +{ +uint8_t x_32; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_32 = !lean_is_exclusive(x_27); +if (x_32 == 0) +{ +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_27, 0); +x_34 = lean_ctor_get(x_27, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_27); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +} LEAN_EXPORT lean_object* l_Lean_MVarId_define___lambda__1(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: { @@ -1687,18 +1863,2052 @@ x_8 = l_Lean_MVarId_assertHypotheses(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* initialize_Init_Data_List_BasicAux(uint8_t builtin, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(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; lean_object* x_11; lean_object* x_22; uint8_t x_23; +x_22 = lean_st_ref_get(x_3, x_9); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_22, 0); +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_2); +x_26 = l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(x_24, x_2); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +lean_free_object(x_22); +lean_inc(x_1); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +x_27 = lean_apply_7(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_25); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; uint8_t x_29; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_unbox(x_28); +lean_dec(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_30 = lean_ctor_get(x_27, 1); +lean_inc(x_30); +lean_dec(x_27); +x_31 = lean_box(0); +x_10 = x_31; +x_11 = x_30; +goto block_21; +} +else +{ +switch (lean_obj_tag(x_2)) { +case 5: +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = lean_ctor_get(x_27, 1); +lean_inc(x_32); +lean_dec(x_27); +x_33 = lean_ctor_get(x_2, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_2, 1); +lean_inc(x_34); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_35 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_33, x_3, x_4, x_5, x_6, x_7, x_8, x_32); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_36); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_10 = x_38; +x_11 = x_39; +goto block_21; +} +else +{ +uint8_t x_40; +lean_dec(x_2); +x_40 = !lean_is_exclusive(x_37); +if (x_40 == 0) +{ +return x_37; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_37, 0); +x_42 = lean_ctor_get(x_37, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_37); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; +} +} +} +else +{ +uint8_t x_44; +lean_dec(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_2); +lean_dec(x_1); +x_44 = !lean_is_exclusive(x_35); +if (x_44 == 0) +{ +return x_35; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_35, 0); +x_46 = lean_ctor_get(x_35, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_35); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; +} +} +} +case 6: +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_27, 1); +lean_inc(x_48); +lean_dec(x_27); +x_49 = lean_ctor_get(x_2, 1); +lean_inc(x_49); +x_50 = lean_ctor_get(x_2, 2); +lean_inc(x_50); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_51 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_48); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_51, 1); +lean_inc(x_52); +lean_dec(x_51); +x_53 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_50, x_3, x_4, x_5, x_6, x_7, x_8, x_52); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_10 = x_54; +x_11 = x_55; +goto block_21; +} +else +{ +uint8_t x_56; +lean_dec(x_2); +x_56 = !lean_is_exclusive(x_53); +if (x_56 == 0) +{ +return x_53; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_53, 0); +x_58 = lean_ctor_get(x_53, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_53); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +else +{ +uint8_t x_60; +lean_dec(x_50); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_51); +if (x_60 == 0) +{ +return x_51; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_51, 0); +x_62 = lean_ctor_get(x_51, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_51); +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; +} +} +} +case 7: +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_27, 1); +lean_inc(x_64); +lean_dec(x_27); +x_65 = lean_ctor_get(x_2, 1); +lean_inc(x_65); +x_66 = lean_ctor_get(x_2, 2); +lean_inc(x_66); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_67 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_65, x_3, x_4, x_5, x_6, x_7, x_8, x_64); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_67, 1); +lean_inc(x_68); +lean_dec(x_67); +x_69 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_66, x_3, x_4, x_5, x_6, x_7, x_8, x_68); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); +lean_inc(x_71); +lean_dec(x_69); +x_10 = x_70; +x_11 = x_71; +goto block_21; +} +else +{ +uint8_t x_72; +lean_dec(x_2); +x_72 = !lean_is_exclusive(x_69); +if (x_72 == 0) +{ +return x_69; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 0); +x_74 = lean_ctor_get(x_69, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_69); +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; +} +} +} +else +{ +uint8_t x_76; +lean_dec(x_66); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_76 = !lean_is_exclusive(x_67); +if (x_76 == 0) +{ +return x_67; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_67, 0); +x_78 = lean_ctor_get(x_67, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_67); +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; +} +} +} +case 8: +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_80 = lean_ctor_get(x_27, 1); +lean_inc(x_80); +lean_dec(x_27); +x_81 = lean_ctor_get(x_2, 1); +lean_inc(x_81); +x_82 = lean_ctor_get(x_2, 2); +lean_inc(x_82); +x_83 = lean_ctor_get(x_2, 3); +lean_inc(x_83); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_84 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_81, x_3, x_4, x_5, x_6, x_7, x_8, x_80); +if (lean_obj_tag(x_84) == 0) +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_84, 1); +lean_inc(x_85); +lean_dec(x_84); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_86 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_82, x_3, x_4, x_5, x_6, x_7, x_8, x_85); +if (lean_obj_tag(x_86) == 0) +{ +lean_object* x_87; lean_object* x_88; +x_87 = lean_ctor_get(x_86, 1); +lean_inc(x_87); +lean_dec(x_86); +x_88 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_83, x_3, x_4, x_5, x_6, x_7, x_8, x_87); +if (lean_obj_tag(x_88) == 0) +{ +lean_object* x_89; lean_object* x_90; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +lean_dec(x_88); +x_10 = x_89; +x_11 = x_90; +goto block_21; +} +else +{ +uint8_t x_91; +lean_dec(x_2); +x_91 = !lean_is_exclusive(x_88); +if (x_91 == 0) +{ +return x_88; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_88, 0); +x_93 = lean_ctor_get(x_88, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_88); +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; +} +} +} +else +{ +uint8_t x_95; +lean_dec(x_83); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_95 = !lean_is_exclusive(x_86); +if (x_95 == 0) +{ +return x_86; +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_86, 0); +x_97 = lean_ctor_get(x_86, 1); +lean_inc(x_97); +lean_inc(x_96); +lean_dec(x_86); +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 +{ +uint8_t x_99; +lean_dec(x_83); +lean_dec(x_82); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_99 = !lean_is_exclusive(x_84); +if (x_99 == 0) +{ +return x_84; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_100 = lean_ctor_get(x_84, 0); +x_101 = lean_ctor_get(x_84, 1); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_84); +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; +} +} +} +case 10: +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_27, 1); +lean_inc(x_103); +lean_dec(x_27); +x_104 = lean_ctor_get(x_2, 1); +lean_inc(x_104); +x_105 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_104, x_3, x_4, x_5, x_6, x_7, x_8, x_103); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_105, 1); +lean_inc(x_107); +lean_dec(x_105); +x_10 = x_106; +x_11 = x_107; +goto block_21; +} +else +{ +uint8_t x_108; +lean_dec(x_2); +x_108 = !lean_is_exclusive(x_105); +if (x_108 == 0) +{ +return x_105; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_105, 0); +x_110 = lean_ctor_get(x_105, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_105); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; +} +} +} +case 11: +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_27, 1); +lean_inc(x_112); +lean_dec(x_27); +x_113 = lean_ctor_get(x_2, 2); +lean_inc(x_113); +x_114 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_112); +if (lean_obj_tag(x_114) == 0) +{ +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_114, 1); +lean_inc(x_116); +lean_dec(x_114); +x_10 = x_115; +x_11 = x_116; +goto block_21; +} +else +{ +uint8_t x_117; +lean_dec(x_2); +x_117 = !lean_is_exclusive(x_114); +if (x_117 == 0) +{ +return x_114; +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_118 = lean_ctor_get(x_114, 0); +x_119 = lean_ctor_get(x_114, 1); +lean_inc(x_119); +lean_inc(x_118); +lean_dec(x_114); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_118); +lean_ctor_set(x_120, 1, x_119); +return x_120; +} +} +} +default: +{ +lean_object* x_121; lean_object* x_122; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_121 = lean_ctor_get(x_27, 1); +lean_inc(x_121); +lean_dec(x_27); +x_122 = lean_box(0); +x_10 = x_122; +x_11 = x_121; +goto block_21; +} +} +} +} +else +{ +uint8_t x_123; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_123 = !lean_is_exclusive(x_27); +if (x_123 == 0) +{ +return x_27; +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_124 = lean_ctor_get(x_27, 0); +x_125 = lean_ctor_get(x_27, 1); +lean_inc(x_125); +lean_inc(x_124); +lean_dec(x_27); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_124); +lean_ctor_set(x_126, 1, x_125); +return x_126; +} +} +} +else +{ +lean_object* x_127; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_127 = lean_ctor_get(x_26, 0); +lean_inc(x_127); +lean_dec(x_26); +lean_ctor_set(x_22, 0, x_127); +return x_22; +} +} +else +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_128 = lean_ctor_get(x_22, 0); +x_129 = lean_ctor_get(x_22, 1); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_22); +lean_inc(x_2); +x_130 = l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(x_128, x_2); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; +lean_inc(x_1); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +x_131 = lean_apply_7(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_129); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; uint8_t x_133; +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_134 = lean_ctor_get(x_131, 1); +lean_inc(x_134); +lean_dec(x_131); +x_135 = lean_box(0); +x_10 = x_135; +x_11 = x_134; +goto block_21; +} +else +{ +switch (lean_obj_tag(x_2)) { +case 5: +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_136 = lean_ctor_get(x_131, 1); +lean_inc(x_136); +lean_dec(x_131); +x_137 = lean_ctor_get(x_2, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_2, 1); +lean_inc(x_138); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_139 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_137, x_3, x_4, x_5, x_6, x_7, x_8, x_136); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; +x_140 = lean_ctor_get(x_139, 1); +lean_inc(x_140); +lean_dec(x_139); +x_141 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_138, x_3, x_4, x_5, x_6, x_7, x_8, x_140); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_141, 1); +lean_inc(x_143); +lean_dec(x_141); +x_10 = x_142; +x_11 = x_143; +goto block_21; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +lean_dec(x_2); +x_144 = lean_ctor_get(x_141, 0); +lean_inc(x_144); +x_145 = lean_ctor_get(x_141, 1); +lean_inc(x_145); +if (lean_is_exclusive(x_141)) { + lean_ctor_release(x_141, 0); + lean_ctor_release(x_141, 1); + x_146 = x_141; +} else { + lean_dec_ref(x_141); + x_146 = lean_box(0); +} +if (lean_is_scalar(x_146)) { + x_147 = lean_alloc_ctor(1, 2, 0); +} else { + x_147 = 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_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +lean_dec(x_138); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_148 = lean_ctor_get(x_139, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_139, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_139)) { + lean_ctor_release(x_139, 0); + lean_ctor_release(x_139, 1); + x_150 = x_139; +} else { + lean_dec_ref(x_139); + x_150 = lean_box(0); +} +if (lean_is_scalar(x_150)) { + x_151 = lean_alloc_ctor(1, 2, 0); +} else { + x_151 = x_150; +} +lean_ctor_set(x_151, 0, x_148); +lean_ctor_set(x_151, 1, x_149); +return x_151; +} +} +case 6: +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_152 = lean_ctor_get(x_131, 1); +lean_inc(x_152); +lean_dec(x_131); +x_153 = lean_ctor_get(x_2, 1); +lean_inc(x_153); +x_154 = lean_ctor_get(x_2, 2); +lean_inc(x_154); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_155 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_153, x_3, x_4, x_5, x_6, x_7, x_8, x_152); +if (lean_obj_tag(x_155) == 0) +{ +lean_object* x_156; lean_object* x_157; +x_156 = lean_ctor_get(x_155, 1); +lean_inc(x_156); +lean_dec(x_155); +x_157 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_154, x_3, x_4, x_5, x_6, x_7, x_8, x_156); +if (lean_obj_tag(x_157) == 0) +{ +lean_object* x_158; lean_object* x_159; +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec(x_157); +x_10 = x_158; +x_11 = x_159; +goto block_21; +} +else +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +lean_dec(x_2); +x_160 = lean_ctor_get(x_157, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_157, 1); +lean_inc(x_161); +if (lean_is_exclusive(x_157)) { + lean_ctor_release(x_157, 0); + lean_ctor_release(x_157, 1); + x_162 = x_157; +} else { + lean_dec_ref(x_157); + x_162 = lean_box(0); +} +if (lean_is_scalar(x_162)) { + x_163 = lean_alloc_ctor(1, 2, 0); +} else { + x_163 = x_162; +} +lean_ctor_set(x_163, 0, x_160); +lean_ctor_set(x_163, 1, x_161); +return x_163; +} +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; +lean_dec(x_154); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_164 = lean_ctor_get(x_155, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_155, 1); +lean_inc(x_165); +if (lean_is_exclusive(x_155)) { + lean_ctor_release(x_155, 0); + lean_ctor_release(x_155, 1); + x_166 = x_155; +} else { + lean_dec_ref(x_155); + x_166 = lean_box(0); +} +if (lean_is_scalar(x_166)) { + x_167 = lean_alloc_ctor(1, 2, 0); +} else { + x_167 = x_166; +} +lean_ctor_set(x_167, 0, x_164); +lean_ctor_set(x_167, 1, x_165); +return x_167; +} +} +case 7: +{ +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_131, 1); +lean_inc(x_168); +lean_dec(x_131); +x_169 = lean_ctor_get(x_2, 1); +lean_inc(x_169); +x_170 = lean_ctor_get(x_2, 2); +lean_inc(x_170); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_171 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_169, x_3, x_4, x_5, x_6, x_7, x_8, x_168); +if (lean_obj_tag(x_171) == 0) +{ +lean_object* x_172; lean_object* x_173; +x_172 = lean_ctor_get(x_171, 1); +lean_inc(x_172); +lean_dec(x_171); +x_173 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_170, x_3, x_4, x_5, x_6, x_7, x_8, x_172); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec(x_173); +x_10 = x_174; +x_11 = x_175; +goto block_21; +} +else +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec(x_2); +x_176 = lean_ctor_get(x_173, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_173, 1); +lean_inc(x_177); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_178 = x_173; +} else { + lean_dec_ref(x_173); + x_178 = lean_box(0); +} +if (lean_is_scalar(x_178)) { + x_179 = lean_alloc_ctor(1, 2, 0); +} else { + x_179 = x_178; +} +lean_ctor_set(x_179, 0, x_176); +lean_ctor_set(x_179, 1, x_177); +return x_179; +} +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +lean_dec(x_170); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_180 = lean_ctor_get(x_171, 0); +lean_inc(x_180); +x_181 = lean_ctor_get(x_171, 1); +lean_inc(x_181); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + x_182 = x_171; +} else { + lean_dec_ref(x_171); + x_182 = lean_box(0); +} +if (lean_is_scalar(x_182)) { + x_183 = lean_alloc_ctor(1, 2, 0); +} else { + x_183 = x_182; +} +lean_ctor_set(x_183, 0, x_180); +lean_ctor_set(x_183, 1, x_181); +return x_183; +} +} +case 8: +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_184 = lean_ctor_get(x_131, 1); +lean_inc(x_184); +lean_dec(x_131); +x_185 = lean_ctor_get(x_2, 1); +lean_inc(x_185); +x_186 = lean_ctor_get(x_2, 2); +lean_inc(x_186); +x_187 = lean_ctor_get(x_2, 3); +lean_inc(x_187); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_188 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_185, x_3, x_4, x_5, x_6, x_7, x_8, x_184); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; +x_189 = lean_ctor_get(x_188, 1); +lean_inc(x_189); +lean_dec(x_188); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_190 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_186, x_3, x_4, x_5, x_6, x_7, x_8, x_189); +if (lean_obj_tag(x_190) == 0) +{ +lean_object* x_191; lean_object* x_192; +x_191 = lean_ctor_get(x_190, 1); +lean_inc(x_191); +lean_dec(x_190); +x_192 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_187, x_3, x_4, x_5, x_6, x_7, x_8, x_191); +if (lean_obj_tag(x_192) == 0) +{ +lean_object* x_193; lean_object* x_194; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_192, 1); +lean_inc(x_194); +lean_dec(x_192); +x_10 = x_193; +x_11 = x_194; +goto block_21; +} +else +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +lean_dec(x_2); +x_195 = lean_ctor_get(x_192, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_192, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + x_197 = x_192; +} else { + lean_dec_ref(x_192); + x_197 = lean_box(0); +} +if (lean_is_scalar(x_197)) { + x_198 = lean_alloc_ctor(1, 2, 0); +} else { + x_198 = x_197; +} +lean_ctor_set(x_198, 0, x_195); +lean_ctor_set(x_198, 1, x_196); +return x_198; +} +} +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_dec(x_187); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_199 = lean_ctor_get(x_190, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_190, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_190)) { + lean_ctor_release(x_190, 0); + lean_ctor_release(x_190, 1); + x_201 = x_190; +} else { + lean_dec_ref(x_190); + x_201 = lean_box(0); +} +if (lean_is_scalar(x_201)) { + x_202 = lean_alloc_ctor(1, 2, 0); +} else { + x_202 = x_201; +} +lean_ctor_set(x_202, 0, x_199); +lean_ctor_set(x_202, 1, x_200); +return x_202; +} +} +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; +lean_dec(x_187); +lean_dec(x_186); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_203 = lean_ctor_get(x_188, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_188, 1); +lean_inc(x_204); +if (lean_is_exclusive(x_188)) { + lean_ctor_release(x_188, 0); + lean_ctor_release(x_188, 1); + x_205 = x_188; +} else { + lean_dec_ref(x_188); + x_205 = lean_box(0); +} +if (lean_is_scalar(x_205)) { + x_206 = lean_alloc_ctor(1, 2, 0); +} else { + x_206 = x_205; +} +lean_ctor_set(x_206, 0, x_203); +lean_ctor_set(x_206, 1, x_204); +return x_206; +} +} +case 10: +{ +lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_207 = lean_ctor_get(x_131, 1); +lean_inc(x_207); +lean_dec(x_131); +x_208 = lean_ctor_get(x_2, 1); +lean_inc(x_208); +x_209 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_208, x_3, x_4, x_5, x_6, x_7, x_8, x_207); +if (lean_obj_tag(x_209) == 0) +{ +lean_object* x_210; lean_object* x_211; +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_10 = x_210; +x_11 = x_211; +goto block_21; +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +lean_dec(x_2); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +x_213 = lean_ctor_get(x_209, 1); +lean_inc(x_213); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + x_214 = x_209; +} else { + lean_dec_ref(x_209); + x_214 = lean_box(0); +} +if (lean_is_scalar(x_214)) { + x_215 = lean_alloc_ctor(1, 2, 0); +} else { + x_215 = x_214; +} +lean_ctor_set(x_215, 0, x_212); +lean_ctor_set(x_215, 1, x_213); +return x_215; +} +} +case 11: +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +x_216 = lean_ctor_get(x_131, 1); +lean_inc(x_216); +lean_dec(x_131); +x_217 = lean_ctor_get(x_2, 2); +lean_inc(x_217); +x_218 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_217, x_3, x_4, x_5, x_6, x_7, x_8, x_216); +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_219; lean_object* x_220; +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_218, 1); +lean_inc(x_220); +lean_dec(x_218); +x_10 = x_219; +x_11 = x_220; +goto block_21; +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; +lean_dec(x_2); +x_221 = lean_ctor_get(x_218, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_218, 1); +lean_inc(x_222); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + lean_ctor_release(x_218, 1); + x_223 = x_218; +} else { + lean_dec_ref(x_218); + x_223 = lean_box(0); +} +if (lean_is_scalar(x_223)) { + x_224 = lean_alloc_ctor(1, 2, 0); +} else { + x_224 = x_223; +} +lean_ctor_set(x_224, 0, x_221); +lean_ctor_set(x_224, 1, x_222); +return x_224; +} +} +default: +{ +lean_object* x_225; lean_object* x_226; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_225 = lean_ctor_get(x_131, 1); +lean_inc(x_225); +lean_dec(x_131); +x_226 = lean_box(0); +x_10 = x_226; +x_11 = x_225; +goto block_21; +} +} +} +} +else +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_227 = lean_ctor_get(x_131, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_131, 1); +lean_inc(x_228); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + lean_ctor_release(x_131, 1); + x_229 = x_131; +} else { + lean_dec_ref(x_131); + x_229 = lean_box(0); +} +if (lean_is_scalar(x_229)) { + x_230 = lean_alloc_ctor(1, 2, 0); +} else { + x_230 = x_229; +} +lean_ctor_set(x_230, 0, x_227); +lean_ctor_set(x_230, 1, x_228); +return x_230; +} +} +else +{ +lean_object* x_231; lean_object* x_232; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_231 = lean_ctor_get(x_130, 0); +lean_inc(x_231); +lean_dec(x_130); +x_232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_129); +return x_232; +} +} +block_21: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_12 = lean_st_ref_take(x_3, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +lean_inc(x_10); +x_15 = l_Lean_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(x_13, x_2, x_10); +x_16 = lean_st_ref_set(x_3, x_15, x_14); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_10); +return x_16; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_10); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar___lambda__1(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) { +_start: +{ +uint8_t x_8; +x_8 = l_Lean_Expr_isFVar(x_1); +if (x_8 == 0) +{ +uint8_t x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_3); +x_9 = l_Lean_Expr_hasFVar(x_1); +lean_dec(x_1); +x_10 = lean_box(x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_7); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = l_Lean_Expr_fvarId_x21(x_1); +x_13 = l_Lean_FVarId_getDecl(x_12, x_3, x_4, x_5, x_6, x_7); +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_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +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_16 = lean_st_ref_take(x_2, x_15); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_Lean_LocalDecl_index(x_17); +x_20 = l_Lean_LocalDecl_index(x_14); +x_21 = lean_nat_dec_lt(x_19, x_20); +lean_dec(x_20); +lean_dec(x_19); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +lean_dec(x_14); +x_22 = lean_st_ref_set(x_2, x_17, x_18); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; uint8_t x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_22, 0); +lean_dec(x_24); +x_25 = 0; +x_26 = lean_box(x_25); +lean_ctor_set(x_22, 0, x_26); +return x_22; +} +else +{ +lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_22, 1); +lean_inc(x_27); +lean_dec(x_22); +x_28 = 0; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_27); +return x_30; +} +} +else +{ +lean_object* x_31; uint8_t x_32; +lean_dec(x_17); +x_31 = lean_st_ref_set(x_2, x_14, x_18); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; uint8_t x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_31, 0); +lean_dec(x_33); +x_34 = 0; +x_35 = lean_box(x_34); +lean_ctor_set(x_31, 0, x_35); +return x_31; +} +else +{ +lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_31, 1); +lean_inc(x_36); +lean_dec(x_31); +x_37 = 0; +x_38 = lean_box(x_37); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_36); +return x_39; +} +} +} +else +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_13); +if (x_40 == 0) +{ +return x_13; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_13, 0); +x_42 = lean_ctor_get(x_13, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_13); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; +} +} +} +} +} +static lean_object* _init_l_Lean_MVarId_replace_findMaxFVar___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(8u); +x_2 = l_Lean_mkHashMapImp___rarg(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_MVarId_replace_findMaxFVar___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_MVarId_replace_findMaxFVar___lambda__1___boxed), 7, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = l_Lean_MVarId_replace_findMaxFVar___closed__1; +x_9 = lean_st_mk_ref(x_8, x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l_Lean_MVarId_replace_findMaxFVar___closed__2; +x_13 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_12, x_1, x_10, x_2, x_3, x_4, x_5, x_6, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +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_16 = lean_st_ref_get(x_10, x_15); +lean_dec(x_10); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_14); +return x_16; +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_10); +x_21 = !lean_is_exclusive(x_13); +if (x_21 == 0) +{ +return x_13; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_13, 0); +x_23 = lean_ctor_get(x_13, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_13); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1___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_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace_findMaxFVar___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_MVarId_replace_findMaxFVar___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace___lambda__1(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; +lean_inc(x_5); +lean_inc(x_1); +x_10 = l_Lean_FVarId_getDecl(x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_11); +x_13 = lean_st_mk_ref(x_11, x_12); +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); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_14); +lean_inc(x_4); +x_16 = l_Lean_MVarId_replace_findMaxFVar(x_4, x_14, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_16) == 0) +{ +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; +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +x_18 = lean_st_ref_get(x_14, x_17); +lean_dec(x_14); +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_LocalDecl_fvarId(x_19); +lean_dec(x_19); +x_22 = l_Lean_LocalDecl_userName(x_11); +lean_dec(x_11); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_23 = l_Lean_MVarId_assertAfter(x_2, x_21, x_22, x_4, x_3, x_5, x_6, x_7, x_8, x_20); +if (lean_obj_tag(x_23) == 0) +{ +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; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_ctor_get(x_24, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_24, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_24, 2); +lean_inc(x_28); +x_29 = l_Lean_Meta_saveState___rarg(x_6, x_7, x_8, x_25); +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_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_32 = l_Lean_MVarId_clear(x_27, x_1, x_5, x_6, x_7, x_8, x_31); +if (lean_obj_tag(x_32) == 0) +{ +uint8_t x_33; +lean_dec(x_30); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_33 = !lean_is_exclusive(x_24); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_34 = lean_ctor_get(x_24, 2); +lean_dec(x_34); +x_35 = lean_ctor_get(x_24, 1); +lean_dec(x_35); +x_36 = lean_ctor_get(x_24, 0); +lean_dec(x_36); +x_37 = !lean_is_exclusive(x_32); +if (x_37 == 0) +{ +lean_object* x_38; +x_38 = lean_ctor_get(x_32, 0); +lean_ctor_set(x_24, 1, x_38); +lean_ctor_set(x_32, 0, x_24); +return x_32; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_32, 0); +x_40 = lean_ctor_get(x_32, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_32); +lean_ctor_set(x_24, 1, x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_24); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_24); +x_42 = lean_ctor_get(x_32, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_32, 1); +lean_inc(x_43); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_44 = x_32; +} else { + lean_dec_ref(x_32); + x_44 = lean_box(0); +} +x_45 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_45, 0, x_26); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set(x_45, 2, x_28); +if (lean_is_scalar(x_44)) { + x_46 = lean_alloc_ctor(0, 2, 0); +} else { + x_46 = x_44; +} +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_43); +return x_46; +} +} +else +{ +uint8_t x_47; +lean_dec(x_28); +lean_dec(x_26); +x_47 = !lean_is_exclusive(x_32); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_48 = lean_ctor_get(x_32, 0); +x_49 = lean_ctor_get(x_32, 1); +x_50 = l_Lean_Exception_isRuntime(x_48); +if (x_50 == 0) +{ +lean_object* x_51; uint8_t x_52; +lean_free_object(x_32); +lean_dec(x_48); +x_51 = l_Lean_Meta_SavedState_restore(x_30, x_5, x_6, x_7, x_8, x_49); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_30); +x_52 = !lean_is_exclusive(x_51); +if (x_52 == 0) +{ +lean_object* x_53; +x_53 = lean_ctor_get(x_51, 0); +lean_dec(x_53); +lean_ctor_set(x_51, 0, x_24); +return x_51; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_51, 1); +lean_inc(x_54); +lean_dec(x_51); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_24); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +else +{ +uint8_t x_56; +x_56 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_56 == 0) +{ +lean_dec(x_30); +lean_dec(x_24); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_32; +} +else +{ +lean_object* x_57; uint8_t x_58; +lean_free_object(x_32); +lean_dec(x_48); +x_57 = l_Lean_Meta_SavedState_restore(x_30, x_5, x_6, x_7, x_8, x_49); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_30); +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) +{ +lean_object* x_59; +x_59 = lean_ctor_get(x_57, 0); +lean_dec(x_59); +lean_ctor_set(x_57, 0, x_24); +return x_57; +} +else +{ +lean_object* x_60; lean_object* x_61; +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +lean_dec(x_57); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_24); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +} +else +{ +lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_62 = lean_ctor_get(x_32, 0); +x_63 = lean_ctor_get(x_32, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_32); +x_64 = l_Lean_Exception_isRuntime(x_62); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_62); +x_65 = l_Lean_Meta_SavedState_restore(x_30, x_5, x_6, x_7, x_8, x_63); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_30); +x_66 = lean_ctor_get(x_65, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + x_67 = x_65; +} else { + lean_dec_ref(x_65); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_24); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +else +{ +uint8_t x_69; +x_69 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_69 == 0) +{ +lean_object* x_70; +lean_dec(x_30); +lean_dec(x_24); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_62); +lean_ctor_set(x_70, 1, x_63); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_dec(x_62); +x_71 = l_Lean_Meta_SavedState_restore(x_30, x_5, x_6, x_7, x_8, x_63); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_30); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_73 = x_71; +} else { + lean_dec_ref(x_71); + x_73 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(0, 2, 0); +} else { + x_74 = x_73; +} +lean_ctor_set(x_74, 0, x_24); +lean_ctor_set(x_74, 1, x_72); +return x_74; +} +} +} +} +} +else +{ +uint8_t x_75; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_75 = !lean_is_exclusive(x_23); +if (x_75 == 0) +{ +return x_23; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_23, 0); +x_77 = lean_ctor_get(x_23, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_23); +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_14); +lean_dec(x_11); +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); +lean_dec(x_1); +x_79 = !lean_is_exclusive(x_16); +if (x_79 == 0) +{ +return x_16; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_16, 0); +x_81 = lean_ctor_get(x_16, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_16); +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 +{ +uint8_t x_83; +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); +lean_dec(x_1); +x_83 = !lean_is_exclusive(x_10); +if (x_83 == 0) +{ +return x_10; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_10, 0); +x_85 = lean_ctor_get(x_10, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_10); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace___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) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = lean_infer_type(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_apply_6(x_2, x_9, x_3, x_4, x_5, x_6, x_10); +return x_11; +} +else +{ +uint8_t x_12; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_12 = !lean_is_exclusive(x_8); +if (x_12 == 0) +{ +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_8, 0); +x_14 = lean_ctor_get(x_8, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_8); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_replace(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: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_inc(x_3); +lean_inc(x_1); +x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_replace___lambda__1), 9, 3); +lean_closure_set(x_10, 0, x_2); +lean_closure_set(x_10, 1, x_1); +lean_closure_set(x_10, 2, x_3); +x_11 = lean_alloc_closure((void*)(l_Lean_MVarId_replace___lambda__2), 7, 2); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_10); +x_12 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_11, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +lean_dec(x_4); +lean_inc(x_1); +x_14 = lean_alloc_closure((void*)(l_Lean_MVarId_replace___lambda__1), 9, 4); +lean_closure_set(x_14, 0, x_2); +lean_closure_set(x_14, 1, x_1); +lean_closure_set(x_14, 2, x_3); +lean_closure_set(x_14, 3, x_13); +x_15 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_14, x_5, x_6, x_7, x_8, x_9); +return x_15; +} +} +} lean_object* initialize_Lean_Meta_Tactic_FVarSubst(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Intro(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Revert(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Util_ForEachExpr(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Assert(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init_Data_List_BasicAux(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_FVarSubst(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -1708,6 +3918,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Revert(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Util_ForEachExpr(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_MVarId_assert___closed__1 = _init_l_Lean_MVarId_assert___closed__1(); lean_mark_persistent(l_Lean_MVarId_assert___closed__1); l_Lean_MVarId_assert___closed__2 = _init_l_Lean_MVarId_assert___closed__2(); @@ -1732,6 +3945,10 @@ l_Lean_MVarId_assertHypotheses___closed__2 = _init_l_Lean_MVarId_assertHypothese lean_mark_persistent(l_Lean_MVarId_assertHypotheses___closed__2); l_Lean_MVarId_assertHypotheses___closed__3 = _init_l_Lean_MVarId_assertHypotheses___closed__3(); lean_mark_persistent(l_Lean_MVarId_assertHypotheses___closed__3); +l_Lean_MVarId_replace_findMaxFVar___closed__1 = _init_l_Lean_MVarId_replace_findMaxFVar___closed__1(); +lean_mark_persistent(l_Lean_MVarId_replace_findMaxFVar___closed__1); +l_Lean_MVarId_replace_findMaxFVar___closed__2 = _init_l_Lean_MVarId_replace_findMaxFVar___closed__2(); +lean_mark_persistent(l_Lean_MVarId_replace_findMaxFVar___closed__2); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c b/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c new file mode 100644 index 0000000000..37803a6072 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c @@ -0,0 +1,6288 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.Backtrack +// Imports: Init.Data.List.BasicAux Lean.Meta.Iterator Lean.Meta.Tactic.IndependentOf +#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 +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_join___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(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___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4; +extern lean_object* l_Lean_profiler; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l_Lean_MVarId_getType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6; +double lean_float_div(double, double); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM(lean_object*, lean_object*, lean_object*); +double l_Lean_trace_profiler_threshold_getSecs(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofList(lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4; +static lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2; +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__4(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*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3___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*, lean_object*); +uint8_t lean_float_decLt(double, double); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3; +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__1(lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1; +lean_object* l_Lean_Exception_toMessageData(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default(lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run(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_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default___rarg(lean_object*); +lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___boxed(lean_object*); +uint8_t l_List_isEmpty___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6(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_Meta_Tactic_Backtrack_BacktrackConfig_maxDepth___default; +static lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2; +lean_object* lean_io_mono_nanos_now(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1; +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2; +lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3; +lean_object* l_Lean_Meta_ppExpr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1; +double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg___lambda__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1; +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7(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*); +lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_exceptEmoji___rarg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(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*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2; +lean_object* l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_float_to_string(double); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___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_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2; +LEAN_EXPORT lean_object* l_Bind_bindLeft___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_partitionM_go___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__3(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*); +static double l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___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*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_commitIndependentGoals___default; +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; +lean_object* l_List_reverse___rarg(lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2; +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4___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*); +extern lean_object* l_Lean_trace_profiler; +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___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* l_Lean_MVarId_isIndependentOf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3(lean_object*, lean_object*); +lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__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_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +uint8_t l_Lean_Exception_isRuntime(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___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_Meta_Tactic_Backtrack_Backtrack_tryAllM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__5(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*); +static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6; +LEAN_EXPORT lean_object* l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Iterator_firstM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_maxDepth___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_unsigned_to_nat(6u); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_box(0); +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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default___rarg), 1, 0); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_proc___default(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default___rarg(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; lean_object* x_4; +x_2 = 0; +x_3 = lean_box(x_2); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default(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; +x_6 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default___rarg), 1, 0); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default___boxed(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; +x_6 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_suspend___default(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg(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; +x_6 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2; +x_7 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_6, x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg), 5, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default(x_1); +lean_dec(x_1); +return x_2; +} +} +static uint8_t _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_commitIndependentGoals___default() { +_start: +{ +uint8_t x_1; +x_1 = 0; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Bind_bindLeft___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___spec__1(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) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = lean_apply_5(x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_apply_6(x_1, x_9, x_3, x_4, x_5, x_6, x_10); +return x_11; +} +else +{ +uint8_t x_12; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_12 = !lean_is_exclusive(x_8); +if (x_12 == 0) +{ +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_8, 0); +x_14 = lean_ctor_get(x_8, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_8); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_ppExpr___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_alloc_closure((void*)(l_Lean_MVarId_getType___boxed), 6, 1); +lean_closure_set(x_7, 0, x_1); +x_8 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1; +x_9 = l_Bind_bindLeft___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___spec__1(x_8, x_7, x_2, x_3, x_4, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_1); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_13 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId(x_11, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +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); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_14); +{ +lean_object* _tmp_0 = x_12; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_15; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +uint8_t x_17; +lean_free_object(x_1); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 0); +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_13); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_23 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId(x_21, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_2); +x_1 = x_22; +x_2 = x_26; +x_7 = x_25; +goto _start; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_22); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_28 = lean_ctor_get(x_23, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_30 = x_23; +} else { + lean_dec_ref(x_23); + x_30 = lean_box(0); +} +if (lean_is_scalar(x_30)) { + x_31 = lean_alloc_ctor(1, 2, 0); +} else { + x_31 = x_30; +} +lean_ctor_set(x_31, 0, x_28); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_box(0); +x_8 = l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds___spec__1(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_5, 0, x_2); +x_6 = lean_apply_2(x_4, lean_box(0), x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___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) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_1); +x_8 = l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg(x_2, x_3, x_4, x_5, x_7); +return x_8; +} +} +static lean_object* _init_l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__1), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +lean_dec(x_2); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = l_List_reverse___rarg(x_5); +x_9 = lean_apply_2(x_7, lean_box(0), x_8); +return x_9; +} +else +{ +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; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 1); +lean_inc(x_11); +lean_dec(x_4); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +x_13 = lean_ctor_get(x_2, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec(x_14); +lean_inc(x_3); +lean_inc(x_10); +x_16 = lean_apply_1(x_3, x_10); +x_17 = l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1; +x_18 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_17, x_16); +x_19 = lean_alloc_closure((void*)(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2___boxed), 3, 2); +lean_closure_set(x_19, 0, x_13); +lean_closure_set(x_19, 1, x_10); +x_20 = lean_ctor_get(x_2, 2); +lean_inc(x_20); +x_21 = lean_apply_3(x_20, lean_box(0), x_18, x_19); +x_22 = lean_alloc_closure((void*)(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__3), 6, 5); +lean_closure_set(x_22, 0, x_5); +lean_closure_set(x_22, 1, x_1); +lean_closure_set(x_22, 2, x_2); +lean_closure_set(x_22, 3, x_3); +lean_closure_set(x_22, 4, x_11); +x_23 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_21, x_22); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg), 5, 0); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = lean_ctor_get(x_3, 0); +lean_inc(x_7); +lean_dec(x_3); +x_8 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg(x_5); +lean_ctor_set(x_1, 1, x_8); +lean_ctor_set(x_1, 0, x_7); +return x_1; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +lean_dec(x_1); +x_10 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +lean_dec(x_3); +x_11 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +else +{ +lean_object* x_13; +lean_dec(x_3); +x_13 = lean_ctor_get(x_1, 1); +lean_inc(x_13); +lean_dec(x_1); +x_1 = x_13; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_1 = x_4; +goto _start; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_3, 0); +lean_inc(x_9); +lean_dec(x_3); +x_10 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg(x_7); +lean_ctor_set(x_1, 1, x_10); +lean_ctor_set(x_1, 0, x_9); +return x_1; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +lean_dec(x_1); +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg(x_11); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg___lambda__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; lean_object* x_7; lean_object* x_8; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_dec(x_3); +lean_inc(x_2); +x_5 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__2___rarg(x_2); +x_6 = l_List_filterMap___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__3___rarg(x_2); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +x_8 = lean_apply_2(x_4, lean_box(0), x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +x_6 = lean_box(0); +lean_inc(x_2); +x_7 = l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg(x_1, x_2, x_4, x_3, x_6); +x_8 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg___lambda__1), 2, 1); +lean_closure_set(x_8, 0, x_2); +x_9 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg), 4, 0); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__2(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg___boxed), 6, 0); +return x_2; +} +} +static double _init_l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; double x_4; +x_1 = lean_unsigned_to_nat(1000000000u); +x_2 = 0; +x_3 = lean_unsigned_to_nat(0u); +x_4 = l_Float_ofScientific(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_io_mono_nanos_now(x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_io_mono_nanos_now(x_12); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; double x_19; double x_20; double x_21; lean_object* x_22; lean_object* x_23; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_nat_sub(x_15, x_8); +lean_dec(x_8); +lean_dec(x_15); +x_17 = 0; +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Float_ofScientific(x_16, x_17, x_18); +lean_dec(x_16); +x_20 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1; +x_21 = lean_float_div(x_19, x_20); +x_22 = lean_box_float(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_11); +lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_13, 0, x_23); +return x_13; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; double x_29; double x_30; double x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +x_26 = lean_nat_sub(x_24, x_8); +lean_dec(x_8); +lean_dec(x_24); +x_27 = 0; +x_28 = lean_unsigned_to_nat(0u); +x_29 = l_Float_ofScientific(x_26, x_27, x_28); +lean_dec(x_26); +x_30 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1; +x_31 = lean_float_div(x_29, x_30); +x_32 = lean_box_float(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_11); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_25); +return x_34; +} +} +else +{ +uint8_t x_35; +lean_dec(x_8); +x_35 = !lean_is_exclusive(x_10); +if (x_35 == 0) +{ +return x_10; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_10, 0); +x_37 = lean_ctor_get(x_10, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_10); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_7, 0, x_10); +return x_7; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_7, 0); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_7); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_7); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_7, 0); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set_tag(x_7, 0); +lean_ctor_set(x_7, 0, x_17); +return x_7; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_7, 0); +x_19 = lean_ctor_get(x_7, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_7); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_18); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_10); +x_13 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__4(x_1, x_2, x_3, x_6, x_4, x_8, x_9, x_10, x_11, x_12); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(x_5, x_8, x_9, x_10, x_11, x_14); +lean_dec(x_10); +return x_15; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_profiler; +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("[", 1); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("s] ", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; uint8_t x_17; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1; +x_17 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_6, x_16); +lean_dec(x_6); +if (x_17 == 0) +{ +if (x_7 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_10, x_18, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_19; +} +else +{ +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; +x_20 = lean_float_to_string(x_8); +x_21 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3; +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_10); +x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_box(0); +x_31 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_29, x_30, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +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; +x_32 = lean_float_to_string(x_8); +x_33 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_33, 0, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3; +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_10); +x_40 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_box(0); +x_43 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_41, x_42, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_43; +} +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 53); +return x_1; +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_10); +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_4); +x_17 = lean_apply_6(x_8, x_4, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +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_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_23; +} +} +} +static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_trace_profiler; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_dec(x_8); +x_14 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(x_12, x_13); +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 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1), 6, 1); +lean_closure_set(x_17, 0, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_18 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_17, x_9, x_10, x_11, x_12, x_16); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_68; uint8_t x_69; +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 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_68 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1; +x_69 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_4, x_68); +if (x_69 == 0) +{ +uint8_t x_70; +x_70 = 0; +x_23 = x_70; +goto block_67; +} +else +{ +double x_71; double x_72; uint8_t x_73; +x_71 = l_Lean_trace_profiler_threshold_getSecs(x_4); +x_72 = lean_unbox_float(x_22); +x_73 = lean_float_decLt(x_71, x_72); +x_23 = x_73; +goto block_67; +} +block_67: +{ +if (x_6 == 0) +{ +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_dec(x_22); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_24 = lean_st_ref_take(x_12, x_20); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_25, 3); +x_29 = l_Lean_PersistentArray_append___rarg(x_15, x_28); +lean_ctor_set(x_25, 3, x_29); +x_30 = lean_st_ref_set(x_12, x_25, x_26); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(x_21, x_9, x_10, x_11, x_12, x_31); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_21); +if (lean_obj_tag(x_32) == 0) +{ +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +return x_32; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_32, 0); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_32); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_32); +if (x_37 == 0) +{ +return x_32; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_32, 0); +x_39 = lean_ctor_get(x_32, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_32); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +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; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_41 = lean_ctor_get(x_25, 0); +x_42 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_25, 2); +x_44 = lean_ctor_get(x_25, 3); +x_45 = lean_ctor_get(x_25, 4); +x_46 = lean_ctor_get(x_25, 5); +x_47 = lean_ctor_get(x_25, 6); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_25); +x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_44); +x_49 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_49, 0, x_41); +lean_ctor_set(x_49, 1, x_42); +lean_ctor_set(x_49, 2, x_43); +lean_ctor_set(x_49, 3, x_48); +lean_ctor_set(x_49, 4, x_45); +lean_ctor_set(x_49, 5, x_46); +lean_ctor_set(x_49, 6, x_47); +x_50 = lean_st_ref_set(x_12, x_49, x_26); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(x_21, x_9, x_10, x_11, x_12, x_51); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_21); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; +} else { + lean_dec_ref(x_52); + x_55 = lean_box(0); +} +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_55; +} +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; +} else { + lean_dec_ref(x_52); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +} +else +{ +lean_object* x_61; double x_62; lean_object* x_63; +x_61 = lean_box(0); +x_62 = lean_unbox_float(x_22); +lean_dec(x_22); +x_63 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(x_15, x_2, x_3, x_21, x_4, x_23, x_62, x_5, lean_box(0), x_61, x_9, x_10, x_11, x_12, x_20); +return x_63; +} +} +else +{ +lean_object* x_64; double x_65; lean_object* x_66; +x_64 = lean_box(0); +x_65 = lean_unbox_float(x_22); +lean_dec(x_22); +x_66 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(x_15, x_2, x_3, x_21, x_4, x_23, x_65, x_5, lean_box(0), x_64, x_9, x_10, x_11, x_12, x_20); +return x_66; +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_18); +if (x_74 == 0) +{ +return x_18; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_18, 0); +x_76 = lean_ctor_get(x_18, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_18); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_7, 2); +lean_inc(x_10); +lean_inc(x_1); +x_11 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1; +x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_10, x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_2); +lean_dec(x_1); +x_17 = lean_apply_5(x_3, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) +{ +return x_17; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_17); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; uint8_t x_27; lean_object* x_28; +x_26 = lean_box(0); +x_27 = lean_unbox(x_12); +lean_dec(x_12); +x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5(x_3, x_1, x_4, x_10, x_2, x_27, lean_box(0), x_26, x_5, x_6, x_7, x_8, x_14); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_dec(x_11); +x_30 = lean_box(0); +x_31 = lean_unbox(x_12); +lean_dec(x_12); +x_32 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5(x_3, x_1, x_4, x_10, x_2, x_31, lean_box(0), x_30, x_5, x_6, x_7, x_8, x_29); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_10 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_10, 0, x_13); +return x_10; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_10); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_10); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_10, 1); +x_21 = l_Lean_Exception_isRuntime(x_19); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +lean_free_object(x_10); +lean_dec(x_19); +x_22 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_20); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +lean_dec(x_24); +x_25 = lean_box(0); +lean_ctor_set(x_22, 0, x_25); +return x_22; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +lean_dec(x_22); +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +return x_28; +} +} +else +{ +uint8_t x_29; +x_29 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_29 == 0) +{ +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +else +{ +lean_object* x_30; uint8_t x_31; +lean_free_object(x_10); +lean_dec(x_19); +x_30 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_20); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_30, 0); +lean_dec(x_32); +x_33 = lean_box(0); +lean_ctor_set(x_30, 0, x_33); +return x_30; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_30, 1); +lean_inc(x_34); +lean_dec(x_30); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +return x_36; +} +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_10, 0); +x_38 = lean_ctor_get(x_10, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_10); +x_39 = l_Lean_Exception_isRuntime(x_37); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_37); +x_40 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_38); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + x_42 = x_40; +} else { + lean_dec_ref(x_40); + x_42 = lean_box(0); +} +x_43 = lean_box(0); +if (lean_is_scalar(x_42)) { + x_44 = lean_alloc_ctor(0, 2, 0); +} else { + x_44 = x_42; +} +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_41); +return x_44; +} +else +{ +uint8_t x_45; +x_45 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_45 == 0) +{ +lean_object* x_46; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_37); +lean_ctor_set(x_46, 1, x_38); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_37); +x_47 = l_Lean_Meta_SavedState_restore(x_8, x_2, x_3, x_4, x_5, x_38); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_8); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_49 = x_47; +} else { + lean_dec_ref(x_47); + x_49 = lean_box(0); +} +x_50 = lean_box(0); +if (lean_is_scalar(x_49)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_49; +} +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_48); +return x_51; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_io_mono_nanos_now(x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_io_mono_nanos_now(x_12); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; double x_19; double x_20; double x_21; lean_object* x_22; lean_object* x_23; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_nat_sub(x_15, x_8); +lean_dec(x_8); +lean_dec(x_15); +x_17 = 0; +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Float_ofScientific(x_16, x_17, x_18); +lean_dec(x_16); +x_20 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1; +x_21 = lean_float_div(x_19, x_20); +x_22 = lean_box_float(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_11); +lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_13, 0, x_23); +return x_13; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; double x_29; double x_30; double x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +x_26 = lean_nat_sub(x_24, x_8); +lean_dec(x_8); +lean_dec(x_24); +x_27 = 0; +x_28 = lean_unsigned_to_nat(0u); +x_29 = l_Float_ofScientific(x_26, x_27, x_28); +lean_dec(x_26); +x_30 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1; +x_31 = lean_float_div(x_29, x_30); +x_32 = lean_box_float(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_11); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_25); +return x_34; +} +} +else +{ +uint8_t x_35; +lean_dec(x_8); +x_35 = !lean_is_exclusive(x_10); +if (x_35 == 0) +{ +return x_10; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_10, 0); +x_37 = lean_ctor_get(x_10, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_10); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_10); +x_13 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__4(x_1, x_2, x_3, x_6, x_4, x_8, x_9, x_10, x_11, x_12); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(x_5, x_8, x_9, x_10, x_11, x_14); +lean_dec(x_10); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; uint8_t x_17; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1; +x_17 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_6, x_16); +lean_dec(x_6); +if (x_17 == 0) +{ +if (x_7 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(x_1, x_2, x_3, x_4, x_5, x_10, x_18, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_19; +} +else +{ +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; +x_20 = lean_float_to_string(x_8); +x_21 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3; +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_22); +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_10); +x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_box(0); +x_31 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(x_1, x_2, x_3, x_4, x_5, x_29, x_30, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +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; +x_32 = lean_float_to_string(x_8); +x_33 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_33, 0, x_32); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3; +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_10); +x_40 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_box(0); +x_43 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(x_1, x_2, x_3, x_4, x_5, x_41, x_42, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_12); +return x_43; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_10); +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_4); +x_17 = lean_apply_6(x_8, x_4, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +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_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__2(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__2(x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_7, lean_box(0), x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_4); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_dec(x_8); +x_14 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(x_12, x_13); +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 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1), 6, 1); +lean_closure_set(x_17, 0, x_1); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_18 = l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__8(x_17, x_9, x_10, x_11, x_12, x_16); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_68; uint8_t x_69; +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 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_68 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1; +x_69 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_4, x_68); +if (x_69 == 0) +{ +uint8_t x_70; +x_70 = 0; +x_23 = x_70; +goto block_67; +} +else +{ +double x_71; double x_72; uint8_t x_73; +x_71 = l_Lean_trace_profiler_threshold_getSecs(x_4); +x_72 = lean_unbox_float(x_22); +x_73 = lean_float_decLt(x_71, x_72); +x_23 = x_73; +goto block_67; +} +block_67: +{ +if (x_6 == 0) +{ +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_dec(x_22); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_24 = lean_st_ref_take(x_12, x_20); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_25, 3); +x_29 = l_Lean_PersistentArray_append___rarg(x_15, x_28); +lean_ctor_set(x_25, 3, x_29); +x_30 = lean_st_ref_set(x_12, x_25, x_26); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(x_21, x_9, x_10, x_11, x_12, x_31); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_21); +if (lean_obj_tag(x_32) == 0) +{ +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +return x_32; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_32, 0); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_32); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_32); +if (x_37 == 0) +{ +return x_32; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_32, 0); +x_39 = lean_ctor_get(x_32, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_32); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +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; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_41 = lean_ctor_get(x_25, 0); +x_42 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_25, 2); +x_44 = lean_ctor_get(x_25, 3); +x_45 = lean_ctor_get(x_25, 4); +x_46 = lean_ctor_get(x_25, 5); +x_47 = lean_ctor_get(x_25, 6); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_25); +x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_44); +x_49 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_49, 0, x_41); +lean_ctor_set(x_49, 1, x_42); +lean_ctor_set(x_49, 2, x_43); +lean_ctor_set(x_49, 3, x_48); +lean_ctor_set(x_49, 4, x_45); +lean_ctor_set(x_49, 5, x_46); +lean_ctor_set(x_49, 6, x_47); +x_50 = lean_st_ref_set(x_12, x_49, x_26); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(x_21, x_9, x_10, x_11, x_12, x_51); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_21); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; +} else { + lean_dec_ref(x_52); + x_55 = lean_box(0); +} +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_55; +} +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; +} else { + lean_dec_ref(x_52); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +} +else +{ +lean_object* x_61; double x_62; lean_object* x_63; +x_61 = lean_box(0); +x_62 = lean_unbox_float(x_22); +lean_dec(x_22); +x_63 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3(x_15, x_2, x_3, x_21, x_4, x_23, x_62, x_5, lean_box(0), x_61, x_9, x_10, x_11, x_12, x_20); +return x_63; +} +} +else +{ +lean_object* x_64; double x_65; lean_object* x_66; +x_64 = lean_box(0); +x_65 = lean_unbox_float(x_22); +lean_dec(x_22); +x_66 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3(x_15, x_2, x_3, x_21, x_4, x_23, x_65, x_5, lean_box(0), x_64, x_9, x_10, x_11, x_12, x_20); +return x_66; +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_15); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_74 = !lean_is_exclusive(x_18); +if (x_74 == 0) +{ +return x_18; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_18, 0); +x_76 = lean_ctor_get(x_18, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_18); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_7, 2); +lean_inc(x_10); +lean_inc(x_1); +x_11 = l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_unbox(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1; +x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_10, x_15); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_2); +lean_dec(x_1); +x_17 = lean_apply_5(x_3, x_5, x_6, x_7, x_8, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) +{ +return x_17; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_17); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; uint8_t x_27; lean_object* x_28; +x_26 = lean_box(0); +x_27 = lean_unbox(x_12); +lean_dec(x_12); +x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4(x_3, x_1, x_4, x_10, x_2, x_27, lean_box(0), x_26, x_5, x_6, x_7, x_8, x_14); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_dec(x_11); +x_30 = lean_box(0); +x_31 = lean_unbox(x_12); +lean_dec(x_12); +x_32 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4(x_3, x_1, x_4, x_10, x_2, x_31, lean_box(0), x_30, x_5, x_6, x_7, x_8, x_29); +return x_32; +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" success!", 9); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_7 = l_Lean_exceptEmoji___rarg(x_1); +x_8 = l_Lean_stringToMessageData(x_7); +lean_dec(x_7); +x_9 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_10 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +x_11 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2; +x_12 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_6); +return x_13; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" working on: ", 13); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___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) { +_start: +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_8, 0, x_1); +x_9 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_8, x_3, x_4, x_5, x_6, x_7); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +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; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_exceptEmoji___rarg(x_2); +x_13 = l_Lean_stringToMessageData(x_12); +lean_dec(x_12); +x_14 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_11); +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_14); +lean_ctor_set(x_9, 0, x_19); +return x_9; +} +else +{ +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; +x_20 = lean_ctor_get(x_9, 0); +x_21 = lean_ctor_get(x_9, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_9); +x_22 = l_Lean_exceptEmoji___rarg(x_2); +x_23 = l_Lean_stringToMessageData(x_22); +lean_dec(x_22); +x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2; +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_20); +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_24); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_21); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = l_List_appendTR___rarg(x_8, x_1); +x_15 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_15, 0, x_2); +lean_closure_set(x_15, 1, x_3); +lean_closure_set(x_15, 2, x_4); +lean_closure_set(x_15, 3, x_5); +lean_closure_set(x_15, 4, x_6); +lean_closure_set(x_15, 5, x_14); +lean_closure_set(x_15, 6, x_7); +x_16 = l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(x_15, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("⏭️ deemed acceptable, returning as subgoal", 46); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("⏬ discharger generated new subgoals", 37); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("⏸️ suspending search and returning as subgoal", 49); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7(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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_15 = lean_apply_6(x_1, x_2, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_unbox(x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +lean_inc(x_9); +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_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__3), 13, 7); +lean_closure_set(x_19, 0, x_3); +lean_closure_set(x_19, 1, x_4); +lean_closure_set(x_19, 2, x_5); +lean_closure_set(x_19, 3, x_6); +lean_closure_set(x_19, 4, x_7); +lean_closure_set(x_19, 5, x_8); +lean_closure_set(x_19, 6, x_9); +lean_inc(x_6); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_20 = lean_apply_7(x_6, x_2, x_19, x_10, x_11, x_12, x_13, x_18); +if (lean_obj_tag(x_20) == 0) +{ +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_20; +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get(x_20, 1); +x_24 = l_Lean_Exception_isRuntime(x_22); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_free_object(x_20); +lean_dec(x_22); +x_25 = lean_ctor_get(x_4, 3); +lean_inc(x_25); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_26 = lean_apply_6(x_25, x_2, x_10, x_11, x_12, x_13, x_23); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_8, x_29); +lean_dec(x_8); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_2); +lean_ctor_set(x_31, 1, x_9); +lean_inc(x_5); +x_32 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_32, 0, x_4); +lean_closure_set(x_32, 1, x_5); +lean_closure_set(x_32, 2, x_6); +lean_closure_set(x_32, 3, x_7); +lean_closure_set(x_32, 4, x_30); +lean_closure_set(x_32, 5, x_3); +lean_closure_set(x_32, 6, x_31); +x_33 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; +x_34 = 1; +x_35 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_33, x_32, x_34, x_10, x_11, x_12, x_13, x_28); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; +lean_dec(x_2); +x_36 = lean_ctor_get(x_26, 1); +lean_inc(x_36); +lean_dec(x_26); +x_37 = lean_ctor_get(x_27, 0); +lean_inc(x_37); +lean_dec(x_27); +x_38 = l_List_appendTR___rarg(x_37, x_3); +lean_inc(x_5); +x_39 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_39, 0, x_4); +lean_closure_set(x_39, 1, x_5); +lean_closure_set(x_39, 2, x_6); +lean_closure_set(x_39, 3, x_7); +lean_closure_set(x_39, 4, x_8); +lean_closure_set(x_39, 5, x_38); +lean_closure_set(x_39, 6, x_9); +x_40 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2; +x_41 = 1; +x_42 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_40, x_39, x_41, x_10, x_11, x_12, x_13, x_36); +return x_42; +} +} +else +{ +uint8_t x_43; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_43 = !lean_is_exclusive(x_26); +if (x_43 == 0) +{ +return x_26; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_26, 0); +x_45 = lean_ctor_get(x_26, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_26); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +x_47 = lean_ctor_get_uint8(x_12, sizeof(void*)*11); +if (x_47 == 0) +{ +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_20; +} +else +{ +lean_object* x_48; lean_object* x_49; +lean_free_object(x_20); +lean_dec(x_22); +x_48 = lean_ctor_get(x_4, 3); +lean_inc(x_48); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_49 = lean_apply_6(x_48, x_2, x_10, x_11, x_12, x_13, x_23); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec(x_49); +x_52 = lean_unsigned_to_nat(1u); +x_53 = lean_nat_add(x_8, x_52); +lean_dec(x_8); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_2); +lean_ctor_set(x_54, 1, x_9); +lean_inc(x_5); +x_55 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_55, 0, x_4); +lean_closure_set(x_55, 1, x_5); +lean_closure_set(x_55, 2, x_6); +lean_closure_set(x_55, 3, x_7); +lean_closure_set(x_55, 4, x_53); +lean_closure_set(x_55, 5, x_3); +lean_closure_set(x_55, 6, x_54); +x_56 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; +x_57 = 1; +x_58 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_56, x_55, x_57, x_10, x_11, x_12, x_13, x_51); +return x_58; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; +lean_dec(x_2); +x_59 = lean_ctor_get(x_49, 1); +lean_inc(x_59); +lean_dec(x_49); +x_60 = lean_ctor_get(x_50, 0); +lean_inc(x_60); +lean_dec(x_50); +x_61 = l_List_appendTR___rarg(x_60, x_3); +lean_inc(x_5); +x_62 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_62, 0, x_4); +lean_closure_set(x_62, 1, x_5); +lean_closure_set(x_62, 2, x_6); +lean_closure_set(x_62, 3, x_7); +lean_closure_set(x_62, 4, x_8); +lean_closure_set(x_62, 5, x_61); +lean_closure_set(x_62, 6, x_9); +x_63 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2; +x_64 = 1; +x_65 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_63, x_62, x_64, x_10, x_11, x_12, x_13, x_59); +return x_65; +} +} +else +{ +uint8_t x_66; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_66 = !lean_is_exclusive(x_49); +if (x_66 == 0) +{ +return x_49; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_49, 0); +x_68 = lean_ctor_get(x_49, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_49); +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 +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; +x_70 = lean_ctor_get(x_20, 0); +x_71 = lean_ctor_get(x_20, 1); +lean_inc(x_71); +lean_inc(x_70); +lean_dec(x_20); +x_72 = l_Lean_Exception_isRuntime(x_70); +if (x_72 == 0) +{ +lean_object* x_73; lean_object* x_74; +lean_dec(x_70); +x_73 = lean_ctor_get(x_4, 3); +lean_inc(x_73); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_74 = lean_apply_6(x_73, x_2, x_10, x_11, x_12, x_13, x_71); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +if (lean_obj_tag(x_75) == 0) +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; +x_76 = lean_ctor_get(x_74, 1); +lean_inc(x_76); +lean_dec(x_74); +x_77 = lean_unsigned_to_nat(1u); +x_78 = lean_nat_add(x_8, x_77); +lean_dec(x_8); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_2); +lean_ctor_set(x_79, 1, x_9); +lean_inc(x_5); +x_80 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_80, 0, x_4); +lean_closure_set(x_80, 1, x_5); +lean_closure_set(x_80, 2, x_6); +lean_closure_set(x_80, 3, x_7); +lean_closure_set(x_80, 4, x_78); +lean_closure_set(x_80, 5, x_3); +lean_closure_set(x_80, 6, x_79); +x_81 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; +x_82 = 1; +x_83 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_81, x_80, x_82, x_10, x_11, x_12, x_13, x_76); +return x_83; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; +lean_dec(x_2); +x_84 = lean_ctor_get(x_74, 1); +lean_inc(x_84); +lean_dec(x_74); +x_85 = lean_ctor_get(x_75, 0); +lean_inc(x_85); +lean_dec(x_75); +x_86 = l_List_appendTR___rarg(x_85, x_3); +lean_inc(x_5); +x_87 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_87, 0, x_4); +lean_closure_set(x_87, 1, x_5); +lean_closure_set(x_87, 2, x_6); +lean_closure_set(x_87, 3, x_7); +lean_closure_set(x_87, 4, x_8); +lean_closure_set(x_87, 5, x_86); +lean_closure_set(x_87, 6, x_9); +x_88 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2; +x_89 = 1; +x_90 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_88, x_87, x_89, x_10, x_11, x_12, x_13, x_84); +return x_90; +} +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_91 = lean_ctor_get(x_74, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_74, 1); +lean_inc(x_92); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + lean_ctor_release(x_74, 1); + x_93 = x_74; +} else { + lean_dec_ref(x_74); + x_93 = lean_box(0); +} +if (lean_is_scalar(x_93)) { + x_94 = lean_alloc_ctor(1, 2, 0); +} else { + x_94 = x_93; +} +lean_ctor_set(x_94, 0, x_91); +lean_ctor_set(x_94, 1, x_92); +return x_94; +} +} +else +{ +uint8_t x_95; +x_95 = lean_ctor_get_uint8(x_12, sizeof(void*)*11); +if (x_95 == 0) +{ +lean_object* x_96; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_70); +lean_ctor_set(x_96, 1, x_71); +return x_96; +} +else +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_70); +x_97 = lean_ctor_get(x_4, 3); +lean_inc(x_97); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_2); +x_98 = lean_apply_6(x_97, x_2, x_10, x_11, x_12, x_13, x_71); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec(x_98); +x_101 = lean_unsigned_to_nat(1u); +x_102 = lean_nat_add(x_8, x_101); +lean_dec(x_8); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_2); +lean_ctor_set(x_103, 1, x_9); +lean_inc(x_5); +x_104 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_104, 0, x_4); +lean_closure_set(x_104, 1, x_5); +lean_closure_set(x_104, 2, x_6); +lean_closure_set(x_104, 3, x_7); +lean_closure_set(x_104, 4, x_102); +lean_closure_set(x_104, 5, x_3); +lean_closure_set(x_104, 6, x_103); +x_105 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; +x_106 = 1; +x_107 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_105, x_104, x_106, x_10, x_11, x_12, x_13, x_100); +return x_107; +} +else +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; +lean_dec(x_2); +x_108 = lean_ctor_get(x_98, 1); +lean_inc(x_108); +lean_dec(x_98); +x_109 = lean_ctor_get(x_99, 0); +lean_inc(x_109); +lean_dec(x_99); +x_110 = l_List_appendTR___rarg(x_109, x_3); +lean_inc(x_5); +x_111 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_111, 0, x_4); +lean_closure_set(x_111, 1, x_5); +lean_closure_set(x_111, 2, x_6); +lean_closure_set(x_111, 3, x_7); +lean_closure_set(x_111, 4, x_8); +lean_closure_set(x_111, 5, x_110); +lean_closure_set(x_111, 6, x_9); +x_112 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2; +x_113 = 1; +x_114 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_112, x_111, x_113, x_10, x_11, x_12, x_13, x_108); +return x_114; +} +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_115 = lean_ctor_get(x_98, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_98, 1); +lean_inc(x_116); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_117 = x_98; +} else { + lean_dec_ref(x_98); + x_117 = lean_box(0); +} +if (lean_is_scalar(x_117)) { + x_118 = lean_alloc_ctor(1, 2, 0); +} else { + x_118 = x_117; +} +lean_ctor_set(x_118, 0, x_115); +lean_ctor_set(x_118, 1, x_116); +return x_118; +} +} +} +} +} +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; +x_119 = lean_ctor_get(x_15, 1); +lean_inc(x_119); +lean_dec(x_15); +x_120 = lean_unsigned_to_nat(1u); +x_121 = lean_nat_add(x_8, x_120); +lean_dec(x_8); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_2); +lean_ctor_set(x_122, 1, x_9); +lean_inc(x_5); +x_123 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_123, 0, x_4); +lean_closure_set(x_123, 1, x_5); +lean_closure_set(x_123, 2, x_6); +lean_closure_set(x_123, 3, x_7); +lean_closure_set(x_123, 4, x_121); +lean_closure_set(x_123, 5, x_3); +lean_closure_set(x_123, 6, x_122); +x_124 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3; +x_125 = 1; +x_126 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_124, x_123, x_125, x_10, x_11, x_12, x_13, x_119); +return x_126; +} +} +else +{ +uint8_t x_127; +lean_dec(x_13); +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_127 = !lean_is_exclusive(x_15); +if (x_127 == 0) +{ +return x_15; +} +else +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_128 = lean_ctor_get(x_15, 0); +x_129 = lean_ctor_get(x_15, 1); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_15); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +return x_130; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" discarding already assigned goal ", 34); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; 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; +x_8 = l_Lean_exceptEmoji___rarg(x_2); +x_9 = l_Lean_stringToMessageData(x_8); +lean_dec(x_8); +x_10 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_14, 0, x_1); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_10); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_7); +return x_17; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(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_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +if (lean_obj_tag(x_8) == 0) +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_14 = l_List_reverse___rarg(x_2); +x_15 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg___boxed), 6, 1); +lean_closure_set(x_15, 0, x_14); +x_16 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1; +x_17 = 1; +x_18 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_3, x_16, x_15, x_17, x_9, x_10, x_11, x_12, x_13); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_1, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_1, 1); +lean_inc(x_20); +lean_dec(x_1); +lean_inc(x_19); +x_21 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_19, x_9, x_10, x_11, x_12, x_13); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_unbox(x_22); +lean_dec(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +lean_inc(x_19); +x_25 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___boxed), 7, 1); +lean_closure_set(x_25, 0, x_19); +x_26 = lean_ctor_get(x_4, 2); +lean_inc(x_26); +lean_inc(x_3); +x_27 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7), 14, 9); +lean_closure_set(x_27, 0, x_26); +lean_closure_set(x_27, 1, x_19); +lean_closure_set(x_27, 2, x_20); +lean_closure_set(x_27, 3, x_4); +lean_closure_set(x_27, 4, x_3); +lean_closure_set(x_27, 5, x_5); +lean_closure_set(x_27, 6, x_6); +lean_closure_set(x_27, 7, x_7); +lean_closure_set(x_27, 8, x_2); +x_28 = 1; +x_29 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_3, x_25, x_27, x_28, x_9, x_10, x_11, x_12, x_24); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; +x_30 = lean_ctor_get(x_21, 1); +lean_inc(x_30); +lean_dec(x_21); +x_31 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___boxed), 7, 1); +lean_closure_set(x_31, 0, x_19); +x_32 = lean_unsigned_to_nat(1u); +x_33 = lean_nat_add(x_7, x_32); +lean_dec(x_7); +lean_inc(x_3); +x_34 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run), 12, 7); +lean_closure_set(x_34, 0, x_4); +lean_closure_set(x_34, 1, x_3); +lean_closure_set(x_34, 2, x_5); +lean_closure_set(x_34, 3, x_6); +lean_closure_set(x_34, 4, x_33); +lean_closure_set(x_34, 5, x_20); +lean_closure_set(x_34, 6, x_2); +x_35 = 1; +x_36 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_3, x_31, x_34, x_35, x_9, x_10, x_11, x_12, x_30); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; +lean_dec(x_1); +x_37 = lean_ctor_get(x_8, 0); +lean_inc(x_37); +lean_dec(x_8); +x_38 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run(x_4, x_3, x_5, x_6, x_7, x_37, x_2, x_9, x_10, x_11, x_12, x_13); +return x_38; +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" BacktrackConfig.proc failed: ", 30); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; 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; +x_8 = l_Lean_exceptEmoji___rarg(x_2); +x_9 = l_Lean_stringToMessageData(x_8); +lean_dec(x_8); +x_10 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_Exception_toMessageData(x_1); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_10); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_7); +return x_17; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("backtrack exceeded the recursion limit", 38); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run(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_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_5, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_sub(x_5, x_15); +lean_dec(x_5); +x_17 = lean_ctor_get(x_1, 1); +lean_inc(x_17); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_6); +lean_inc(x_4); +x_18 = lean_apply_7(x_17, x_4, x_6, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +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___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(x_6, x_7, x_2, x_1, x_3, x_4, x_16, x_19, x_8, x_9, x_10, x_11, x_20); +return x_21; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_18); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_18, 0); +x_24 = lean_ctor_get(x_18, 1); +x_25 = l_Lean_Exception_isRuntime(x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; +lean_free_object(x_18); +lean_inc(x_23); +x_26 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___boxed), 7, 1); +lean_closure_set(x_26, 0, x_23); +x_27 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___boxed), 6, 1); +lean_closure_set(x_27, 0, x_23); +x_28 = 1; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_29 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_2, x_26, x_27, x_28, x_8, x_9, x_10, x_11, x_24); +if (lean_obj_tag(x_29) == 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); +x_32 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(x_6, x_7, x_2, x_1, x_3, x_4, x_16, x_30, x_8, x_9, x_10, x_11, x_31); +return x_32; +} +else +{ +uint8_t x_33; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_33 = !lean_is_exclusive(x_29); +if (x_33 == 0) +{ +return x_29; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_29, 0); +x_35 = lean_ctor_get(x_29, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_29); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +uint8_t x_37; +x_37 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_37 == 0) +{ +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_18; +} +else +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_free_object(x_18); +lean_inc(x_23); +x_38 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___boxed), 7, 1); +lean_closure_set(x_38, 0, x_23); +x_39 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___boxed), 6, 1); +lean_closure_set(x_39, 0, x_23); +x_40 = 1; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_41 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_2, x_38, x_39, x_40, x_8, x_9, x_10, x_11, x_24); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +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); +x_44 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(x_6, x_7, x_2, x_1, x_3, x_4, x_16, x_42, x_8, x_9, x_10, x_11, x_43); +return x_44; +} +else +{ +uint8_t x_45; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_45 = !lean_is_exclusive(x_41); +if (x_45 == 0) +{ +return x_41; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_41, 0); +x_47 = lean_ctor_get(x_41, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_41); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} +} +} +else +{ +lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_49 = lean_ctor_get(x_18, 0); +x_50 = lean_ctor_get(x_18, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_18); +x_51 = l_Lean_Exception_isRuntime(x_49); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; +lean_inc(x_49); +x_52 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___boxed), 7, 1); +lean_closure_set(x_52, 0, x_49); +x_53 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___boxed), 6, 1); +lean_closure_set(x_53, 0, x_49); +x_54 = 1; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_55 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_2, x_52, x_53, x_54, x_8, x_9, x_10, x_11, x_50); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +lean_dec(x_55); +x_58 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(x_6, x_7, x_2, x_1, x_3, x_4, x_16, x_56, x_8, x_9, x_10, x_11, x_57); +return x_58; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_59 = lean_ctor_get(x_55, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_55, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_61 = x_55; +} else { + lean_dec_ref(x_55); + x_61 = lean_box(0); +} +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); +} else { + x_62 = x_61; +} +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; +} +} +else +{ +uint8_t x_63; +x_63 = lean_ctor_get_uint8(x_10, sizeof(void*)*11); +if (x_63 == 0) +{ +lean_object* x_64; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_49); +lean_ctor_set(x_64, 1, x_50); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; +lean_inc(x_49); +x_65 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___boxed), 7, 1); +lean_closure_set(x_65, 0, x_49); +x_66 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___boxed), 6, 1); +lean_closure_set(x_66, 0, x_49); +x_67 = 1; +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_2); +x_68 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_2, x_65, x_66, x_67, x_8, x_9, x_10, x_11, x_50); +if (lean_obj_tag(x_68) == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +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 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9(x_6, x_7, x_2, x_1, x_3, x_4, x_16, x_69, x_8, x_9, x_10, x_11, x_70); +return x_71; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_72 = lean_ctor_get(x_68, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_68, 1); +lean_inc(x_73); +if (lean_is_exclusive(x_68)) { + lean_ctor_release(x_68, 0); + lean_ctor_release(x_68, 1); + x_74 = x_68; +} else { + lean_dec_ref(x_68); + x_74 = lean_box(0); +} +if (lean_is_scalar(x_74)) { + x_75 = lean_alloc_ctor(1, 2, 0); +} else { + x_75 = x_74; +} +lean_ctor_set(x_75, 0, x_72); +lean_ctor_set(x_75, 1, x_73); +return x_75; +} +} +} +} +} +} +else +{ +lean_object* x_76; lean_object* x_77; +lean_dec(x_7); +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_76 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2; +x_77 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_76, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +return x_77; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5___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) { +_start: +{ +lean_object* x_7; +x_7 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__5(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_4); +lean_dec(x_4); +x_14 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_4); +lean_dec(x_4); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); +lean_dec(x_8); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_1, x_2, x_3, x_16, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_5); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_3); +lean_dec(x_3); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); +lean_dec(x_7); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(x_1, x_2, x_16, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); +lean_dec(x_3); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5(x_1, x_2, x_14, x_4, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_4); +lean_dec(x_4); +x_11 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9___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) { +_start: +{ +lean_object* x_7; +x_7 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__9(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_4); +lean_dec(x_4); +x_14 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__1(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_4); +lean_dec(x_4); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); +lean_dec(x_8); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__2(x_1, x_2, x_3, x_16, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_5); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; double x_18; lean_object* x_19; +x_16 = lean_unbox(x_3); +lean_dec(x_3); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); +lean_dec(x_7); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__3(x_1, x_2, x_16, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); +lean_dec(x_3); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___lambda__4(x_1, x_2, x_14, x_4, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_4); +lean_dec(x_4); +x_11 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_List_partitionM_go___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__1(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: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_10 = lean_array_to_list(lean_box(0), x_3); +x_11 = lean_array_to_list(lean_box(0), x_4); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_9); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_2, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_2, 1); +lean_inc(x_15); +lean_dec(x_2); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_14); +lean_inc(x_1); +x_16 = l_Lean_MVarId_isIndependentOf(x_1, x_14, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_unbox(x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_array_push(x_4, x_14); +x_2 = x_15; +x_4 = x_20; +x_9 = x_19; +goto _start; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_16, 1); +lean_inc(x_22); +lean_dec(x_16); +x_23 = lean_array_push(x_3, x_14); +x_2 = x_15; +x_3 = x_23; +x_9 = x_22; +goto _start; +} +} +else +{ +uint8_t x_25; +lean_dec(x_15); +lean_dec(x_14); +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_1); +x_25 = !lean_is_exclusive(x_16); +if (x_25 == 0) +{ +return x_16; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_16, 0); +x_27 = lean_ctor_get(x_16, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_16); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__4(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) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_9 = l_List_reverse___rarg(x_3); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_2); +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; +x_12 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 1); +x_14 = l_Lean_Meta_saveState___rarg(x_5, x_6, x_7, x_8); +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); +lean_inc(x_1); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_12); +x_17 = lean_apply_6(x_1, x_12, x_4, x_5, x_6, x_7, x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_12); +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 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_2, 1, x_3); +lean_ctor_set(x_2, 0, x_20); +{ +lean_object* _tmp_1 = x_13; +lean_object* _tmp_2 = x_2; +lean_object* _tmp_7 = x_19; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +x_25 = l_Lean_Exception_isRuntime(x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_free_object(x_17); +lean_dec(x_23); +x_26 = l_Lean_Meta_SavedState_restore(x_15, x_4, x_5, x_6, x_7, x_24); +lean_dec(x_15); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +lean_dec(x_26); +x_28 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_28, 0, x_12); +lean_ctor_set(x_2, 1, x_3); +lean_ctor_set(x_2, 0, x_28); +{ +lean_object* _tmp_1 = x_13; +lean_object* _tmp_2 = x_2; +lean_object* _tmp_7 = x_27; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +uint8_t x_30; +x_30 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_30 == 0) +{ +lean_dec(x_15); +lean_free_object(x_2); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_17; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_free_object(x_17); +lean_dec(x_23); +x_31 = l_Lean_Meta_SavedState_restore(x_15, x_4, x_5, x_6, x_7, x_24); +lean_dec(x_15); +x_32 = lean_ctor_get(x_31, 1); +lean_inc(x_32); +lean_dec(x_31); +x_33 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_33, 0, x_12); +lean_ctor_set(x_2, 1, x_3); +lean_ctor_set(x_2, 0, x_33); +{ +lean_object* _tmp_1 = x_13; +lean_object* _tmp_2 = x_2; +lean_object* _tmp_7 = x_32; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_8 = _tmp_7; +} +goto _start; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_17, 0); +x_36 = lean_ctor_get(x_17, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_17); +x_37 = l_Lean_Exception_isRuntime(x_35); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_dec(x_35); +x_38 = l_Lean_Meta_SavedState_restore(x_15, x_4, x_5, x_6, x_7, x_36); +lean_dec(x_15); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_40, 0, x_12); +lean_ctor_set(x_2, 1, x_3); +lean_ctor_set(x_2, 0, x_40); +{ +lean_object* _tmp_1 = x_13; +lean_object* _tmp_2 = x_2; +lean_object* _tmp_7 = x_39; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_8 = _tmp_7; +} +goto _start; +} +else +{ +uint8_t x_42; +x_42 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_42 == 0) +{ +lean_object* x_43; +lean_dec(x_15); +lean_free_object(x_2); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_35); +lean_ctor_set(x_43, 1, x_36); +return x_43; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_35); +x_44 = l_Lean_Meta_SavedState_restore(x_15, x_4, x_5, x_6, x_7, x_36); +lean_dec(x_15); +x_45 = lean_ctor_get(x_44, 1); +lean_inc(x_45); +lean_dec(x_44); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_12); +lean_ctor_set(x_2, 1, x_3); +lean_ctor_set(x_2, 0, x_46); +{ +lean_object* _tmp_1 = x_13; +lean_object* _tmp_2 = x_2; +lean_object* _tmp_7 = x_45; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_8 = _tmp_7; +} +goto _start; +} +} +} +} +} +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; +x_48 = lean_ctor_get(x_2, 0); +x_49 = lean_ctor_get(x_2, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_2); +x_50 = l_Lean_Meta_saveState___rarg(x_5, x_6, x_7, x_8); +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +lean_inc(x_1); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_48); +x_53 = lean_apply_6(x_1, x_48, x_4, x_5, x_6, x_7, x_52); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec(x_51); +lean_dec(x_48); +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_54); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_3); +x_2 = x_49; +x_3 = x_57; +x_8 = x_55; +goto _start; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_59 = lean_ctor_get(x_53, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_53, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_53)) { + lean_ctor_release(x_53, 0); + lean_ctor_release(x_53, 1); + x_61 = x_53; +} else { + lean_dec_ref(x_53); + x_61 = lean_box(0); +} +x_62 = l_Lean_Exception_isRuntime(x_59); +if (x_62 == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_61); +lean_dec(x_59); +x_63 = l_Lean_Meta_SavedState_restore(x_51, x_4, x_5, x_6, x_7, x_60); +lean_dec(x_51); +x_64 = lean_ctor_get(x_63, 1); +lean_inc(x_64); +lean_dec(x_63); +x_65 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_65, 0, x_48); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_3); +x_2 = x_49; +x_3 = x_66; +x_8 = x_64; +goto _start; +} +else +{ +uint8_t x_68; +x_68 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_68 == 0) +{ +lean_object* x_69; +lean_dec(x_51); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +if (lean_is_scalar(x_61)) { + x_69 = lean_alloc_ctor(1, 2, 0); +} else { + x_69 = x_61; +} +lean_ctor_set(x_69, 0, x_59); +lean_ctor_set(x_69, 1, x_60); +return x_69; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_61); +lean_dec(x_59); +x_70 = l_Lean_Meta_SavedState_restore(x_51, x_4, x_5, x_6, x_7, x_60); +lean_dec(x_51); +x_71 = lean_ctor_get(x_70, 1); +lean_inc(x_71); +lean_dec(x_70); +x_72 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_72, 0, x_48); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_3); +x_2 = x_49; +x_3 = x_73; +x_8 = x_71; +goto _start; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = lean_ctor_get(x_3, 0); +lean_inc(x_7); +lean_dec(x_3); +x_8 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(x_5); +lean_ctor_set(x_1, 1, x_8); +lean_ctor_set(x_1, 0, x_7); +return x_1; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +lean_dec(x_1); +x_10 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +lean_dec(x_3); +x_11 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +else +{ +lean_object* x_13; +lean_dec(x_3); +x_13 = lean_ctor_get(x_1, 1); +lean_inc(x_13); +lean_dec(x_1); +x_1 = x_13; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +lean_dec(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_1 = x_4; +goto _start; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_3, 0); +lean_inc(x_9); +lean_dec(x_3); +x_10 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(x_7); +lean_ctor_set(x_1, 1, x_10); +lean_ctor_set(x_1, 0, x_9); +return x_1; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +lean_dec(x_1); +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(x_11); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_box(0); +x_9 = l_List_mapM_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__4(x_2, x_1, x_8, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +x_12 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(x_11); +x_13 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(x_11); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +lean_ctor_set(x_9, 0, x_14); +return x_9; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_ctor_get(x_9, 0); +x_16 = lean_ctor_get(x_9, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_9); +lean_inc(x_15); +x_17 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__5(x_15); +x_18 = l_List_filterMap___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__6(x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_16); +return x_20; +} +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_9); +if (x_21 == 0) +{ +return x_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_9, 0); +x_23 = lean_ctor_get(x_9, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_9); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_2); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +else +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +x_12 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_10, x_3, x_4, x_5, x_6, x_7); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_unbox(x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_11; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_15; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +lean_object* x_17; +lean_free_object(x_1); +lean_dec(x_10); +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_dec(x_12); +x_1 = x_11; +x_7 = x_17; +goto _start; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_1); +lean_inc(x_19); +x_21 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_19, x_3, x_4, x_5, x_6, x_7); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_unbox(x_22); +lean_dec(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_19); +lean_ctor_set(x_25, 1, x_2); +x_1 = x_20; +x_2 = x_25; +x_7 = x_24; +goto _start; +} +else +{ +lean_object* x_27; +lean_dec(x_19); +x_27 = lean_ctor_get(x_21, 1); +lean_inc(x_27); +lean_dec(x_21); +x_1 = x_20; +x_7 = x_27; +goto _start; +} +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("independent goals ", 18); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(",", 1); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" working on them before ", 24); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(x_2, x_4, x_5, x_6, x_7, x_11); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +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; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_box(0); +x_16 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_10, x_15); +x_17 = l_Lean_MessageData_ofList(x_16); +lean_dec(x_16); +x_18 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4; +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_14, x_15); +x_23 = l_Lean_MessageData_ofList(x_22); +lean_dec(x_22); +x_24 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +x_26 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_21); +lean_ctor_set(x_28, 1, x_27); +lean_ctor_set(x_12, 0, x_28); +return x_12; +} +else +{ +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; +x_29 = lean_ctor_get(x_12, 0); +x_30 = lean_ctor_get(x_12, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_12); +x_31 = lean_box(0); +x_32 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_10, x_31); +x_33 = l_Lean_MessageData_ofList(x_32); +lean_dec(x_32); +x_34 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2; +x_35 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +x_36 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4; +x_37 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +x_38 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_29, x_31); +x_39 = l_Lean_MessageData_ofList(x_38); +lean_dec(x_38); +x_40 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_44, 0, x_37); +lean_ctor_set(x_44, 1, x_43); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_30); +return x_45; +} +} +else +{ +uint8_t x_46; +lean_dec(x_10); +x_46 = !lean_is_exclusive(x_12); +if (x_46 == 0) +{ +return x_12; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_12, 0); +x_48 = lean_ctor_get(x_12, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_12); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +else +{ +uint8_t x_50; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_50 = !lean_is_exclusive(x_9); +if (x_50 == 0) +{ +return x_9; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_9, 0); +x_52 = lean_ctor_get(x_9, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_9); +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_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_1, 0); +lean_inc(x_11); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_5); +lean_ctor_set(x_13, 1, x_12); +x_14 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run(x_1, x_2, x_3, x_4, x_11, x_13, x_12, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed: ", 8); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(", new: ", 7); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarIds(x_2, x_4, x_5, x_6, x_7, x_11); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +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; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_box(0); +x_16 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_10, x_15); +x_17 = l_Lean_MessageData_ofList(x_16); +lean_dec(x_16); +x_18 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4; +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_14, x_15); +x_23 = l_Lean_MessageData_ofList(x_22); +lean_dec(x_22); +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_24, 1, x_23); +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +lean_ctor_set(x_12, 0, x_26); +return x_12; +} +else +{ +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; +x_27 = lean_ctor_get(x_12, 0); +x_28 = lean_ctor_get(x_12, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_12); +x_29 = lean_box(0); +x_30 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_10, x_29); +x_31 = l_Lean_MessageData_ofList(x_30); +lean_dec(x_30); +x_32 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_31); +x_34 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4; +x_35 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +x_36 = l_List_mapTR_loop___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__2(x_27, x_29); +x_37 = l_Lean_MessageData_ofList(x_36); +lean_dec(x_36); +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_35); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_28); +return x_41; +} +} +else +{ +uint8_t x_42; +lean_dec(x_10); +x_42 = !lean_is_exclusive(x_12); +if (x_42 == 0) +{ +return x_12; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_12, 0); +x_44 = lean_ctor_get(x_12, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_12); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +else +{ +uint8_t x_46; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_46 = !lean_is_exclusive(x_9); +if (x_46 == 0) +{ +return x_9; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_9, 0); +x_48 = lean_ctor_get(x_9, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_9); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__4(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_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_37; +x_15 = l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7(x_1, x_2, x_10, x_11, x_12, x_13, x_14); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = l_List_reverse___rarg(x_16); +lean_inc(x_3); +x_19 = l_List_appendTR___rarg(x_18, x_3); +x_37 = lean_ctor_get_uint8(x_5, sizeof(void*)*4); +if (x_37 == 0) +{ +lean_object* x_38; +x_38 = lean_box(0); +x_20 = x_38; +goto block_36; +} +else +{ +uint8_t x_39; +x_39 = l_List_isEmpty___rarg(x_3); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_40 = l_Lean_Meta_saveState___rarg(x_11, x_12, x_13, x_17); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_40, 1); +lean_inc(x_42); +lean_dec(x_40); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_43 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(x_5, x_6, x_7, x_8, x_19, x_9, x_10, x_11, x_12, x_13, x_42); +if (lean_obj_tag(x_43) == 0) +{ +uint8_t x_44; +lean_dec(x_41); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_43, 0); +x_46 = l_List_appendTR___rarg(x_3, x_4); +x_47 = l_List_appendTR___rarg(x_46, x_45); +lean_ctor_set(x_43, 0, x_47); +return x_43; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_43, 0); +x_49 = lean_ctor_get(x_43, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_43); +x_50 = l_List_appendTR___rarg(x_3, x_4); +x_51 = l_List_appendTR___rarg(x_50, x_48); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_49); +return x_52; +} +} +else +{ +uint8_t x_53; +x_53 = !lean_is_exclusive(x_43); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_54 = lean_ctor_get(x_43, 0); +x_55 = lean_ctor_get(x_43, 1); +x_56 = l_Lean_Exception_isRuntime(x_54); +if (x_56 == 0) +{ +lean_object* x_57; uint8_t x_58; +lean_free_object(x_43); +lean_dec(x_54); +x_57 = l_Lean_Meta_SavedState_restore(x_41, x_10, x_11, x_12, x_13, x_55); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_41); +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_57, 0); +lean_dec(x_59); +x_60 = l_List_appendTR___rarg(x_3, x_4); +x_61 = l_List_appendTR___rarg(x_60, x_9); +lean_ctor_set(x_57, 0, x_61); +return x_57; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_62 = lean_ctor_get(x_57, 1); +lean_inc(x_62); +lean_dec(x_57); +x_63 = l_List_appendTR___rarg(x_3, x_4); +x_64 = l_List_appendTR___rarg(x_63, x_9); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_62); +return x_65; +} +} +else +{ +uint8_t x_66; +x_66 = lean_ctor_get_uint8(x_12, sizeof(void*)*11); +if (x_66 == 0) +{ +lean_dec(x_41); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +return x_43; +} +else +{ +lean_object* x_67; uint8_t x_68; +lean_free_object(x_43); +lean_dec(x_54); +x_67 = l_Lean_Meta_SavedState_restore(x_41, x_10, x_11, x_12, x_13, x_55); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_41); +x_68 = !lean_is_exclusive(x_67); +if (x_68 == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_67, 0); +lean_dec(x_69); +x_70 = l_List_appendTR___rarg(x_3, x_4); +x_71 = l_List_appendTR___rarg(x_70, x_9); +lean_ctor_set(x_67, 0, x_71); +return x_67; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_67, 1); +lean_inc(x_72); +lean_dec(x_67); +x_73 = l_List_appendTR___rarg(x_3, x_4); +x_74 = l_List_appendTR___rarg(x_73, x_9); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_72); +return x_75; +} +} +} +} +else +{ +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = lean_ctor_get(x_43, 0); +x_77 = lean_ctor_get(x_43, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_43); +x_78 = l_Lean_Exception_isRuntime(x_76); +if (x_78 == 0) +{ +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_dec(x_76); +x_79 = l_Lean_Meta_SavedState_restore(x_41, x_10, x_11, x_12, x_13, x_77); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_41); +x_80 = lean_ctor_get(x_79, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_81 = x_79; +} else { + lean_dec_ref(x_79); + x_81 = lean_box(0); +} +x_82 = l_List_appendTR___rarg(x_3, x_4); +x_83 = l_List_appendTR___rarg(x_82, x_9); +if (lean_is_scalar(x_81)) { + x_84 = lean_alloc_ctor(0, 2, 0); +} else { + x_84 = x_81; +} +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_80); +return x_84; +} +else +{ +uint8_t x_85; +x_85 = lean_ctor_get_uint8(x_12, sizeof(void*)*11); +if (x_85 == 0) +{ +lean_object* x_86; +lean_dec(x_41); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_3); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_76); +lean_ctor_set(x_86, 1, x_77); +return x_86; +} +else +{ +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_dec(x_76); +x_87 = l_Lean_Meta_SavedState_restore(x_41, x_10, x_11, x_12, x_13, x_77); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_41); +x_88 = lean_ctor_get(x_87, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_89 = x_87; +} else { + lean_dec_ref(x_87); + x_89 = lean_box(0); +} +x_90 = l_List_appendTR___rarg(x_3, x_4); +x_91 = l_List_appendTR___rarg(x_90, x_9); +if (lean_is_scalar(x_89)) { + x_92 = lean_alloc_ctor(0, 2, 0); +} else { + x_92 = x_89; +} +lean_ctor_set(x_92, 0, x_91); +lean_ctor_set(x_92, 1, x_88); +return x_92; +} +} +} +} +} +else +{ +lean_object* x_93; +x_93 = lean_box(0); +x_20 = x_93; +goto block_36; +} +} +block_36: +{ +uint8_t x_21; +lean_dec(x_20); +x_21 = l_List_isEmpty___rarg(x_4); +lean_dec(x_4); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_19); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_22 = l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2; +x_23 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_22, x_10, x_11, x_12, x_13, x_17); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_23; +} +else +{ +lean_object* x_24; +x_24 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(x_5, x_6, x_7, x_8, x_19, x_9, x_10, x_11, x_12, x_13, x_17); +if (lean_obj_tag(x_24) == 0) +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_24, 0); +x_27 = l_List_appendTR___rarg(x_3, x_26); +lean_ctor_set(x_24, 0, x_27); +return x_24; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = lean_ctor_get(x_24, 0); +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_24); +x_30 = l_List_appendTR___rarg(x_3, x_28); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +lean_dec(x_3); +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +return x_24; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_24); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__5(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_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_14 = l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__3(x_1, x_2, x_9, x_10, x_11, x_12, 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_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; +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 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l_List_join___rarg(x_18); +lean_inc(x_19); +lean_inc(x_17); +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___boxed), 8, 2); +lean_closure_set(x_20, 0, x_17); +lean_closure_set(x_20, 1, x_19); +x_21 = lean_box(0); +lean_inc(x_5); +x_22 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__4), 14, 9); +lean_closure_set(x_22, 0, x_3); +lean_closure_set(x_22, 1, x_21); +lean_closure_set(x_22, 2, x_19); +lean_closure_set(x_22, 3, x_17); +lean_closure_set(x_22, 4, x_4); +lean_closure_set(x_22, 5, x_5); +lean_closure_set(x_22, 6, x_6); +lean_closure_set(x_22, 7, x_7); +lean_closure_set(x_22, 8, x_8); +x_23 = 1; +x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_5, x_20, x_22, x_23, x_9, x_10, x_11, x_12, x_16); +return x_24; +} +else +{ +uint8_t x_25; +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_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_25 = !lean_is_exclusive(x_14); +if (x_25 == 0) +{ +return x_14; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_14, 0); +x_27 = lean_ctor_get(x_14, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_14); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1() { +_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; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(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_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_13 = l_List_partitionM_go___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__1(x_5, x_6, x_12, x_12, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +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_16 = lean_ctor_get(x_14, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_dec(x_14); +x_18 = l_List_isEmpty___rarg(x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; +lean_dec(x_6); +lean_inc(x_17); +lean_inc(x_16); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___boxed), 8, 2); +lean_closure_set(x_19, 0, x_16); +lean_closure_set(x_19, 1, x_17); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__2), 10, 4); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_2); +lean_closure_set(x_20, 2, x_3); +lean_closure_set(x_20, 3, x_4); +lean_inc(x_2); +x_21 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__5), 13, 8); +lean_closure_set(x_21, 0, x_16); +lean_closure_set(x_21, 1, x_20); +lean_closure_set(x_21, 2, x_5); +lean_closure_set(x_21, 3, x_1); +lean_closure_set(x_21, 4, x_2); +lean_closure_set(x_21, 5, x_3); +lean_closure_set(x_21, 6, x_4); +lean_closure_set(x_21, 7, x_17); +x_22 = 1; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_2, x_19, x_21, x_22, x_7, x_8, x_9, x_10, x_15); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_5); +x_24 = lean_ctor_get(x_1, 0); +lean_inc(x_24); +x_25 = lean_box(0); +x_26 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run(x_1, x_2, x_3, x_4, x_24, x_6, x_25, x_7, x_8, x_9, x_10, x_15); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +return x_26; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_26); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +else +{ +uint8_t x_31; +x_31 = !lean_is_exclusive(x_26); +if (x_31 == 0) +{ +return x_26; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_26, 0); +x_33 = lean_ctor_get(x_26, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_26); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +else +{ +uint8_t x_35; +lean_dec(x_10); +lean_dec(x_9); +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); +lean_dec(x_1); +x_35 = !lean_is_exclusive(x_13); +if (x_35 == 0) +{ +return x_13; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_13, 0); +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_13); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7___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) { +_start: +{ +lean_object* x_8; +x_8 = l_List_filterAuxM___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack___lambda__1(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = lean_apply_6(x_1, x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l_Lean_Meta_Iterator_firstM___rarg(x_10, x_3, x_4, x_5, x_6, x_7, x_11); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = !lean_is_exclusive(x_9); +if (x_13 == 0) +{ +return x_9; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_9, 0); +x_15 = lean_ctor_get(x_9, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_9); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack(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; lean_object* x_11; +x_10 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Backtrack_backtrack___lambda__1), 8, 1); +lean_closure_set(x_10, 0, x_3); +lean_inc_n(x_4, 2); +x_11 = l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(x_1, x_2, x_10, x_4, x_4, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +lean_object* initialize_Init_Data_List_BasicAux(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Iterator(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_IndependentOf(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Backtrack(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_List_BasicAux(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Iterator(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_IndependentOf(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_maxDepth___default = _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_maxDepth___default(); +lean_mark_persistent(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_maxDepth___default); +l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1 = _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1(); +lean_mark_persistent(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__1); +l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2 = _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2(); +lean_mark_persistent(l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___rarg___closed__2); +l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_commitIndependentGoals___default = _init_l_Lean_Meta_Tactic_Backtrack_BacktrackConfig_commitIndependentGoals___default(); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_ppMVarId___closed__1); +l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1 = _init_l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1(); +lean_mark_persistent(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1); +l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1 = _init_l_Lean_withSeconds___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4___closed__1(); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__3); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__4); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__5); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__6); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__7); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__1); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2); +l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1(); +lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__5___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__1___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__2___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__3); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__8___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__9___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__10___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__3); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__4); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__5); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__6); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__1); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__3); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__4); +l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1 = _init_l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___closed__1); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/IndependentOf.c b/stage0/stdlib/Lean/Meta/Tactic/IndependentOf.c new file mode 100644 index 0000000000..7fbb9aaf59 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/IndependentOf.c @@ -0,0 +1,557 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.IndependentOf +// Imports: Lean.Meta.CollectMVars Lean.Meta.Tactic.Util +#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 +uint8_t l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(lean_object*, lean_object*); +size_t lean_hashset_mk_idx(lean_object*, uint64_t); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_isSubsingleton(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_allM___at_Lean_MVarId_isIndependentOf___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_allM___at_Lean_MVarId_isIndependentOf___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isProp(lean_object*); +lean_object* l_Lean_MVarId_getMVarDependencies(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_hasExprMVar(lean_object*); +LEAN_EXPORT uint8_t l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; lean_object* x_7; uint8_t x_8; +x_3 = lean_ctor_get(x_1, 1); +x_4 = lean_array_get_size(x_3); +x_5 = l___private_Lean_Expr_0__Lean_hashMVarId____x40_Lean_Expr___hyg_1921_(x_2); +x_6 = lean_hashset_mk_idx(x_4, x_5); +x_7 = lean_array_uget(x_3, x_6); +x_8 = l_List_elem___at_Lean_MVarId_getMVarDependencies_addMVars___spec__3(x_2, x_7); +lean_dec(x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_List_allM___at_Lean_MVarId_isIndependentOf___spec__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) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = 1; +x_9 = lean_box(x_8); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_12); +lean_dec(x_2); +x_13 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_14 = l_Lean_MVarId_getMVarDependencies(x_11, x_13, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +x_18 = l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1(x_16, x_1); +lean_dec(x_16); +if (x_18 == 0) +{ +lean_free_object(x_14); +x_2 = x_12; +x_7 = x_17; +goto _start; +} +else +{ +lean_object* x_20; +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_20 = lean_box(x_13); +lean_ctor_set(x_14, 0, x_20); +return x_14; +} +} +else +{ +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1(x_21, x_1); +lean_dec(x_21); +if (x_23 == 0) +{ +x_2 = x_12; +x_7 = x_22; +goto _start; +} +else +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_25 = lean_box(x_13); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_22); +return x_26; +} +} +} +else +{ +uint8_t x_27; +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_27 = !lean_is_exclusive(x_14); +if (x_27 == 0) +{ +return x_14; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_14, 0); +x_29 = lean_ctor_get(x_14, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_14); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__1(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) { +_start: +{ +lean_object* x_9; +lean_dec(x_3); +x_9 = l_List_allM___at_Lean_MVarId_isIndependentOf___spec__2(x_1, x_2, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___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) { +_start: +{ +lean_object* x_9; +lean_dec(x_3); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_9 = l_Lean_MVarId_isSubsingleton(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_unbox(x_10); +lean_dec(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_dec(x_9); +x_13 = l_List_allM___at_Lean_MVarId_isIndependentOf___spec__2(x_1, x_2, x_4, x_5, x_6, x_7, x_12); +lean_dec(x_1); +return x_13; +} +else +{ +uint8_t x_14; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_14 = !lean_is_exclusive(x_9); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_9, 0); +lean_dec(x_15); +x_16 = 1; +x_17 = lean_box(x_16); +lean_ctor_set(x_9, 0, x_17); +return x_9; +} +else +{ +lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_dec(x_9); +x_19 = 1; +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_9); +if (x_22 == 0) +{ +return x_9; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_9, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_9); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___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: +{ +lean_object* x_10; +lean_dec(x_4); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +x_14 = l_Lean_Expr_isProp(x_12); +lean_dec(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_free_object(x_10); +x_15 = lean_box(0); +x_16 = l_Lean_MVarId_isIndependentOf___lambda__2(x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_13); +return x_16; +} +else +{ +uint8_t x_17; lean_object* x_18; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_17 = 1; +x_18 = lean_box(x_17); +lean_ctor_set(x_10, 0, x_18); +return x_10; +} +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_10, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_10); +x_21 = l_Lean_Expr_isProp(x_19); +lean_dec(x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_box(0); +x_23 = l_Lean_MVarId_isIndependentOf___lambda__2(x_2, x_3, x_22, x_5, x_6, x_7, x_8, x_20); +return x_23; +} +else +{ +uint8_t x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_24 = 1; +x_25 = lean_box(x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_20); +return x_26; +} +} +} +else +{ +uint8_t x_27; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_27 = !lean_is_exclusive(x_10); +if (x_27 == 0) +{ +return x_10; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_10, 0); +x_29 = lean_ctor_get(x_10, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_10); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__4(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) { +_start: +{ +lean_object* x_8; +lean_inc(x_1); +x_8 = l_Lean_MVarId_getType(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_9, x_3, x_4, x_5, x_6, x_10); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = l_Lean_Expr_hasExprMVar(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_free_object(x_11); +x_16 = lean_box(0); +x_17 = l_Lean_MVarId_isIndependentOf___lambda__3(x_13, x_1, x_2, x_16, x_3, x_4, x_5, x_6, x_14); +return x_17; +} +else +{ +uint8_t x_18; lean_object* x_19; +lean_dec(x_13); +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_18 = 0; +x_19 = lean_box(x_18); +lean_ctor_set(x_11, 0, x_19); +return x_11; +} +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_11, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_11); +x_22 = l_Lean_Expr_hasExprMVar(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_box(0); +x_24 = l_Lean_MVarId_isIndependentOf___lambda__3(x_20, x_1, x_2, x_23, x_3, x_4, x_5, x_6, x_21); +return x_24; +} +else +{ +uint8_t x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_20); +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_25 = 0; +x_26 = lean_box(x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_21); +return x_27; +} +} +} +else +{ +uint8_t 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_28 = !lean_is_exclusive(x_8); +if (x_28 == 0) +{ +return x_8; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_8, 0); +x_30 = lean_ctor_get(x_8, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_8); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +lean_inc(x_2); +x_8 = lean_alloc_closure((void*)(l_Lean_MVarId_isIndependentOf___lambda__4), 7, 2); +lean_closure_set(x_8, 0, x_2); +lean_closure_set(x_8, 1, x_1); +x_9 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_2, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_HashSetImp_contains___at_Lean_MVarId_isIndependentOf___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_allM___at_Lean_MVarId_isIndependentOf___spec__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) { +_start: +{ +lean_object* x_8; +x_8 = l_List_allM___at_Lean_MVarId_isIndependentOf___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isIndependentOf___lambda__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_MVarId_isIndependentOf___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); +return x_9; +} +} +lean_object* initialize_Lean_Meta_CollectMVars(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_IndependentOf(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_CollectMVars(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Util(builtin, 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)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/Replace.c b/stage0/stdlib/Lean/Meta/Tactic/Replace.c index ee20669e8f..41a1caa77d 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Replace.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Replace.c @@ -52,7 +52,6 @@ lean_object* l_Lean_LocalDecl_setType(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_replaceLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_index(lean_object*); -lean_object* l_Lean_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_change___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_MVarId_changeLocalDecl___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -65,6 +64,7 @@ size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_MVarId_changeLocalDecl___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_changeLocalDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MVarId_changeLocalDecl___spec__1(size_t, size_t, lean_object*); +lean_object* l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); @@ -75,7 +75,6 @@ lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lea lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_MVarId_withReverted___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_modifyTargetEqLHS___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at_Lean_MVarId_withReverted___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_modifyTarget___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -90,7 +89,6 @@ static lean_object* l_Lean_MVarId_changeLocalDecl___lambda__1___closed__2; lean_object* l_Lean_MVarId_assertAfter(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_MVarId_replaceTargetEq___lambda__1___closed__4; lean_object* l_Lean_MVarId_revert(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_replaceLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_modifyTargetEqLHS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -116,7 +114,6 @@ lean_object* l_Lean_LocalDecl_userName(lean_object*); static lean_object* l_Lean_MVarId_replaceTargetEq___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_MVarId_withReverted___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_change___lambda__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_MVarId_withReverted___spec__1___closed__3; @@ -963,1303 +960,6 @@ x_8 = l_Lean_MVarId_replaceTargetDefEq(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(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; lean_object* x_11; lean_object* x_22; uint8_t x_23; -x_22 = lean_st_ref_get(x_3, x_9); -x_23 = !lean_is_exclusive(x_22); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_22, 0); -x_25 = lean_ctor_get(x_22, 1); -lean_inc(x_2); -x_26 = l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(x_24, x_2); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; -lean_free_object(x_22); -lean_inc(x_1); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_2); -x_27 = lean_apply_7(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_25); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; uint8_t x_29; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_unbox(x_28); -lean_dec(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_30 = lean_ctor_get(x_27, 1); -lean_inc(x_30); -lean_dec(x_27); -x_31 = lean_box(0); -x_10 = x_31; -x_11 = x_30; -goto block_21; -} -else -{ -switch (lean_obj_tag(x_2)) { -case 5: -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_32 = lean_ctor_get(x_27, 1); -lean_inc(x_32); -lean_dec(x_27); -x_33 = lean_ctor_get(x_2, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_2, 1); -lean_inc(x_34); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_35 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_33, x_3, x_4, x_5, x_6, x_7, x_8, x_32); -if (lean_obj_tag(x_35) == 0) -{ -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); -lean_dec(x_35); -x_37 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_36); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec(x_37); -x_10 = x_38; -x_11 = x_39; -goto block_21; -} -else -{ -uint8_t x_40; -lean_dec(x_2); -x_40 = !lean_is_exclusive(x_37); -if (x_40 == 0) -{ -return x_37; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_37, 0); -x_42 = lean_ctor_get(x_37, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_37); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; -} -} -} -else -{ -uint8_t x_44; -lean_dec(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_2); -lean_dec(x_1); -x_44 = !lean_is_exclusive(x_35); -if (x_44 == 0) -{ -return x_35; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_35, 0); -x_46 = lean_ctor_get(x_35, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_35); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; -} -} -} -case 6: -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_48 = lean_ctor_get(x_27, 1); -lean_inc(x_48); -lean_dec(x_27); -x_49 = lean_ctor_get(x_2, 1); -lean_inc(x_49); -x_50 = lean_ctor_get(x_2, 2); -lean_inc(x_50); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_51 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_49, x_3, x_4, x_5, x_6, x_7, x_8, x_48); -if (lean_obj_tag(x_51) == 0) -{ -lean_object* x_52; lean_object* x_53; -x_52 = lean_ctor_get(x_51, 1); -lean_inc(x_52); -lean_dec(x_51); -x_53 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_50, x_3, x_4, x_5, x_6, x_7, x_8, x_52); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -lean_dec(x_53); -x_10 = x_54; -x_11 = x_55; -goto block_21; -} -else -{ -uint8_t x_56; -lean_dec(x_2); -x_56 = !lean_is_exclusive(x_53); -if (x_56 == 0) -{ -return x_53; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_53, 0); -x_58 = lean_ctor_get(x_53, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_53); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -return x_59; -} -} -} -else -{ -uint8_t x_60; -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_60 = !lean_is_exclusive(x_51); -if (x_60 == 0) -{ -return x_51; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_51, 0); -x_62 = lean_ctor_get(x_51, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_51); -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; -} -} -} -case 7: -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_27, 1); -lean_inc(x_64); -lean_dec(x_27); -x_65 = lean_ctor_get(x_2, 1); -lean_inc(x_65); -x_66 = lean_ctor_get(x_2, 2); -lean_inc(x_66); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_67 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_65, x_3, x_4, x_5, x_6, x_7, x_8, x_64); -if (lean_obj_tag(x_67) == 0) -{ -lean_object* x_68; lean_object* x_69; -x_68 = lean_ctor_get(x_67, 1); -lean_inc(x_68); -lean_dec(x_67); -x_69 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_66, x_3, x_4, x_5, x_6, x_7, x_8, x_68); -if (lean_obj_tag(x_69) == 0) -{ -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); -lean_inc(x_71); -lean_dec(x_69); -x_10 = x_70; -x_11 = x_71; -goto block_21; -} -else -{ -uint8_t x_72; -lean_dec(x_2); -x_72 = !lean_is_exclusive(x_69); -if (x_72 == 0) -{ -return x_69; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_69, 0); -x_74 = lean_ctor_get(x_69, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_69); -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; -} -} -} -else -{ -uint8_t x_76; -lean_dec(x_66); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_76 = !lean_is_exclusive(x_67); -if (x_76 == 0) -{ -return x_67; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_67, 0); -x_78 = lean_ctor_get(x_67, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_67); -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; -} -} -} -case 8: -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_80 = lean_ctor_get(x_27, 1); -lean_inc(x_80); -lean_dec(x_27); -x_81 = lean_ctor_get(x_2, 1); -lean_inc(x_81); -x_82 = lean_ctor_get(x_2, 2); -lean_inc(x_82); -x_83 = lean_ctor_get(x_2, 3); -lean_inc(x_83); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_84 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_81, x_3, x_4, x_5, x_6, x_7, x_8, x_80); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; lean_object* x_86; -x_85 = lean_ctor_get(x_84, 1); -lean_inc(x_85); -lean_dec(x_84); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_86 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_82, x_3, x_4, x_5, x_6, x_7, x_8, x_85); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_86, 1); -lean_inc(x_87); -lean_dec(x_86); -x_88 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_83, x_3, x_4, x_5, x_6, x_7, x_8, x_87); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -x_90 = lean_ctor_get(x_88, 1); -lean_inc(x_90); -lean_dec(x_88); -x_10 = x_89; -x_11 = x_90; -goto block_21; -} -else -{ -uint8_t x_91; -lean_dec(x_2); -x_91 = !lean_is_exclusive(x_88); -if (x_91 == 0) -{ -return x_88; -} -else -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_92 = lean_ctor_get(x_88, 0); -x_93 = lean_ctor_get(x_88, 1); -lean_inc(x_93); -lean_inc(x_92); -lean_dec(x_88); -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; -} -} -} -else -{ -uint8_t x_95; -lean_dec(x_83); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_95 = !lean_is_exclusive(x_86); -if (x_95 == 0) -{ -return x_86; -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_86, 0); -x_97 = lean_ctor_get(x_86, 1); -lean_inc(x_97); -lean_inc(x_96); -lean_dec(x_86); -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 -{ -uint8_t x_99; -lean_dec(x_83); -lean_dec(x_82); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_99 = !lean_is_exclusive(x_84); -if (x_99 == 0) -{ -return x_84; -} -else -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_100 = lean_ctor_get(x_84, 0); -x_101 = lean_ctor_get(x_84, 1); -lean_inc(x_101); -lean_inc(x_100); -lean_dec(x_84); -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; -} -} -} -case 10: -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_27, 1); -lean_inc(x_103); -lean_dec(x_27); -x_104 = lean_ctor_get(x_2, 1); -lean_inc(x_104); -x_105 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_104, x_3, x_4, x_5, x_6, x_7, x_8, x_103); -if (lean_obj_tag(x_105) == 0) -{ -lean_object* x_106; lean_object* x_107; -x_106 = lean_ctor_get(x_105, 0); -lean_inc(x_106); -x_107 = lean_ctor_get(x_105, 1); -lean_inc(x_107); -lean_dec(x_105); -x_10 = x_106; -x_11 = x_107; -goto block_21; -} -else -{ -uint8_t x_108; -lean_dec(x_2); -x_108 = !lean_is_exclusive(x_105); -if (x_108 == 0) -{ -return x_105; -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_109 = lean_ctor_get(x_105, 0); -x_110 = lean_ctor_get(x_105, 1); -lean_inc(x_110); -lean_inc(x_109); -lean_dec(x_105); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_109); -lean_ctor_set(x_111, 1, x_110); -return x_111; -} -} -} -case 11: -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_112 = lean_ctor_get(x_27, 1); -lean_inc(x_112); -lean_dec(x_27); -x_113 = lean_ctor_get(x_2, 2); -lean_inc(x_113); -x_114 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_112); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; lean_object* x_116; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec(x_114); -x_10 = x_115; -x_11 = x_116; -goto block_21; -} -else -{ -uint8_t x_117; -lean_dec(x_2); -x_117 = !lean_is_exclusive(x_114); -if (x_117 == 0) -{ -return x_114; -} -else -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_114, 0); -x_119 = lean_ctor_get(x_114, 1); -lean_inc(x_119); -lean_inc(x_118); -lean_dec(x_114); -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_118); -lean_ctor_set(x_120, 1, x_119); -return x_120; -} -} -} -default: -{ -lean_object* x_121; lean_object* x_122; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_121 = lean_ctor_get(x_27, 1); -lean_inc(x_121); -lean_dec(x_27); -x_122 = lean_box(0); -x_10 = x_122; -x_11 = x_121; -goto block_21; -} -} -} -} -else -{ -uint8_t x_123; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_123 = !lean_is_exclusive(x_27); -if (x_123 == 0) -{ -return x_27; -} -else -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; -x_124 = lean_ctor_get(x_27, 0); -x_125 = lean_ctor_get(x_27, 1); -lean_inc(x_125); -lean_inc(x_124); -lean_dec(x_27); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_124); -lean_ctor_set(x_126, 1, x_125); -return x_126; -} -} -} -else -{ -lean_object* x_127; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_127 = lean_ctor_get(x_26, 0); -lean_inc(x_127); -lean_dec(x_26); -lean_ctor_set(x_22, 0, x_127); -return x_22; -} -} -else -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; -x_128 = lean_ctor_get(x_22, 0); -x_129 = lean_ctor_get(x_22, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_22); -lean_inc(x_2); -x_130 = l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(x_128, x_2); -if (lean_obj_tag(x_130) == 0) -{ -lean_object* x_131; -lean_inc(x_1); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_2); -x_131 = lean_apply_7(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_129); -if (lean_obj_tag(x_131) == 0) -{ -lean_object* x_132; uint8_t x_133; -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_unbox(x_132); -lean_dec(x_132); -if (x_133 == 0) -{ -lean_object* x_134; lean_object* x_135; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_134 = lean_ctor_get(x_131, 1); -lean_inc(x_134); -lean_dec(x_131); -x_135 = lean_box(0); -x_10 = x_135; -x_11 = x_134; -goto block_21; -} -else -{ -switch (lean_obj_tag(x_2)) { -case 5: -{ -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_136 = lean_ctor_get(x_131, 1); -lean_inc(x_136); -lean_dec(x_131); -x_137 = lean_ctor_get(x_2, 0); -lean_inc(x_137); -x_138 = lean_ctor_get(x_2, 1); -lean_inc(x_138); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_139 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_137, x_3, x_4, x_5, x_6, x_7, x_8, x_136); -if (lean_obj_tag(x_139) == 0) -{ -lean_object* x_140; lean_object* x_141; -x_140 = lean_ctor_get(x_139, 1); -lean_inc(x_140); -lean_dec(x_139); -x_141 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_138, x_3, x_4, x_5, x_6, x_7, x_8, x_140); -if (lean_obj_tag(x_141) == 0) -{ -lean_object* x_142; lean_object* x_143; -x_142 = lean_ctor_get(x_141, 0); -lean_inc(x_142); -x_143 = lean_ctor_get(x_141, 1); -lean_inc(x_143); -lean_dec(x_141); -x_10 = x_142; -x_11 = x_143; -goto block_21; -} -else -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -lean_dec(x_2); -x_144 = lean_ctor_get(x_141, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_141, 1); -lean_inc(x_145); -if (lean_is_exclusive(x_141)) { - lean_ctor_release(x_141, 0); - lean_ctor_release(x_141, 1); - x_146 = x_141; -} else { - lean_dec_ref(x_141); - x_146 = lean_box(0); -} -if (lean_is_scalar(x_146)) { - x_147 = lean_alloc_ctor(1, 2, 0); -} else { - x_147 = 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_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_dec(x_138); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_148 = lean_ctor_get(x_139, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_139, 1); -lean_inc(x_149); -if (lean_is_exclusive(x_139)) { - lean_ctor_release(x_139, 0); - lean_ctor_release(x_139, 1); - x_150 = x_139; -} else { - lean_dec_ref(x_139); - x_150 = lean_box(0); -} -if (lean_is_scalar(x_150)) { - x_151 = lean_alloc_ctor(1, 2, 0); -} else { - x_151 = x_150; -} -lean_ctor_set(x_151, 0, x_148); -lean_ctor_set(x_151, 1, x_149); -return x_151; -} -} -case 6: -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; -x_152 = lean_ctor_get(x_131, 1); -lean_inc(x_152); -lean_dec(x_131); -x_153 = lean_ctor_get(x_2, 1); -lean_inc(x_153); -x_154 = lean_ctor_get(x_2, 2); -lean_inc(x_154); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_155 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_153, x_3, x_4, x_5, x_6, x_7, x_8, x_152); -if (lean_obj_tag(x_155) == 0) -{ -lean_object* x_156; lean_object* x_157; -x_156 = lean_ctor_get(x_155, 1); -lean_inc(x_156); -lean_dec(x_155); -x_157 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_154, x_3, x_4, x_5, x_6, x_7, x_8, x_156); -if (lean_obj_tag(x_157) == 0) -{ -lean_object* x_158; lean_object* x_159; -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); -lean_inc(x_159); -lean_dec(x_157); -x_10 = x_158; -x_11 = x_159; -goto block_21; -} -else -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -lean_dec(x_2); -x_160 = lean_ctor_get(x_157, 0); -lean_inc(x_160); -x_161 = lean_ctor_get(x_157, 1); -lean_inc(x_161); -if (lean_is_exclusive(x_157)) { - lean_ctor_release(x_157, 0); - lean_ctor_release(x_157, 1); - x_162 = x_157; -} else { - lean_dec_ref(x_157); - x_162 = lean_box(0); -} -if (lean_is_scalar(x_162)) { - x_163 = lean_alloc_ctor(1, 2, 0); -} else { - x_163 = x_162; -} -lean_ctor_set(x_163, 0, x_160); -lean_ctor_set(x_163, 1, x_161); -return x_163; -} -} -else -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -lean_dec(x_154); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_164 = lean_ctor_get(x_155, 0); -lean_inc(x_164); -x_165 = lean_ctor_get(x_155, 1); -lean_inc(x_165); -if (lean_is_exclusive(x_155)) { - lean_ctor_release(x_155, 0); - lean_ctor_release(x_155, 1); - x_166 = x_155; -} else { - lean_dec_ref(x_155); - x_166 = lean_box(0); -} -if (lean_is_scalar(x_166)) { - x_167 = lean_alloc_ctor(1, 2, 0); -} else { - x_167 = x_166; -} -lean_ctor_set(x_167, 0, x_164); -lean_ctor_set(x_167, 1, x_165); -return x_167; -} -} -case 7: -{ -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_168 = lean_ctor_get(x_131, 1); -lean_inc(x_168); -lean_dec(x_131); -x_169 = lean_ctor_get(x_2, 1); -lean_inc(x_169); -x_170 = lean_ctor_get(x_2, 2); -lean_inc(x_170); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_171 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_169, x_3, x_4, x_5, x_6, x_7, x_8, x_168); -if (lean_obj_tag(x_171) == 0) -{ -lean_object* x_172; lean_object* x_173; -x_172 = lean_ctor_get(x_171, 1); -lean_inc(x_172); -lean_dec(x_171); -x_173 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_170, x_3, x_4, x_5, x_6, x_7, x_8, x_172); -if (lean_obj_tag(x_173) == 0) -{ -lean_object* x_174; lean_object* x_175; -x_174 = lean_ctor_get(x_173, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_173, 1); -lean_inc(x_175); -lean_dec(x_173); -x_10 = x_174; -x_11 = x_175; -goto block_21; -} -else -{ -lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -lean_dec(x_2); -x_176 = lean_ctor_get(x_173, 0); -lean_inc(x_176); -x_177 = lean_ctor_get(x_173, 1); -lean_inc(x_177); -if (lean_is_exclusive(x_173)) { - lean_ctor_release(x_173, 0); - lean_ctor_release(x_173, 1); - x_178 = x_173; -} else { - lean_dec_ref(x_173); - x_178 = lean_box(0); -} -if (lean_is_scalar(x_178)) { - x_179 = lean_alloc_ctor(1, 2, 0); -} else { - x_179 = x_178; -} -lean_ctor_set(x_179, 0, x_176); -lean_ctor_set(x_179, 1, x_177); -return x_179; -} -} -else -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; -lean_dec(x_170); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_180 = lean_ctor_get(x_171, 0); -lean_inc(x_180); -x_181 = lean_ctor_get(x_171, 1); -lean_inc(x_181); -if (lean_is_exclusive(x_171)) { - lean_ctor_release(x_171, 0); - lean_ctor_release(x_171, 1); - x_182 = x_171; -} else { - lean_dec_ref(x_171); - x_182 = lean_box(0); -} -if (lean_is_scalar(x_182)) { - x_183 = lean_alloc_ctor(1, 2, 0); -} else { - x_183 = x_182; -} -lean_ctor_set(x_183, 0, x_180); -lean_ctor_set(x_183, 1, x_181); -return x_183; -} -} -case 8: -{ -lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_184 = lean_ctor_get(x_131, 1); -lean_inc(x_184); -lean_dec(x_131); -x_185 = lean_ctor_get(x_2, 1); -lean_inc(x_185); -x_186 = lean_ctor_get(x_2, 2); -lean_inc(x_186); -x_187 = lean_ctor_get(x_2, 3); -lean_inc(x_187); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_188 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_185, x_3, x_4, x_5, x_6, x_7, x_8, x_184); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; -x_189 = lean_ctor_get(x_188, 1); -lean_inc(x_189); -lean_dec(x_188); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_1); -x_190 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_186, x_3, x_4, x_5, x_6, x_7, x_8, x_189); -if (lean_obj_tag(x_190) == 0) -{ -lean_object* x_191; lean_object* x_192; -x_191 = lean_ctor_get(x_190, 1); -lean_inc(x_191); -lean_dec(x_190); -x_192 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_187, x_3, x_4, x_5, x_6, x_7, x_8, x_191); -if (lean_obj_tag(x_192) == 0) -{ -lean_object* x_193; lean_object* x_194; -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); -lean_inc(x_194); -lean_dec(x_192); -x_10 = x_193; -x_11 = x_194; -goto block_21; -} -else -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; -lean_dec(x_2); -x_195 = lean_ctor_get(x_192, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_192, 1); -lean_inc(x_196); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_197 = x_192; -} else { - lean_dec_ref(x_192); - x_197 = lean_box(0); -} -if (lean_is_scalar(x_197)) { - x_198 = lean_alloc_ctor(1, 2, 0); -} else { - x_198 = x_197; -} -lean_ctor_set(x_198, 0, x_195); -lean_ctor_set(x_198, 1, x_196); -return x_198; -} -} -else -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; -lean_dec(x_187); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_199 = lean_ctor_get(x_190, 0); -lean_inc(x_199); -x_200 = lean_ctor_get(x_190, 1); -lean_inc(x_200); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_201 = x_190; -} else { - lean_dec_ref(x_190); - x_201 = lean_box(0); -} -if (lean_is_scalar(x_201)) { - x_202 = lean_alloc_ctor(1, 2, 0); -} else { - x_202 = x_201; -} -lean_ctor_set(x_202, 0, x_199); -lean_ctor_set(x_202, 1, x_200); -return x_202; -} -} -else -{ -lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -lean_dec(x_187); -lean_dec(x_186); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_203 = lean_ctor_get(x_188, 0); -lean_inc(x_203); -x_204 = lean_ctor_get(x_188, 1); -lean_inc(x_204); -if (lean_is_exclusive(x_188)) { - lean_ctor_release(x_188, 0); - lean_ctor_release(x_188, 1); - x_205 = x_188; -} else { - lean_dec_ref(x_188); - x_205 = lean_box(0); -} -if (lean_is_scalar(x_205)) { - x_206 = lean_alloc_ctor(1, 2, 0); -} else { - x_206 = x_205; -} -lean_ctor_set(x_206, 0, x_203); -lean_ctor_set(x_206, 1, x_204); -return x_206; -} -} -case 10: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; -x_207 = lean_ctor_get(x_131, 1); -lean_inc(x_207); -lean_dec(x_131); -x_208 = lean_ctor_get(x_2, 1); -lean_inc(x_208); -x_209 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_208, x_3, x_4, x_5, x_6, x_7, x_8, x_207); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; lean_object* x_211; -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_10 = x_210; -x_11 = x_211; -goto block_21; -} -else -{ -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; -lean_dec(x_2); -x_212 = lean_ctor_get(x_209, 0); -lean_inc(x_212); -x_213 = lean_ctor_get(x_209, 1); -lean_inc(x_213); -if (lean_is_exclusive(x_209)) { - lean_ctor_release(x_209, 0); - lean_ctor_release(x_209, 1); - x_214 = x_209; -} else { - lean_dec_ref(x_209); - x_214 = lean_box(0); -} -if (lean_is_scalar(x_214)) { - x_215 = lean_alloc_ctor(1, 2, 0); -} else { - x_215 = x_214; -} -lean_ctor_set(x_215, 0, x_212); -lean_ctor_set(x_215, 1, x_213); -return x_215; -} -} -case 11: -{ -lean_object* x_216; lean_object* x_217; lean_object* x_218; -x_216 = lean_ctor_get(x_131, 1); -lean_inc(x_216); -lean_dec(x_131); -x_217 = lean_ctor_get(x_2, 2); -lean_inc(x_217); -x_218 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_217, x_3, x_4, x_5, x_6, x_7, x_8, x_216); -if (lean_obj_tag(x_218) == 0) -{ -lean_object* x_219; lean_object* x_220; -x_219 = lean_ctor_get(x_218, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_218, 1); -lean_inc(x_220); -lean_dec(x_218); -x_10 = x_219; -x_11 = x_220; -goto block_21; -} -else -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -lean_dec(x_2); -x_221 = lean_ctor_get(x_218, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_218, 1); -lean_inc(x_222); -if (lean_is_exclusive(x_218)) { - lean_ctor_release(x_218, 0); - lean_ctor_release(x_218, 1); - x_223 = x_218; -} else { - lean_dec_ref(x_218); - x_223 = lean_box(0); -} -if (lean_is_scalar(x_223)) { - x_224 = lean_alloc_ctor(1, 2, 0); -} else { - x_224 = x_223; -} -lean_ctor_set(x_224, 0, x_221); -lean_ctor_set(x_224, 1, x_222); -return x_224; -} -} -default: -{ -lean_object* x_225; lean_object* x_226; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_225 = lean_ctor_get(x_131, 1); -lean_inc(x_225); -lean_dec(x_131); -x_226 = lean_box(0); -x_10 = x_226; -x_11 = x_225; -goto block_21; -} -} -} -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_227 = lean_ctor_get(x_131, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_131, 1); -lean_inc(x_228); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - lean_ctor_release(x_131, 1); - x_229 = x_131; -} else { - lean_dec_ref(x_131); - x_229 = lean_box(0); -} -if (lean_is_scalar(x_229)) { - x_230 = lean_alloc_ctor(1, 2, 0); -} else { - x_230 = x_229; -} -lean_ctor_set(x_230, 0, x_227); -lean_ctor_set(x_230, 1, x_228); -return x_230; -} -} -else -{ -lean_object* x_231; lean_object* x_232; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_231 = lean_ctor_get(x_130, 0); -lean_inc(x_231); -lean_dec(x_130); -x_232 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_232, 0, x_231); -lean_ctor_set(x_232, 1, x_129); -return x_232; -} -} -block_21: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_12 = lean_st_ref_take(x_3, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -lean_inc(x_10); -x_15 = l_Lean_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(x_13, x_2, x_10); -x_16 = lean_st_ref_set(x_3, x_15, x_14); -x_17 = !lean_is_exclusive(x_16); -if (x_17 == 0) -{ -lean_object* x_18; -x_18 = lean_ctor_get(x_16, 0); -lean_dec(x_18); -lean_ctor_set(x_16, 0, x_10); -return x_16; -} -else -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 1); -lean_inc(x_19); -lean_dec(x_16); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_10); -lean_ctor_set(x_20, 1, x_19); -return x_20; -} -} -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___lambda__1(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) { _start: { @@ -2416,7 +1116,7 @@ x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); x_12 = l___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___closed__2; -x_13 = l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_12, x_1, x_10, x_2, x_3, x_4, x_5, x_6, x_11); +x_13 = l_Lean_ForEachExpr_visit___at_Lean_MVarId_replace_findMaxFVar___spec__1(x_12, x_1, x_10, x_2, x_3, x_4, x_5, x_6, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -2473,15 +1173,6 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1___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_ForEachExpr_visit___at___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_3); -return x_10; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Replace_0__Lean_Meta_replaceLocalDeclCore_findMaxFVar___lambda__1___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) { _start: { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c index 5f222aee95..34d767d38f 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c @@ -374,7 +374,6 @@ static lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_ LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremsFromConst___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*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremCore___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_SimpTheorem_priority___default; -lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(lean_object*, lean_object*); static lean_object* l_Lean_Meta_ppOrigin___rarg___lambda__1___closed__4; static lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_preprocess_go___closed__5; static lean_object* l___auto____x40_Lean_Meta_Tactic_Simp_SimpTheorems___hyg_4922____closed__13; @@ -550,6 +549,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_addSimpTheoremEntry___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_reduceDT(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SimpTheorem_getValue___closed__2; +lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(lean_object*, lean_object*); static lean_object* l_Lean_Meta_instInhabitedSimpTheorems___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremsFromConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1076,7 +1076,7 @@ x_100 = lean_box(1); x_101 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_101, 0, x_99); lean_ctor_set(x_101, 1, x_100); -x_102 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2056_(x_94, x_95); +x_102 = l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_3429_(x_94, x_95); x_103 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_103, 0, x_101); lean_ctor_set(x_103, 1, x_102); diff --git a/stage0/stdlib/Lean/Meta/Tactic/SolveByElim.c b/stage0/stdlib/Lean/Meta/Tactic/SolveByElim.c new file mode 100644 index 0000000000..714b1a35b8 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/SolveByElim.c @@ -0,0 +1,8282 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.SolveByElim +// Imports: Init.Data.Sum Lean.LabelAttribute Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Backtrack Lean.Meta.Tactic.Constructor Lean.Meta.Tactic.Repeat Lean.Meta.Tactic.Symm Lean.Elab.Term +#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 +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_all___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3; +lean_object* l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___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_List_removeAll___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__5(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__14; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_occurs___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirstLemma(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13; +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getId(lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15; +LEAN_EXPORT uint8_t l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18; +uint8_t lean_usize_dec_eq(size_t, size_t); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2; +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_SolveByElimConfig_backtracking___default; +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6___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_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3(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_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_elabContextLemmas___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +lean_object* l_Lean_Expr_mvar___override(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_any___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5___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 uint8_t l_Lean_Meta_SolveByElim_SolveByElimConfig_intro___default; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_instCoeSolveByElimConfigBacktrackConfig___boxed(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll(lean_object*, lean_object*); +static lean_object* l_Lean_MVarId_applyRules___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3___boxed(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_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1; +lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyLemmas(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_MVarId_applyRules___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_labelled(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10; +lean_object* l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1; +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_instCoeSolveByElimConfigBacktrackConfig(lean_object*); +lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_ApplyRulesConfig_exfalso___default; +lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10; +lean_object* l_Lean_MVarId_exfalso(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22; +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8; +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5; +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_TermElabM_run_x27___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___at_Lean_Meta_repeat_x27Core_go___spec__1(lean_object*, lean_object*); +uint8_t l_List_isEmpty___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2___boxed(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_Meta_SolveByElim_applyTactics___lambda__1___closed__2; +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14; +lean_object* lean_array_to_list(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19; +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20; +lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__3; +lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12; +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6; +LEAN_EXPORT lean_object* l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_SolveByElimConfig_constructor___default; +static lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1; +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16; +static lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2; +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___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_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_solveByElim___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_maxDepth___default; +lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___boxed(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_Meta_SolveByElim_applyTactics___lambda__1___closed__3; +static lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1; +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1; +lean_object* l_Lean_exceptEmoji___rarg(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_ApplyRulesConfig_symm___default; +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9; +uint8_t l_List_elem___at_Lean_ForEachExprWhere_checked___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1; +static lean_object* l_Lean_MVarId_applyRules___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_accept___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_intros(lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Iterator_ofList___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_environment_main_module(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7; +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1___boxed(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_Lean_MVarId_applyRules___spec__4___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_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8; +lean_object* l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1; +lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1; +LEAN_EXPORT lean_object* l_List_filterAuxM___at_Lean_Meta_SolveByElim_applyTactics___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_ApplyRulesConfig_maxDepth___default; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1; +static lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4; +lean_object* l_List_foldl___at_Array_appendList___spec__1___rarg(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_reverse___rarg(lean_object*); +static lean_object* l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_flatten___rarg(lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11; +lean_object* l_Lean_Expr_hasMVar___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter(lean_object*); +size_t lean_usize_add(size_t, size_t); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___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_Meta_Iterator_head___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21; +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13; +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_ApplyRulesConfig_transparency___default; +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirst(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_LocalDecl_toExpr(lean_object*); +lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2; +lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1; +uint8_t l_Lean_Exception_isRuntime(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4; +lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_String_toSubstring_x27(lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_MVarId_symmSaturate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_processOptions(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_accept(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_constructor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1; +lean_object* l_Lean_MVarId_inferInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6___boxed(lean_object*, lean_object*); +lean_object* l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Meta", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("solveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2; +x_3 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SolveByElim", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initFn", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_@", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_hyg", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19; +x_2 = lean_unsigned_to_nat(6u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6_(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_3 = 0; +x_4 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20; +x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_List_filterAuxM___at_Lean_Meta_SolveByElim_applyTactics___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_2); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +else +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_10); +x_12 = l_Lean_MVarId_inferInstance(x_10, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +lean_free_object(x_1); +lean_dec(x_10); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_1 = x_11; +x_7 = x_13; +goto _start; +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_12); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_12, 0); +x_17 = lean_ctor_get(x_12, 1); +x_18 = l_Lean_Exception_isRuntime(x_16); +if (x_18 == 0) +{ +lean_free_object(x_12); +lean_dec(x_16); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_11; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_17; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +uint8_t x_20; +x_20 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +if (x_20 == 0) +{ +lean_free_object(x_1); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +else +{ +lean_free_object(x_12); +lean_dec(x_16); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_11; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_17; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +} +else +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_12, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_12); +x_24 = l_Lean_Exception_isRuntime(x_22); +if (x_24 == 0) +{ +lean_dec(x_22); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_11; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_23; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +uint8_t x_26; +x_26 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +if (x_26 == 0) +{ +lean_object* x_27; +lean_free_object(x_1); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_22); +lean_ctor_set(x_27, 1, x_23); +return x_27; +} +else +{ +lean_dec(x_22); +lean_ctor_set(x_1, 1, x_2); +{ +lean_object* _tmp_0 = x_11; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_23; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +} +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_1, 0); +x_30 = lean_ctor_get(x_1, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_29); +x_31 = l_Lean_MVarId_inferInstance(x_29, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; +lean_dec(x_29); +x_32 = lean_ctor_get(x_31, 1); +lean_inc(x_32); +lean_dec(x_31); +x_1 = x_30; +x_7 = x_32; +goto _start; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_34 = lean_ctor_get(x_31, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_31, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_36 = x_31; +} else { + lean_dec_ref(x_31); + x_36 = lean_box(0); +} +x_37 = l_Lean_Exception_isRuntime(x_34); +if (x_37 == 0) +{ +lean_object* x_38; +lean_dec(x_36); +lean_dec(x_34); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_29); +lean_ctor_set(x_38, 1, x_2); +x_1 = x_30; +x_2 = x_38; +x_7 = x_35; +goto _start; +} +else +{ +uint8_t x_40; +x_40 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +if (x_40 == 0) +{ +lean_object* x_41; +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_36)) { + x_41 = lean_alloc_ctor(1, 2, 0); +} else { + x_41 = x_36; +} +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_35); +return x_41; +} +else +{ +lean_object* x_42; +lean_dec(x_36); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_29); +lean_ctor_set(x_42, 1, x_2); +x_1 = x_30; +x_2 = x_42; +x_7 = x_35; +goto _start; +} +} +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" trying to apply: ", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; 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; +x_8 = l_Lean_exceptEmoji___rarg(x_2); +x_9 = l_Lean_stringToMessageData(x_8); +lean_dec(x_8); +x_10 = l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__2; +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_MessageData_ofExpr(x_1); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_10); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_7); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__2(uint8_t 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; 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_10 = lean_ctor_get(x_5, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_5, 1); +lean_inc(x_11); +x_12 = lean_ctor_get(x_5, 2); +lean_inc(x_12); +x_13 = lean_ctor_get(x_5, 3); +lean_inc(x_13); +x_14 = lean_ctor_get(x_5, 4); +lean_inc(x_14); +x_15 = lean_ctor_get(x_5, 5); +lean_inc(x_15); +x_16 = !lean_is_exclusive(x_10); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_ctor_set_uint8(x_10, 9, x_1); +x_17 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_11); +lean_ctor_set(x_17, 2, x_12); +lean_ctor_set(x_17, 3, x_13); +lean_ctor_set(x_17, 4, x_14); +lean_ctor_set(x_17, 5, x_15); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_18 = l_Lean_MVarId_apply(x_2, x_3, x_4, x_17, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_18) == 0) +{ +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 = lean_box(0); +x_22 = l_List_filterAuxM___at_Lean_Meta_SolveByElim_applyTactics___spec__1(x_19, x_21, x_5, x_6, x_7, x_8, x_20); +if (lean_obj_tag(x_22) == 0) +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +x_25 = l_List_reverse___rarg(x_24); +lean_ctor_set(x_22, 0, x_25); +return x_22; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_22, 0); +x_27 = lean_ctor_get(x_22, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_22); +x_28 = l_List_reverse___rarg(x_26); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_22); +if (x_30 == 0) +{ +return x_22; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_22, 0); +x_32 = lean_ctor_get(x_22, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_22); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +uint8_t x_34; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_34 = !lean_is_exclusive(x_18); +if (x_34 == 0) +{ +return x_18; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_18, 0); +x_36 = lean_ctor_get(x_18, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_18); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +else +{ +uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; uint8_t x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_38 = lean_ctor_get_uint8(x_10, 0); +x_39 = lean_ctor_get_uint8(x_10, 1); +x_40 = lean_ctor_get_uint8(x_10, 2); +x_41 = lean_ctor_get_uint8(x_10, 3); +x_42 = lean_ctor_get_uint8(x_10, 4); +x_43 = lean_ctor_get_uint8(x_10, 5); +x_44 = lean_ctor_get_uint8(x_10, 6); +x_45 = lean_ctor_get_uint8(x_10, 7); +x_46 = lean_ctor_get_uint8(x_10, 8); +x_47 = lean_ctor_get_uint8(x_10, 10); +x_48 = lean_ctor_get_uint8(x_10, 11); +lean_dec(x_10); +x_49 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_49, 0, x_38); +lean_ctor_set_uint8(x_49, 1, x_39); +lean_ctor_set_uint8(x_49, 2, x_40); +lean_ctor_set_uint8(x_49, 3, x_41); +lean_ctor_set_uint8(x_49, 4, x_42); +lean_ctor_set_uint8(x_49, 5, x_43); +lean_ctor_set_uint8(x_49, 6, x_44); +lean_ctor_set_uint8(x_49, 7, x_45); +lean_ctor_set_uint8(x_49, 8, x_46); +lean_ctor_set_uint8(x_49, 9, x_1); +lean_ctor_set_uint8(x_49, 10, x_47); +lean_ctor_set_uint8(x_49, 11, x_48); +x_50 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_11); +lean_ctor_set(x_50, 2, x_12); +lean_ctor_set(x_50, 3, x_13); +lean_ctor_set(x_50, 4, x_14); +lean_ctor_set(x_50, 5, x_15); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_51 = l_Lean_MVarId_apply(x_2, x_3, x_4, x_50, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +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 = lean_box(0); +x_55 = l_List_filterAuxM___at_Lean_Meta_SolveByElim_applyTactics___spec__1(x_52, x_54, x_5, x_6, x_7, x_8, x_53); +if (lean_obj_tag(x_55) == 0) +{ +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_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; +} else { + lean_dec_ref(x_55); + x_58 = lean_box(0); +} +x_59 = l_List_reverse___rarg(x_56); +if (lean_is_scalar(x_58)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_58; +} +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_57); +return x_60; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_55, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_55, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_63 = x_55; +} else { + lean_dec_ref(x_55); + x_63 = lean_box(0); +} +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); +} else { + x_64 = x_63; +} +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_65 = lean_ctor_get(x_51, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_51, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + x_67 = x_51; +} else { + lean_dec_ref(x_51); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__3(uint8_t 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; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_inc(x_4); +x_10 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyTactics___lambda__1___boxed), 7, 1); +lean_closure_set(x_10, 0, x_4); +x_11 = lean_box(x_1); +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyTactics___lambda__2___boxed), 9, 4); +lean_closure_set(x_12, 0, x_11); +lean_closure_set(x_12, 1, x_2); +lean_closure_set(x_12, 2, x_4); +lean_closure_set(x_12, 3, x_3); +x_13 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_14 = 1; +x_15 = lean_box(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___boxed), 9, 4); +lean_closure_set(x_16, 0, x_13); +lean_closure_set(x_16, 1, x_10); +lean_closure_set(x_16, 2, x_12); +lean_closure_set(x_16, 3, x_15); +x_17 = l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(x_16, x_5, x_6, x_7, x_8, x_9); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics(lean_object* x_1, uint8_t 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; uint8_t x_11; +x_10 = l_Lean_Meta_Iterator_ofList___rarg(x_3, x_5, x_6, 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; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_box(x_2); +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyTactics___lambda__3___boxed), 9, 3); +lean_closure_set(x_14, 0, x_13); +lean_closure_set(x_14, 1, x_4); +lean_closure_set(x_14, 2, x_1); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg), 7, 2); +lean_closure_set(x_15, 0, x_14); +lean_closure_set(x_15, 1, x_12); +lean_ctor_set(x_10, 0, x_15); +return x_10; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_10, 0); +x_17 = lean_ctor_get(x_10, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_10); +x_18 = lean_box(x_2); +x_19 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyTactics___lambda__3___boxed), 9, 3); +lean_closure_set(x_19, 0, x_18); +lean_closure_set(x_19, 1, x_4); +lean_closure_set(x_19, 2, x_1); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_Iterator_filterMapM___elambda__1___rarg), 7, 2); +lean_closure_set(x_20, 0, x_19); +lean_closure_set(x_20, 1, x_16); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_17); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_SolveByElim_applyTactics___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l_Lean_Meta_SolveByElim_applyTactics___lambda__2(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___lambda__3___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +lean_dec(x_1); +x_11 = l_Lean_Meta_SolveByElim_applyTactics___lambda__3(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyTactics___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_2); +lean_dec(x_2); +x_11 = l_Lean_Meta_SolveByElim_applyTactics(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirst(lean_object* x_1, uint8_t 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; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = l_Lean_Meta_SolveByElim_applyTactics(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_Lean_Meta_Iterator_head___rarg(x_11, x_5, x_6, x_7, x_8, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirst___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_2); +lean_dec(x_2); +x_11 = l_Lean_Meta_SolveByElim_applyFirst(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_maxDepth___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_unsigned_to_nat(50u); +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_transparency___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_symm___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_exfalso___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_maxDepth___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_unsigned_to_nat(6u); +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_backtracking___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_intro___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +static uint8_t _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructor___default() { +_start: +{ +uint8_t x_1; +x_1 = 1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_instCoeSolveByElimConfigBacktrackConfig(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_ctor_get(x_1, 0); +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_instCoeSolveByElimConfigBacktrackConfig___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_instCoeSolveByElimConfigBacktrackConfig(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_accept___lambda__1(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_9 = lean_apply_6(x_1, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_unbox(x_10); +lean_dec(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_dec(x_9); +x_13 = lean_ctor_get(x_2, 3); +lean_inc(x_13); +lean_dec(x_2); +x_14 = lean_apply_6(x_13, x_3, x_4, x_5, x_6, x_7, x_12); +return x_14; +} +else +{ +uint8_t x_15; +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_15 = !lean_is_exclusive(x_9); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_9, 0); +lean_dec(x_16); +x_17 = lean_box(0); +lean_ctor_set(x_9, 0, x_17); +return x_9; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_dec(x_9); +x_19 = lean_box(0); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +} +else +{ +uint8_t x_21; +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_21 = !lean_is_exclusive(x_9); +if (x_21 == 0) +{ +return x_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_9, 0); +x_23 = lean_ctor_get(x_9, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_9); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_accept(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = !lean_is_exclusive(x_3); +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_object* x_13; uint8_t x_14; +x_8 = lean_ctor_get(x_3, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_4, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 2); +lean_inc(x_11); +x_12 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_accept___lambda__1), 8, 2); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_4); +x_14 = !lean_is_exclusive(x_4); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_4, 3); +lean_dec(x_15); +x_16 = lean_ctor_get(x_4, 2); +lean_dec(x_16); +x_17 = lean_ctor_get(x_4, 1); +lean_dec(x_17); +x_18 = lean_ctor_get(x_4, 0); +lean_dec(x_18); +lean_ctor_set(x_4, 3, x_13); +return x_1; +} +else +{ +lean_object* x_19; +lean_dec(x_4); +x_19 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_10); +lean_ctor_set(x_19, 2, x_11); +lean_ctor_set(x_19, 3, x_13); +lean_ctor_set_uint8(x_19, sizeof(void*)*4, x_12); +lean_ctor_set(x_3, 0, x_19); +return x_1; +} +} +else +{ +lean_object* x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_20 = lean_ctor_get(x_3, 1); +x_21 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_22 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_23 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +lean_inc(x_20); +lean_dec(x_3); +x_24 = lean_ctor_get(x_4, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_4, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_4, 2); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_accept___lambda__1), 8, 2); +lean_closure_set(x_28, 0, x_2); +lean_closure_set(x_28, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_29 = x_4; +} else { + lean_dec_ref(x_4); + x_29 = lean_box(0); +} +if (lean_is_scalar(x_29)) { + x_30 = lean_alloc_ctor(0, 4, 1); +} else { + x_30 = x_29; +} +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_25); +lean_ctor_set(x_30, 2, x_26); +lean_ctor_set(x_30, 3, x_28); +lean_ctor_set_uint8(x_30, sizeof(void*)*4, x_27); +x_31 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_20); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 1, x_22); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 2, x_23); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +} +else +{ +uint8_t x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_32 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +x_33 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +x_34 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_dec(x_1); +x_35 = lean_ctor_get(x_3, 1); +lean_inc(x_35); +x_36 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + x_39 = x_3; +} else { + lean_dec_ref(x_3); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_4, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_4, 1); +lean_inc(x_41); +x_42 = lean_ctor_get(x_4, 2); +lean_inc(x_42); +x_43 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_44 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_accept___lambda__1), 8, 2); +lean_closure_set(x_44, 0, x_2); +lean_closure_set(x_44, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_45 = x_4; +} else { + lean_dec_ref(x_4); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(0, 4, 1); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_40); +lean_ctor_set(x_46, 1, x_41); +lean_ctor_set(x_46, 2, x_42); +lean_ctor_set(x_46, 3, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*4, x_43); +if (lean_is_scalar(x_39)) { + x_47 = lean_alloc_ctor(0, 2, 3); +} else { + x_47 = x_39; +} +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_35); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_36); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 1, x_37); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 2, x_38); +x_48 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_32); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 1, x_33); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 2, x_34); +return x_48; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc___lambda__1(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: +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_2); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_dec(x_1); +x_11 = lean_box(0); +x_12 = lean_apply_7(x_10, x_3, x_11, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_4, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_4, 1); +lean_inc(x_14); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_15 = lean_apply_6(x_2, x_13, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +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_1); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +x_18 = l_List_appendTR___rarg(x_17, x_14); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_15, 0, x_19); +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_15, 0); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_15); +x_22 = l_List_appendTR___rarg(x_20, x_14); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_21); +return x_24; +} +} +else +{ +uint8_t x_25; +lean_dec(x_14); +x_25 = !lean_is_exclusive(x_15); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_15, 0); +x_27 = lean_ctor_get(x_15, 1); +x_28 = l_Lean_Exception_isRuntime(x_26); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_free_object(x_15); +lean_dec(x_26); +x_29 = lean_ctor_get(x_1, 1); +lean_inc(x_29); +lean_dec(x_1); +x_30 = lean_apply_7(x_29, x_3, x_4, x_5, x_6, x_7, x_8, x_27); +if (lean_obj_tag(x_30) == 0) +{ +uint8_t x_31; +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +return x_30; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_30, 0); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_30); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +else +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_30); +if (x_35 == 0) +{ +return x_30; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_30, 0); +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_30); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +else +{ +uint8_t x_39; +x_39 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_39 == 0) +{ +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_1); +return x_15; +} +else +{ +lean_object* x_40; lean_object* x_41; +lean_free_object(x_15); +lean_dec(x_26); +x_40 = lean_ctor_get(x_1, 1); +lean_inc(x_40); +lean_dec(x_1); +x_41 = lean_apply_7(x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_27); +if (lean_obj_tag(x_41) == 0) +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) +{ +return x_41; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +else +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) +{ +return x_41; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +} +} +else +{ +lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_50 = lean_ctor_get(x_15, 0); +x_51 = lean_ctor_get(x_15, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_15); +x_52 = l_Lean_Exception_isRuntime(x_50); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_50); +x_53 = lean_ctor_get(x_1, 1); +lean_inc(x_53); +lean_dec(x_1); +x_54 = lean_apply_7(x_53, x_3, x_4, x_5, x_6, x_7, x_8, x_51); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; +} else { + lean_dec_ref(x_54); + x_57 = lean_box(0); +} +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); +} else { + x_58 = x_57; +} +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; +} else { + lean_dec_ref(x_54); + x_61 = lean_box(0); +} +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); +} else { + x_62 = x_61; +} +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; +} +} +else +{ +uint8_t x_63; +x_63 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_63 == 0) +{ +lean_object* x_64; +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_1); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_50); +lean_ctor_set(x_64, 1, x_51); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; +lean_dec(x_50); +x_65 = lean_ctor_get(x_1, 1); +lean_inc(x_65); +lean_dec(x_1); +x_66 = lean_apply_7(x_65, x_3, x_4, x_5, x_6, x_7, x_8, x_51); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + x_69 = x_66; +} else { + lean_dec_ref(x_66); + x_69 = lean_box(0); +} +if (lean_is_scalar(x_69)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_69; +} +lean_ctor_set(x_70, 0, x_67); +lean_ctor_set(x_70, 1, x_68); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_66, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_66, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + x_73 = x_66; +} else { + lean_dec_ref(x_66); + x_73 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(1, 2, 0); +} else { + x_74 = x_73; +} +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_72); +return x_74; +} +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = !lean_is_exclusive(x_3); +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_object* x_13; uint8_t x_14; +x_8 = lean_ctor_get(x_3, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_4, 2); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 3); +lean_inc(x_11); +x_12 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc___lambda__1), 9, 2); +lean_closure_set(x_13, 0, x_4); +lean_closure_set(x_13, 1, x_2); +x_14 = !lean_is_exclusive(x_4); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_4, 3); +lean_dec(x_15); +x_16 = lean_ctor_get(x_4, 2); +lean_dec(x_16); +x_17 = lean_ctor_get(x_4, 1); +lean_dec(x_17); +x_18 = lean_ctor_get(x_4, 0); +lean_dec(x_18); +lean_ctor_set(x_4, 1, x_13); +return x_1; +} +else +{ +lean_object* x_19; +lean_dec(x_4); +x_19 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_10); +lean_ctor_set(x_19, 3, x_11); +lean_ctor_set_uint8(x_19, sizeof(void*)*4, x_12); +lean_ctor_set(x_3, 0, x_19); +return x_1; +} +} +else +{ +lean_object* x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_20 = lean_ctor_get(x_3, 1); +x_21 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_22 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_23 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +lean_inc(x_20); +lean_dec(x_3); +x_24 = lean_ctor_get(x_4, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_4, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_4, 3); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc___lambda__1), 9, 2); +lean_closure_set(x_28, 0, x_4); +lean_closure_set(x_28, 1, x_2); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_29 = x_4; +} else { + lean_dec_ref(x_4); + x_29 = lean_box(0); +} +if (lean_is_scalar(x_29)) { + x_30 = lean_alloc_ctor(0, 4, 1); +} else { + x_30 = x_29; +} +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_28); +lean_ctor_set(x_30, 2, x_25); +lean_ctor_set(x_30, 3, x_26); +lean_ctor_set_uint8(x_30, sizeof(void*)*4, x_27); +x_31 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_20); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 1, x_22); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 2, x_23); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +} +else +{ +uint8_t x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_32 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +x_33 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +x_34 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_dec(x_1); +x_35 = lean_ctor_get(x_3, 1); +lean_inc(x_35); +x_36 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + x_39 = x_3; +} else { + lean_dec_ref(x_3); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_4, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_4, 2); +lean_inc(x_41); +x_42 = lean_ctor_get(x_4, 3); +lean_inc(x_42); +x_43 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_44 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc___lambda__1), 9, 2); +lean_closure_set(x_44, 0, x_4); +lean_closure_set(x_44, 1, x_2); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_45 = x_4; +} else { + lean_dec_ref(x_4); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(0, 4, 1); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_40); +lean_ctor_set(x_46, 1, x_44); +lean_ctor_set(x_46, 2, x_41); +lean_ctor_set(x_46, 3, x_42); +lean_ctor_set_uint8(x_46, sizeof(void*)*4, x_43); +if (lean_is_scalar(x_39)) { + x_47 = lean_alloc_ctor(0, 2, 3); +} else { + x_47 = x_39; +} +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_35); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_36); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 1, x_37); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 2, x_38); +x_48 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_32); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 1, x_33); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 2, x_34); +return x_48; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = 1; +x_8 = l_Lean_Meta_intro1Core(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +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; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +lean_ctor_set(x_8, 0, x_13); +return x_8; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_14 = lean_ctor_get(x_8, 0); +x_15 = lean_ctor_get(x_8, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_8); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_box(0); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_15); +return x_19; +} +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_8); +if (x_20 == 0) +{ +return x_8; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_8, 0); +x_22 = lean_ctor_get(x_8, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_8); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___lambda__1), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_intros(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_1); +x_7 = l_Lean_MVarId_getType(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_box(0); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_11 = l_Lean_Meta_synthInstance(x_8, x_10, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_12, x_2, x_3, x_4, x_5, x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +lean_dec(x_16); +x_17 = lean_box(0); +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_dec(x_14); +x_19 = lean_box(0); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_21 = !lean_is_exclusive(x_11); +if (x_21 == 0) +{ +return x_11; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_11); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_7); +if (x_25 == 0) +{ +return x_7; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___lambda__1), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_mainGoalProc(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge___lambda__1(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_9 = lean_apply_6(x_1, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +x_13 = l_Lean_Exception_isRuntime(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_free_object(x_9); +lean_dec(x_11); +x_14 = lean_ctor_get(x_2, 3); +lean_inc(x_14); +lean_dec(x_2); +x_15 = lean_apply_6(x_14, x_3, x_4, x_5, x_6, x_7, x_12); +return x_15; +} +else +{ +uint8_t x_16; +x_16 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_16 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +else +{ +lean_object* x_17; lean_object* x_18; +lean_free_object(x_9); +lean_dec(x_11); +x_17 = lean_ctor_get(x_2, 3); +lean_inc(x_17); +lean_dec(x_2); +x_18 = lean_apply_6(x_17, x_3, x_4, x_5, x_6, x_7, x_12); +return x_18; +} +} +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_9, 0); +x_20 = lean_ctor_get(x_9, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_9); +x_21 = l_Lean_Exception_isRuntime(x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_19); +x_22 = lean_ctor_get(x_2, 3); +lean_inc(x_22); +lean_dec(x_2); +x_23 = lean_apply_6(x_22, x_3, x_4, x_5, x_6, x_7, x_20); +return x_23; +} +else +{ +uint8_t x_24; +x_24 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_24 == 0) +{ +lean_object* x_25; +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_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_19); +lean_ctor_set(x_25, 1, x_20); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; +lean_dec(x_19); +x_26 = lean_ctor_get(x_2, 3); +lean_inc(x_26); +lean_dec(x_2); +x_27 = lean_apply_6(x_26, x_3, x_4, x_5, x_6, x_7, x_20); +return x_27; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = !lean_is_exclusive(x_3); +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_object* x_13; uint8_t x_14; +x_8 = lean_ctor_get(x_3, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_4, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 2); +lean_inc(x_11); +x_12 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge___lambda__1), 8, 2); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_4); +x_14 = !lean_is_exclusive(x_4); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_4, 3); +lean_dec(x_15); +x_16 = lean_ctor_get(x_4, 2); +lean_dec(x_16); +x_17 = lean_ctor_get(x_4, 1); +lean_dec(x_17); +x_18 = lean_ctor_get(x_4, 0); +lean_dec(x_18); +lean_ctor_set(x_4, 3, x_13); +return x_1; +} +else +{ +lean_object* x_19; +lean_dec(x_4); +x_19 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_10); +lean_ctor_set(x_19, 2, x_11); +lean_ctor_set(x_19, 3, x_13); +lean_ctor_set_uint8(x_19, sizeof(void*)*4, x_12); +lean_ctor_set(x_3, 0, x_19); +return x_1; +} +} +else +{ +lean_object* x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_20 = lean_ctor_get(x_3, 1); +x_21 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_22 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_23 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +lean_inc(x_20); +lean_dec(x_3); +x_24 = lean_ctor_get(x_4, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_4, 1); +lean_inc(x_25); +x_26 = lean_ctor_get(x_4, 2); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge___lambda__1), 8, 2); +lean_closure_set(x_28, 0, x_2); +lean_closure_set(x_28, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_29 = x_4; +} else { + lean_dec_ref(x_4); + x_29 = lean_box(0); +} +if (lean_is_scalar(x_29)) { + x_30 = lean_alloc_ctor(0, 4, 1); +} else { + x_30 = x_29; +} +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_25); +lean_ctor_set(x_30, 2, x_26); +lean_ctor_set(x_30, 3, x_28); +lean_ctor_set_uint8(x_30, sizeof(void*)*4, x_27); +x_31 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_20); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 1, x_22); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 2, x_23); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +} +else +{ +uint8_t x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_32 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +x_33 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +x_34 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_dec(x_1); +x_35 = lean_ctor_get(x_3, 1); +lean_inc(x_35); +x_36 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + x_39 = x_3; +} else { + lean_dec_ref(x_3); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_4, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_4, 1); +lean_inc(x_41); +x_42 = lean_ctor_get(x_4, 2); +lean_inc(x_42); +x_43 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_44 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge___lambda__1), 8, 2); +lean_closure_set(x_44, 0, x_2); +lean_closure_set(x_44, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_45 = x_4; +} else { + lean_dec_ref(x_4); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(0, 4, 1); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_40); +lean_ctor_set(x_46, 1, x_41); +lean_ctor_set(x_46, 2, x_42); +lean_ctor_set(x_46, 3, x_44); +lean_ctor_set_uint8(x_46, sizeof(void*)*4, x_43); +if (lean_is_scalar(x_39)) { + x_47 = lean_alloc_ctor(0, 2, 3); +} else { + x_47 = x_39; +} +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_35); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_36); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 1, x_37); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 2, x_38); +x_48 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_32); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 1, x_33); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 2, x_34); +return x_48; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = 1; +x_8 = l_Lean_Meta_intro1Core(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +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; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_8, 0, x_14); +return x_8; +} +else +{ +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; +x_15 = lean_ctor_get(x_8, 0); +x_16 = lean_ctor_get(x_8, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_8); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_box(0); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_16); +return x_21; +} +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_8); +if (x_22 == 0) +{ +return x_8; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_8, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_8); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___lambda__1), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; +x_1 = 2; +x_2 = 1; +x_3 = 0; +x_4 = lean_alloc_ctor(0, 0, 4); +lean_ctor_set_uint8(x_4, 0, x_1); +lean_ctor_set_uint8(x_4, 1, x_2); +lean_ctor_set_uint8(x_4, 2, x_3); +lean_ctor_set_uint8(x_4, 3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1; +x_8 = l_Lean_MVarId_constructor(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_12); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_8); +if (x_16 == 0) +{ +return x_8; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_8, 0); +x_18 = lean_ctor_get(x_8, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_8); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_1); +x_7 = l_Lean_MVarId_getType(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_box(0); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_11 = l_Lean_Meta_synthInstance(x_8, x_10, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_12, x_2, x_3, x_4, x_5, x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +lean_dec(x_16); +x_17 = l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1; +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_dec(x_14); +x_19 = l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1; +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_21 = !lean_is_exclusive(x_11); +if (x_21 == 0) +{ +return x_11; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_11); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_7); +if (x_25 == 0) +{ +return x_7; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_1); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +x_13 = l_Lean_Expr_mvar___override(x_11); +x_14 = lean_alloc_closure((void*)(l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed), 6, 1); +lean_closure_set(x_14, 0, x_13); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_15 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_11, x_14, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_16); +{ +lean_object* _tmp_0 = x_12; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_17; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_19 = !lean_is_exclusive(x_15); +if (x_19 == 0) +{ +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_15, 0); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_15); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_1); +lean_inc(x_23); +x_25 = l_Lean_Expr_mvar___override(x_23); +x_26 = lean_alloc_closure((void*)(l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1___boxed), 6, 1); +lean_closure_set(x_26, 0, x_25); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_27 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_23, x_26, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +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_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_2); +x_1 = x_24; +x_2 = x_30; +x_7 = x_29; +goto _start; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_24); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_32 = lean_ctor_get(x_27, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_27, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + x_34 = x_27; +} else { + lean_dec_ref(x_27); + x_34 = lean_box(0); +} +if (lean_is_scalar(x_34)) { + x_35 = lean_alloc_ctor(1, 2, 0); +} else { + x_35 = x_34; +} +lean_ctor_set(x_35, 0, x_32); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1(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; lean_object* x_11; +x_10 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_3); +x_11 = l_List_mapM_loop___at_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___spec__1(x_3, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_14 = lean_apply_6(x_1, x_12, x_5, x_6, x_7, x_8, x_13); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_unbox(x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_dec(x_14); +x_18 = l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2; +x_19 = l_Lean_throwError___at_Lean_Meta_Tactic_Backtrack_BacktrackConfig_discharge___default___spec__1(x_18, x_5, x_6, x_7, x_8, x_17); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_14, 1); +lean_inc(x_20); +lean_dec(x_14); +x_21 = lean_ctor_get(x_2, 1); +lean_inc(x_21); +lean_dec(x_2); +x_22 = lean_apply_7(x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_20); +return x_22; +} +} +else +{ +uint8_t x_23; +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_23 = !lean_is_exclusive(x_14); +if (x_23 == 0) +{ +return x_14; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_14, 0); +x_25 = lean_ctor_get(x_14, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_14); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +else +{ +uint8_t x_27; +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); +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_11); +if (x_27 == 0) +{ +return x_11; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_11, 0); +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_11); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_ctor_get(x_1, 0); +lean_dec(x_6); +x_7 = !lean_is_exclusive(x_3); +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_object* x_13; uint8_t x_14; +x_8 = lean_ctor_get(x_3, 0); +lean_dec(x_8); +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_4, 2); +lean_inc(x_10); +x_11 = lean_ctor_get(x_4, 3); +lean_inc(x_11); +x_12 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1), 9, 2); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_4); +x_14 = !lean_is_exclusive(x_4); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_4, 3); +lean_dec(x_15); +x_16 = lean_ctor_get(x_4, 2); +lean_dec(x_16); +x_17 = lean_ctor_get(x_4, 1); +lean_dec(x_17); +x_18 = lean_ctor_get(x_4, 0); +lean_dec(x_18); +lean_ctor_set(x_4, 1, x_13); +return x_1; +} +else +{ +lean_object* x_19; +lean_dec(x_4); +x_19 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_19, 0, x_9); +lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 2, x_10); +lean_ctor_set(x_19, 3, x_11); +lean_ctor_set_uint8(x_19, sizeof(void*)*4, x_12); +lean_ctor_set(x_3, 0, x_19); +return x_1; +} +} +else +{ +lean_object* x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_20 = lean_ctor_get(x_3, 1); +x_21 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_22 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_23 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +lean_inc(x_20); +lean_dec(x_3); +x_24 = lean_ctor_get(x_4, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_4, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_4, 3); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_28 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1), 9, 2); +lean_closure_set(x_28, 0, x_2); +lean_closure_set(x_28, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_29 = x_4; +} else { + lean_dec_ref(x_4); + x_29 = lean_box(0); +} +if (lean_is_scalar(x_29)) { + x_30 = lean_alloc_ctor(0, 4, 1); +} else { + x_30 = x_29; +} +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_28); +lean_ctor_set(x_30, 2, x_25); +lean_ctor_set(x_30, 3, x_26); +lean_ctor_set_uint8(x_30, sizeof(void*)*4, x_27); +x_31 = lean_alloc_ctor(0, 2, 3); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_20); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_21); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 1, x_22); +lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 2, x_23); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +} +else +{ +uint8_t x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_32 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +x_33 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +x_34 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_dec(x_1); +x_35 = lean_ctor_get(x_3, 1); +lean_inc(x_35); +x_36 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_37 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 1); +x_38 = lean_ctor_get_uint8(x_3, sizeof(void*)*2 + 2); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + x_39 = x_3; +} else { + lean_dec_ref(x_3); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_4, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_4, 2); +lean_inc(x_41); +x_42 = lean_ctor_get(x_4, 3); +lean_inc(x_42); +x_43 = lean_ctor_get_uint8(x_4, sizeof(void*)*4); +lean_inc(x_4); +x_44 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1), 9, 2); +lean_closure_set(x_44, 0, x_2); +lean_closure_set(x_44, 1, x_4); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + lean_ctor_release(x_4, 2); + lean_ctor_release(x_4, 3); + x_45 = x_4; +} else { + lean_dec_ref(x_4); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(0, 4, 1); +} else { + x_46 = x_45; +} +lean_ctor_set(x_46, 0, x_40); +lean_ctor_set(x_46, 1, x_44); +lean_ctor_set(x_46, 2, x_41); +lean_ctor_set(x_46, 3, x_42); +lean_ctor_set_uint8(x_46, sizeof(void*)*4, x_43); +if (lean_is_scalar(x_39)) { + x_47 = lean_alloc_ctor(0, 2, 3); +} else { + x_47 = x_39; +} +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_35); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_36); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 1, x_37); +lean_ctor_set_uint8(x_47, sizeof(void*)*2 + 2, x_38); +x_48 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set_uint8(x_48, sizeof(void*)*1, x_32); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 1, x_33); +lean_ctor_set_uint8(x_48, sizeof(void*)*1 + 2, x_34); +return x_48; +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Expr_hasMVar___boxed), 1, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1; +lean_inc(x_2); +x_9 = l_List_any___rarg(x_2, x_8); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = lean_apply_6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +else +{ +uint8_t x_11; lean_object* x_12; lean_object* x_13; +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_11 = 1; +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1), 7, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions(x_1, x_3); +return x_4; +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint8_t x_4; +x_3 = lean_alloc_closure((void*)(l_Lean_Expr_occurs___boxed), 2, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_List_any___rarg(x_1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___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) { +_start: +{ +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1___boxed), 2, 1); +lean_closure_set(x_8, 0, x_2); +x_9 = l_List_all___rarg(x_1, x_8); +x_10 = lean_box(x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__2___boxed), 7, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions(x_1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__1(x_1, x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_SolveByElim_SolveByElimConfig_requireUsingAll___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_SolveByElimConfig_processOptions(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +if (x_2 == 0) +{ +uint8_t x_3; +x_3 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +if (x_3 == 0) +{ +return x_1; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +uint8_t x_5; lean_object* x_6; lean_object* x_7; +x_5 = 0; +lean_ctor_set_uint8(x_1, sizeof(void*)*1 + 2, x_5); +x_6 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_7 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_1, x_6); +return x_7; +} +else +{ +lean_object* x_8; uint8_t x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +lean_inc(x_8); +lean_dec(x_1); +x_10 = 0; +x_11 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set_uint8(x_11, sizeof(void*)*1, x_9); +lean_ctor_set_uint8(x_11, sizeof(void*)*1 + 1, x_2); +lean_ctor_set_uint8(x_11, sizeof(void*)*1 + 2, x_10); +x_12 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_13 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_11, x_12); +return x_13; +} +} +} +else +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_1); +if (x_14 == 0) +{ +uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = 0; +lean_ctor_set_uint8(x_1, sizeof(void*)*1 + 1, x_15); +x_16 = l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1; +x_17 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_1, x_16); +x_18 = lean_ctor_get_uint8(x_17, sizeof(void*)*1 + 2); +if (x_18 == 0) +{ +return x_17; +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_17); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 2, x_15); +x_20 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_21 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_17, x_20); +return x_21; +} +else +{ +lean_object* x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_22 = lean_ctor_get(x_17, 0); +x_23 = lean_ctor_get_uint8(x_17, sizeof(void*)*1); +x_24 = lean_ctor_get_uint8(x_17, sizeof(void*)*1 + 1); +lean_inc(x_22); +lean_dec(x_17); +x_25 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_25, 0, x_22); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_23); +lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 1, x_24); +lean_ctor_set_uint8(x_25, sizeof(void*)*1 + 2, x_15); +x_26 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_27 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_25, x_26); +return x_27; +} +} +} +else +{ +lean_object* x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_28 = lean_ctor_get(x_1, 0); +x_29 = lean_ctor_get_uint8(x_1, sizeof(void*)*1); +x_30 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_inc(x_28); +lean_dec(x_1); +x_31 = 0; +x_32 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_32, 0, x_28); +lean_ctor_set_uint8(x_32, sizeof(void*)*1, x_29); +lean_ctor_set_uint8(x_32, sizeof(void*)*1 + 1, x_31); +lean_ctor_set_uint8(x_32, sizeof(void*)*1 + 2, x_30); +x_33 = l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1; +x_34 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_32, x_33); +x_35 = lean_ctor_get_uint8(x_34, sizeof(void*)*1 + 2); +if (x_35 == 0) +{ +return x_34; +} +else +{ +lean_object* x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_36 = lean_ctor_get(x_34, 0); +lean_inc(x_36); +x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*1); +x_38 = lean_ctor_get_uint8(x_34, sizeof(void*)*1 + 1); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + x_39 = x_34; +} else { + lean_dec_ref(x_34); + x_39 = lean_box(0); +} +if (lean_is_scalar(x_39)) { + x_40 = lean_alloc_ctor(0, 1, 3); +} else { + x_40 = x_39; +} +lean_ctor_set(x_40, 0, x_36); +lean_ctor_set_uint8(x_40, sizeof(void*)*1, x_37); +lean_ctor_set_uint8(x_40, sizeof(void*)*1 + 1, x_38); +lean_ctor_set_uint8(x_40, sizeof(void*)*1 + 2, x_31); +x_41 = l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1; +x_42 = l_Lean_Meta_SolveByElim_SolveByElimConfig_withDischarge(x_40, x_41); +return x_42; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_elabContextLemmas___spec__1(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: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_10 = l_List_reverse___rarg(x_2); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +else +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_1, 0); +x_14 = lean_ctor_get(x_1, 1); +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_15 = lean_apply_7(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_16); +{ +lean_object* _tmp_0 = x_14; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_8 = x_17; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_9 = _tmp_8; +} +goto _start; +} +else +{ +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_14); +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_19 = !lean_is_exclusive(x_15); +if (x_19 == 0) +{ +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_15, 0); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_15); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_1); +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_25 = lean_apply_7(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +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_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_2); +x_1 = x_24; +x_2 = x_28; +x_9 = x_27; +goto _start; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_24); +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_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_32 = x_25; +} else { + lean_dec_ref(x_25); + x_32 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_33 = lean_alloc_ctor(1, 2, 0); +} else { + x_33 = x_32; +} +lean_ctor_set(x_33, 0, x_30); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__1(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; +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_10 = lean_apply_7(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_box(0); +x_14 = l_List_mapM_loop___at_Lean_Meta_SolveByElim_elabContextLemmas___spec__1(x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_14, 0); +x_17 = l_List_appendTR___rarg(x_11, x_16); +lean_ctor_set(x_14, 0, x_17); +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_14, 0); +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_14); +x_20 = l_List_appendTR___rarg(x_11, x_18); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_dec(x_11); +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) +{ +return x_14; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +uint8_t x_26; +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_26 = !lean_is_exclusive(x_10); +if (x_26 == 0) +{ +return x_10; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_10, 0); +x_28 = lean_ctor_get(x_10, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_10); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = 0; +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1; +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_Meta_SolveByElim_elabContextLemmas___closed__3() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2; +x_3 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_4); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_box(0); +x_4 = 1; +x_5 = 0; +x_6 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__3; +x_7 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4; +x_8 = lean_alloc_ctor(0, 8, 10); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_2); +lean_ctor_set(x_8, 2, x_3); +lean_ctor_set(x_8, 3, x_6); +lean_ctor_set(x_8, 4, x_7); +lean_ctor_set(x_8, 5, x_2); +lean_ctor_set(x_8, 6, x_2); +lean_ctor_set(x_8, 7, x_1); +lean_ctor_set_uint8(x_8, sizeof(void*)*8, x_4); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 1, x_4); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 2, x_5); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 3, x_4); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 4, x_4); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 5, x_5); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 6, x_5); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 7, x_5); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 8, x_4); +lean_ctor_set_uint8(x_8, sizeof(void*)*8 + 9, x_5); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 2, x_2); +lean_ctor_set(x_3, 3, x_1); +lean_ctor_set(x_3, 4, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__1), 9, 2); +lean_closure_set(x_9, 0, x_3); +lean_closure_set(x_9, 1, x_2); +x_10 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5; +x_11 = l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6; +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Term_TermElabM_run_x27___rarg), 8, 3); +lean_closure_set(x_12, 0, x_9); +lean_closure_set(x_12, 1, x_10); +lean_closure_set(x_12, 2, x_11); +x_13 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_12, x_4, x_5, x_6, x_7, x_8); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Meta_SolveByElim_elabContextLemmas___lambda__2(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyLemmas(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; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_10 = l_Lean_Meta_SolveByElim_elabContextLemmas(x_4, x_2, x_3, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_ctor_get(x_1, 0); +lean_inc(x_13); +lean_dec(x_1); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +x_15 = lean_ctor_get_uint8(x_13, sizeof(void*)*2); +lean_dec(x_13); +x_16 = l_Lean_Meta_SolveByElim_applyTactics(x_14, x_15, x_11, x_4, x_5, x_6, x_7, x_8, x_12); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_10); +if (x_17 == 0) +{ +return x_10; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_10, 0); +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_10); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_applyFirstLemma(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; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_10 = l_Lean_Meta_SolveByElim_elabContextLemmas(x_4, x_2, x_3, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_ctor_get(x_1, 0); +lean_inc(x_13); +lean_dec(x_1); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +x_15 = lean_ctor_get_uint8(x_13, sizeof(void*)*2); +lean_dec(x_13); +x_16 = l_Lean_Meta_SolveByElim_applyFirst(x_14, x_15, x_11, x_4, x_5, x_6, x_7, x_8, x_12); +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_10); +if (x_17 == 0) +{ +return x_10; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_10, 0); +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_10); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3(lean_object* x_1, lean_object* x_2, uint8_t 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_object* x_11) { +_start: +{ +if (lean_obj_tag(x_4) == 0) +{ +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_12 = lean_box(x_3); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_6); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_5, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_5, 1); +lean_inc(x_16); +lean_dec(x_5); +x_4 = x_15; +x_5 = x_16; +goto _start; +} +} +else +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_4); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_4, 0); +x_20 = lean_ctor_get(x_4, 1); +lean_inc(x_19); +x_21 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_19, x_7, x_8, x_9, x_10, x_11); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_unbox(x_22); +lean_dec(x_22); +if (x_23 == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_21); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_21, 1); +x_26 = lean_ctor_get(x_21, 0); +lean_dec(x_26); +x_27 = lean_unsigned_to_nat(0u); +x_28 = lean_nat_dec_eq(x_2, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_free_object(x_21); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_sub(x_2, x_29); +lean_dec(x_2); +lean_inc(x_1); +lean_inc(x_19); +x_31 = lean_apply_1(x_1, x_19); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_32 = l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(x_31, x_7, x_8, x_9, x_10, x_25); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; +lean_free_object(x_4); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = lean_array_push(x_6, x_19); +x_2 = x_30; +x_4 = x_20; +x_6 = x_35; +x_11 = x_34; +goto _start; +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_dec(x_19); +x_37 = lean_ctor_get(x_32, 1); +lean_inc(x_37); +lean_dec(x_32); +x_38 = lean_ctor_get(x_33, 0); +lean_inc(x_38); +lean_dec(x_33); +lean_ctor_set(x_4, 1, x_5); +lean_ctor_set(x_4, 0, x_20); +x_39 = 1; +{ +lean_object* _tmp_1 = x_30; +uint8_t _tmp_2 = x_39; +lean_object* _tmp_3 = x_38; +lean_object* _tmp_4 = x_4; +lean_object* _tmp_10 = x_37; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_4 = _tmp_3; +x_5 = _tmp_4; +x_11 = _tmp_10; +} +goto _start; +} +} +else +{ +uint8_t x_41; +lean_dec(x_30); +lean_free_object(x_4); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_41 = !lean_is_exclusive(x_32); +if (x_41 == 0) +{ +return x_32; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_32, 0); +x_43 = lean_ctor_get(x_32, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_32); +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_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_free_object(x_4); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_45 = lean_array_push(x_6, x_19); +x_46 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_45, x_20); +x_47 = l_List_foldl___at_Lean_Meta_repeat_x27Core_go___spec__1(x_46, x_5); +x_48 = lean_box(x_3); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_21, 0, x_49); +return x_21; +} +} +else +{ +lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_50 = lean_ctor_get(x_21, 1); +lean_inc(x_50); +lean_dec(x_21); +x_51 = lean_unsigned_to_nat(0u); +x_52 = lean_nat_dec_eq(x_2, x_51); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_unsigned_to_nat(1u); +x_54 = lean_nat_sub(x_2, x_53); +lean_dec(x_2); +lean_inc(x_1); +lean_inc(x_19); +x_55 = lean_apply_1(x_1, x_19); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_56 = l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(x_55, x_7, x_8, x_9, x_10, x_50); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; +lean_free_object(x_4); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +x_59 = lean_array_push(x_6, x_19); +x_2 = x_54; +x_4 = x_20; +x_6 = x_59; +x_11 = x_58; +goto _start; +} +else +{ +lean_object* x_61; lean_object* x_62; uint8_t x_63; +lean_dec(x_19); +x_61 = lean_ctor_get(x_56, 1); +lean_inc(x_61); +lean_dec(x_56); +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +lean_dec(x_57); +lean_ctor_set(x_4, 1, x_5); +lean_ctor_set(x_4, 0, x_20); +x_63 = 1; +{ +lean_object* _tmp_1 = x_54; +uint8_t _tmp_2 = x_63; +lean_object* _tmp_3 = x_62; +lean_object* _tmp_4 = x_4; +lean_object* _tmp_10 = x_61; +x_2 = _tmp_1; +x_3 = _tmp_2; +x_4 = _tmp_3; +x_5 = _tmp_4; +x_11 = _tmp_10; +} +goto _start; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_54); +lean_free_object(x_4); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_65 = lean_ctor_get(x_56, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_56, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_67 = x_56; +} else { + lean_dec_ref(x_56); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +else +{ +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_free_object(x_4); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_69 = lean_array_push(x_6, x_19); +x_70 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_69, x_20); +x_71 = l_List_foldl___at_Lean_Meta_repeat_x27Core_go___spec__1(x_70, x_5); +x_72 = lean_box(x_3); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_71); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_50); +return x_74; +} +} +} +else +{ +lean_object* x_75; +lean_free_object(x_4); +lean_dec(x_19); +x_75 = lean_ctor_get(x_21, 1); +lean_inc(x_75); +lean_dec(x_21); +x_4 = x_20; +x_11 = x_75; +goto _start; +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_77 = lean_ctor_get(x_4, 0); +x_78 = lean_ctor_get(x_4, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_4); +lean_inc(x_77); +x_79 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_77, x_7, x_8, x_9, x_10, x_11); +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_unbox(x_80); +lean_dec(x_80); +if (x_81 == 0) +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_79, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_83 = x_79; +} else { + lean_dec_ref(x_79); + x_83 = lean_box(0); +} +x_84 = lean_unsigned_to_nat(0u); +x_85 = lean_nat_dec_eq(x_2, x_84); +if (x_85 == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_83); +x_86 = lean_unsigned_to_nat(1u); +x_87 = lean_nat_sub(x_2, x_86); +lean_dec(x_2); +lean_inc(x_1); +lean_inc(x_77); +x_88 = lean_apply_1(x_1, x_77); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_89 = l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6(x_88, x_7, x_8, x_9, x_10, x_82); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +x_92 = lean_array_push(x_6, x_77); +x_2 = x_87; +x_4 = x_78; +x_6 = x_92; +x_11 = x_91; +goto _start; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; +lean_dec(x_77); +x_94 = lean_ctor_get(x_89, 1); +lean_inc(x_94); +lean_dec(x_89); +x_95 = lean_ctor_get(x_90, 0); +lean_inc(x_95); +lean_dec(x_90); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_78); +lean_ctor_set(x_96, 1, x_5); +x_97 = 1; +x_2 = x_87; +x_3 = x_97; +x_4 = x_95; +x_5 = x_96; +x_11 = x_94; +goto _start; +} +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +lean_dec(x_87); +lean_dec(x_78); +lean_dec(x_77); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_99 = lean_ctor_get(x_89, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_89, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_101 = x_89; +} else { + lean_dec_ref(x_89); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(1, 2, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 1, x_100); +return x_102; +} +} +else +{ +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_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_array_push(x_6, x_77); +x_104 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_103, x_78); +x_105 = l_List_foldl___at_Lean_Meta_repeat_x27Core_go___spec__1(x_104, x_5); +x_106 = lean_box(x_3); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +if (lean_is_scalar(x_83)) { + x_108 = lean_alloc_ctor(0, 2, 0); +} else { + x_108 = x_83; +} +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_82); +return x_108; +} +} +else +{ +lean_object* x_109; +lean_dec(x_77); +x_109 = lean_ctor_get(x_79, 1); +lean_inc(x_109); +lean_dec(x_79); +x_4 = x_78; +x_11 = x_109; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(lean_object* x_1, size_t x_2, size_t 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: +{ +uint8_t x_10; +x_10 = lean_usize_dec_eq(x_2, x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_array_uget(x_1, x_2); +lean_inc(x_11); +x_12 = l_Lean_MVarId_isAssigned___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__1(x_11, x_5, x_6, x_7, x_8, x_9); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_unbox(x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec(x_12); +x_16 = lean_array_push(x_4, x_11); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_2 = x_18; +x_4 = x_16; +x_9 = x_15; +goto _start; +} +else +{ +lean_object* x_20; size_t x_21; size_t x_22; +lean_dec(x_11); +x_20 = lean_ctor_get(x_12, 1); +lean_inc(x_20); +lean_dec(x_12); +x_21 = 1; +x_22 = lean_usize_add(x_2, x_21); +x_2 = x_22; +x_9 = x_20; +goto _start; +} +} +else +{ +lean_object* x_24; +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_4); +lean_ctor_set(x_24, 1, x_9); +return x_24; +} +} +} +static lean_object* _init_l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1() { +_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_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1; +x_2 = lean_array_to_list(lean_box(0), x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__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) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_box(0); +x_10 = 0; +x_11 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_12 = l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3(x_1, x_3, x_10, x_2, x_9, x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_12, 0); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_16 = lean_ctor_get(x_12, 1); +x_17 = lean_ctor_get(x_14, 1); +x_18 = lean_array_get_size(x_17); +x_19 = lean_unsigned_to_nat(0u); +x_20 = lean_nat_dec_lt(x_19, x_18); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_21 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +lean_ctor_set(x_14, 1, x_21); +return x_12; +} +else +{ +uint8_t x_22; +x_22 = lean_nat_dec_le(x_18, x_18); +if (x_22 == 0) +{ +lean_object* x_23; +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_23 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +lean_ctor_set(x_14, 1, x_23); +return x_12; +} +else +{ +size_t x_24; size_t x_25; lean_object* x_26; uint8_t x_27; +lean_free_object(x_12); +x_24 = 0; +x_25 = lean_usize_of_nat(x_18); +lean_dec(x_18); +x_26 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(x_17, x_24, x_25, x_11, x_4, x_5, x_6, x_7, x_16); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_17); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_array_to_list(lean_box(0), x_28); +lean_ctor_set(x_14, 1, x_29); +lean_ctor_set(x_26, 0, x_14); +return x_26; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_26, 0); +x_31 = lean_ctor_get(x_26, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_26); +x_32 = lean_array_to_list(lean_box(0), x_30); +lean_ctor_set(x_14, 1, x_32); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_14); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_34 = lean_ctor_get(x_12, 1); +x_35 = lean_ctor_get(x_14, 0); +x_36 = lean_ctor_get(x_14, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_14); +x_37 = lean_array_get_size(x_36); +x_38 = lean_unsigned_to_nat(0u); +x_39 = lean_nat_dec_lt(x_38, x_37); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_40 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_35); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_12, 0, x_41); +return x_12; +} +else +{ +uint8_t x_42; +x_42 = lean_nat_dec_le(x_37, x_37); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_43 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_35); +lean_ctor_set(x_44, 1, x_43); +lean_ctor_set(x_12, 0, x_44); +return x_12; +} +else +{ +size_t x_45; size_t 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_free_object(x_12); +x_45 = 0; +x_46 = lean_usize_of_nat(x_37); +lean_dec(x_37); +x_47 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(x_36, x_45, x_46, x_11, x_4, x_5, x_6, x_7, x_34); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_36); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_50 = x_47; +} else { + lean_dec_ref(x_47); + x_50 = lean_box(0); +} +x_51 = lean_array_to_list(lean_box(0), x_48); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_35); +lean_ctor_set(x_52, 1, x_51); +if (lean_is_scalar(x_50)) { + x_53 = lean_alloc_ctor(0, 2, 0); +} else { + x_53 = x_50; +} +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_49); +return x_53; +} +} +} +} +else +{ +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; uint8_t x_61; +x_54 = lean_ctor_get(x_12, 0); +x_55 = lean_ctor_get(x_12, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_12); +x_56 = lean_ctor_get(x_54, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_54, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_58 = x_54; +} else { + lean_dec_ref(x_54); + x_58 = lean_box(0); +} +x_59 = lean_array_get_size(x_57); +x_60 = lean_unsigned_to_nat(0u); +x_61 = lean_nat_dec_lt(x_60, x_59); +if (x_61 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_dec(x_59); +lean_dec(x_57); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_62 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +if (lean_is_scalar(x_58)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_58; +} +lean_ctor_set(x_63, 0, x_56); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_55); +return x_64; +} +else +{ +uint8_t x_65; +x_65 = lean_nat_dec_le(x_59, x_59); +if (x_65 == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_59); +lean_dec(x_57); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_66 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2; +if (lean_is_scalar(x_58)) { + x_67 = lean_alloc_ctor(0, 2, 0); +} else { + x_67 = x_58; +} +lean_ctor_set(x_67, 0, x_56); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_55); +return x_68; +} +else +{ +size_t x_69; size_t 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; +x_69 = 0; +x_70 = lean_usize_of_nat(x_59); +lean_dec(x_59); +x_71 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(x_57, x_69, x_70, x_11, x_4, x_5, x_6, x_7, x_55); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_57); +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_74 = x_71; +} else { + lean_dec_ref(x_71); + x_74 = lean_box(0); +} +x_75 = lean_array_to_list(lean_box(0), x_72); +if (lean_is_scalar(x_58)) { + x_76 = lean_alloc_ctor(0, 2, 0); +} else { + x_76 = x_58; +} +lean_ctor_set(x_76, 0, x_56); +lean_ctor_set(x_76, 1, x_75); +if (lean_is_scalar(x_74)) { + x_77 = lean_alloc_ctor(0, 2, 0); +} else { + x_77 = x_74; +} +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_73); +return x_77; +} +} +} +} +else +{ +uint8_t x_78; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_78 = !lean_is_exclusive(x_12); +if (x_78 == 0) +{ +return x_12; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_12, 0); +x_80 = lean_ctor_get(x_12, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_12); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; +} +} +} +} +static lean_object* _init_l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("repeat1' made no progress", 25); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_9 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_unbox(x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_dec(x_10); +x_13 = lean_ctor_get(x_9, 1); +lean_inc(x_13); +lean_dec(x_9); +x_14 = l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2; +x_15 = l_Lean_throwError___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__1(x_14, x_4, x_5, x_6, x_7, x_13); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_15; +} +else +{ +uint8_t x_16; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_9, 0); +lean_dec(x_17); +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +lean_dec(x_10); +lean_ctor_set(x_9, 0, x_18); +return x_9; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_9, 1); +lean_inc(x_19); +lean_dec(x_9); +x_20 = lean_ctor_get(x_10, 1); +lean_inc(x_20); +lean_dec(x_10); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_22 = !lean_is_exclusive(x_9); +if (x_22 == 0) +{ +return x_9; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_9, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_9); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim_run(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: +{ +uint8_t x_10; +x_10 = lean_ctor_get_uint8(x_3, sizeof(void*)*1); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyFirstLemma), 9, 3); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_1); +lean_closure_set(x_11, 2, x_2); +x_12 = lean_ctor_get(x_3, 0); +lean_inc(x_12); +lean_dec(x_3); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1(x_11, x_4, x_14, x_5, x_6, x_7, x_8, x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_3, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec(x_16); +x_18 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_applyLemmas), 9, 3); +lean_closure_set(x_18, 0, x_3); +lean_closure_set(x_18, 1, x_1); +lean_closure_set(x_18, 2, x_2); +x_19 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_20 = l_Lean_Meta_Tactic_Backtrack_backtrack(x_17, x_19, x_18, x_4, x_5, x_6, x_7, x_8, x_9); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_3); +lean_dec(x_3); +x_13 = l_Lean_Meta_repeat_x27Core_go___at_Lean_Meta_SolveByElim_solveByElim_run___spec__3(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4___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: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_12 = l_Array_foldlMUnsafe_fold___at_Lean_Meta_SolveByElim_solveByElim_run___spec__4(x_1, x_10, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_solveByElim___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_8 = l_List_reverse___rarg(x_2); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_1); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_13 = l_Lean_MVarId_symmSaturate(x_11, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +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); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_14); +{ +lean_object* _tmp_0 = x_12; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_6 = x_15; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_7 = _tmp_6; +} +goto _start; +} +else +{ +uint8_t x_17; +lean_free_object(x_1); +lean_dec(x_12); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_13, 0); +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_13); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_1, 0); +x_22 = lean_ctor_get(x_1, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_23 = l_Lean_MVarId_symmSaturate(x_21, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_2); +x_1 = x_22; +x_2 = x_26; +x_7 = x_25; +goto _start; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_22); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_28 = lean_ctor_get(x_23, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_30 = x_23; +} else { + lean_dec_ref(x_23); + x_30 = lean_box(0); +} +if (lean_is_scalar(x_30)) { + x_31 = lean_alloc_ctor(1, 2, 0); +} else { + x_31 = x_30; +} +lean_ctor_set(x_31, 0, x_28); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("⏮️ starting over using `exfalso`", 36); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___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_10; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_10 = l_Lean_MVarId_exfalso(x_1, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_box(0); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Lean_Meta_SolveByElim_solveByElim_run(x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_12); +return x_15; +} +else +{ +uint8_t x_16; +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_16 = !lean_is_exclusive(x_10); +if (x_16 == 0) +{ +return x_10; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_10, 0); +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_10); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_solveByElim___lambda__1___boxed), 6, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___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: +{ +lean_object* x_10; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_10 = l_Lean_Meta_SolveByElim_solveByElim_run(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +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); +lean_dec(x_1); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +x_14 = l_Lean_Exception_isRuntime(x_12); +if (x_14 == 0) +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +else +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_4, 1); +lean_inc(x_15); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_3, 0); +lean_inc(x_16); +x_17 = lean_ctor_get_uint8(x_16, sizeof(void*)*2 + 2); +lean_dec(x_16); +if (x_17 == 0) +{ +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); +lean_dec(x_1); +return x_10; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; +lean_free_object(x_10); +lean_dec(x_12); +x_18 = lean_ctor_get(x_4, 0); +lean_inc(x_18); +lean_dec(x_4); +x_19 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_solveByElim___lambda__2), 9, 4); +lean_closure_set(x_19, 0, x_18); +lean_closure_set(x_19, 1, x_1); +lean_closure_set(x_19, 2, x_2); +lean_closure_set(x_19, 3, x_3); +x_20 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_21 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1; +x_22 = 1; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_20, x_21, x_19, x_22, x_5, x_6, x_7, x_8, x_13); +return x_23; +} +} +else +{ +lean_dec(x_15); +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); +lean_dec(x_1); +return x_10; +} +} +} +else +{ +uint8_t x_24; +x_24 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_24 == 0) +{ +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); +lean_dec(x_1); +return x_10; +} +else +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +else +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_4, 1); +lean_inc(x_25); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_3, 0); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_26, sizeof(void*)*2 + 2); +lean_dec(x_26); +if (x_27 == 0) +{ +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); +lean_dec(x_1); +return x_10; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; +lean_free_object(x_10); +lean_dec(x_12); +x_28 = lean_ctor_get(x_4, 0); +lean_inc(x_28); +lean_dec(x_4); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_solveByElim___lambda__2), 9, 4); +lean_closure_set(x_29, 0, x_28); +lean_closure_set(x_29, 1, x_1); +lean_closure_set(x_29, 2, x_2); +lean_closure_set(x_29, 3, x_3); +x_30 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_31 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1; +x_32 = 1; +x_33 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_30, x_31, x_29, x_32, x_5, x_6, x_7, x_8, x_13); +return x_33; +} +} +else +{ +lean_dec(x_25); +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); +lean_dec(x_1); +return x_10; +} +} +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_34 = lean_ctor_get(x_10, 0); +x_35 = lean_ctor_get(x_10, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_10); +x_36 = l_Lean_Exception_isRuntime(x_34); +if (x_36 == 0) +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_37; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +else +{ +lean_object* x_38; +x_38 = lean_ctor_get(x_4, 1); +lean_inc(x_38); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; uint8_t x_40; +x_39 = lean_ctor_get(x_3, 0); +lean_inc(x_39); +x_40 = lean_ctor_get_uint8(x_39, sizeof(void*)*2 + 2); +lean_dec(x_39); +if (x_40 == 0) +{ +lean_object* x_41; +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); +lean_dec(x_1); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_35); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; +lean_dec(x_34); +x_42 = lean_ctor_get(x_4, 0); +lean_inc(x_42); +lean_dec(x_4); +x_43 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_solveByElim___lambda__2), 9, 4); +lean_closure_set(x_43, 0, x_42); +lean_closure_set(x_43, 1, x_1); +lean_closure_set(x_43, 2, x_2); +lean_closure_set(x_43, 3, x_3); +x_44 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_45 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1; +x_46 = 1; +x_47 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_44, x_45, x_43, x_46, x_5, x_6, x_7, x_8, x_35); +return x_47; +} +} +else +{ +lean_object* x_48; +lean_dec(x_38); +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); +lean_dec(x_1); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_34); +lean_ctor_set(x_48, 1, x_35); +return x_48; +} +} +} +else +{ +uint8_t x_49; +x_49 = lean_ctor_get_uint8(x_7, sizeof(void*)*11); +if (x_49 == 0) +{ +lean_object* x_50; +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); +lean_dec(x_1); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_34); +lean_ctor_set(x_50, 1, x_35); +return x_50; +} +else +{ +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_51; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_34); +lean_ctor_set(x_51, 1, x_35); +return x_51; +} +else +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_4, 1); +lean_inc(x_52); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; uint8_t x_54; +x_53 = lean_ctor_get(x_3, 0); +lean_inc(x_53); +x_54 = lean_ctor_get_uint8(x_53, sizeof(void*)*2 + 2); +lean_dec(x_53); +if (x_54 == 0) +{ +lean_object* x_55; +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); +lean_dec(x_1); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_34); +lean_ctor_set(x_55, 1, x_35); +return x_55; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; +lean_dec(x_34); +x_56 = lean_ctor_get(x_4, 0); +lean_inc(x_56); +lean_dec(x_4); +x_57 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_solveByElim___lambda__2), 9, 4); +lean_closure_set(x_57, 0, x_56); +lean_closure_set(x_57, 1, x_1); +lean_closure_set(x_57, 2, x_2); +lean_closure_set(x_57, 3, x_3); +x_58 = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4; +x_59 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1; +x_60 = 1; +x_61 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(x_58, x_59, x_57, x_60, x_5, x_6, x_7, x_8, x_35); +return x_61; +} +} +else +{ +lean_object* x_62; +lean_dec(x_52); +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); +lean_dec(x_1); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_34); +lean_ctor_set(x_62, 1, x_35); +return x_62; +} +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim(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; lean_object* x_11; uint8_t x_12; +x_10 = l_Lean_Meta_SolveByElim_SolveByElimConfig_processOptions(x_1); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get_uint8(x_11, sizeof(void*)*2 + 1); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3(x_2, x_3, x_10, x_4, x_5, x_6, x_7, x_8, x_9); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_15 = l_List_mapM_loop___at_Lean_Meta_SolveByElim_solveByElim___spec__1(x_4, x_14, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = l_Lean_Meta_SolveByElim_solveByElim___lambda__3(x_2, x_3, x_10, x_16, x_5, x_6, x_7, x_8, x_17); +return x_18; +} +else +{ +uint8_t x_19; +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_19 = !lean_is_exclusive(x_15); +if (x_19 == 0) +{ +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_15, 0); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_15); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_solveByElim___lambda__1___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_SolveByElim_solveByElim___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_5, x_4); +if (x_14 == 0) +{ +lean_object* x_15; +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); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_6); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_array_uget(x_3, x_5); +x_17 = !lean_is_exclusive(x_6); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_6, 1); +x_19 = lean_ctor_get(x_6, 0); +lean_dec(x_19); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_18); +lean_inc(x_1); +x_20 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3(x_1, x_16, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +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); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 0); +lean_dec(x_23); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_6, 0, x_24); +lean_ctor_set(x_20, 0, x_6); +return x_20; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_20, 1); +lean_inc(x_25); +lean_dec(x_20); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_6, 0, x_26); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_6); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; size_t x_30; size_t x_31; +lean_dec(x_18); +x_28 = lean_ctor_get(x_20, 1); +lean_inc(x_28); +lean_dec(x_20); +x_29 = lean_ctor_get(x_21, 0); +lean_inc(x_29); +lean_dec(x_21); +lean_inc(x_2); +lean_ctor_set(x_6, 1, x_29); +lean_ctor_set(x_6, 0, x_2); +x_30 = 1; +x_31 = lean_usize_add(x_5, x_30); +x_5 = x_31; +x_13 = x_28; +goto _start; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_6, 1); +lean_inc(x_33); +lean_dec(x_6); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_33); +lean_inc(x_1); +x_34 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3(x_1, x_16, x_33, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +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); +lean_dec(x_1); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + x_37 = x_34; +} else { + lean_dec_ref(x_34); + x_37 = lean_box(0); +} +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_35); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_33); +if (lean_is_scalar(x_37)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_37; +} +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_36); +return x_40; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; size_t x_44; size_t x_45; +lean_dec(x_33); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_dec(x_34); +x_42 = lean_ctor_get(x_35, 0); +lean_inc(x_42); +lean_dec(x_35); +lean_inc(x_2); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_2); +lean_ctor_set(x_43, 1, x_42); +x_44 = 1; +x_45 = lean_usize_add(x_5, x_44); +x_5 = x_45; +x_6 = x_43; +x_13 = x_41; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; +x_15 = lean_array_uget(x_2, x_4); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_5); +if (x_16 == 0) +{ +lean_object* x_17; size_t x_18; size_t x_19; +x_17 = lean_ctor_get(x_5, 0); +lean_dec(x_17); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_18 = 1; +x_19 = lean_usize_add(x_4, x_18); +x_4 = x_19; +goto _start; +} +else +{ +lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; +x_21 = lean_ctor_get(x_5, 1); +lean_inc(x_21); +lean_dec(x_5); +lean_inc(x_1); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_21); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_4 = x_24; +x_5 = x_22; +goto _start; +} +} +else +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_5); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_5, 1); +x_28 = lean_ctor_get(x_5, 0); +lean_dec(x_28); +x_29 = lean_ctor_get(x_15, 0); +lean_inc(x_29); +lean_dec(x_15); +x_30 = l_Lean_LocalDecl_isImplementationDetail(x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; size_t x_33; size_t x_34; +x_31 = l_Lean_LocalDecl_toExpr(x_29); +lean_dec(x_29); +x_32 = lean_array_push(x_27, x_31); +lean_inc(x_1); +lean_ctor_set(x_5, 1, x_32); +lean_ctor_set(x_5, 0, x_1); +x_33 = 1; +x_34 = lean_usize_add(x_4, x_33); +x_4 = x_34; +goto _start; +} +else +{ +size_t x_36; size_t x_37; +lean_dec(x_29); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_36 = 1; +x_37 = lean_usize_add(x_4, x_36); +x_4 = x_37; +goto _start; +} +} +else +{ +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_ctor_get(x_5, 1); +lean_inc(x_39); +lean_dec(x_5); +x_40 = lean_ctor_get(x_15, 0); +lean_inc(x_40); +lean_dec(x_15); +x_41 = l_Lean_LocalDecl_isImplementationDetail(x_40); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; +x_42 = l_Lean_LocalDecl_toExpr(x_40); +lean_dec(x_40); +x_43 = lean_array_push(x_39, x_42); +lean_inc(x_1); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_1); +lean_ctor_set(x_44, 1, x_43); +x_45 = 1; +x_46 = lean_usize_add(x_4, x_45); +x_4 = x_46; +x_5 = x_44; +goto _start; +} +else +{ +lean_object* x_48; size_t x_49; size_t x_50; +lean_dec(x_40); +lean_inc(x_1); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_1); +lean_ctor_set(x_48, 1, x_39); +x_49 = 1; +x_50 = lean_usize_add(x_4, x_49); +x_4 = x_50; +x_5 = x_48; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1(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; lean_object* x_11; +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_1); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__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, lean_object* x_10) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); +lean_dec(x_2); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_3); +x_14 = lean_array_get_size(x_11); +x_15 = lean_usize_of_nat(x_14); +lean_dec(x_14); +x_16 = 0; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_17 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__4(x_1, x_12, x_11, x_15, x_16, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); +x_22 = lean_box(0); +x_23 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1(x_21, x_22, x_4, 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); +lean_dec(x_4); +return x_23; +} +else +{ +uint8_t x_24; +lean_dec(x_18); +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_24 = !lean_is_exclusive(x_17); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_17, 0); +lean_dec(x_25); +x_26 = lean_ctor_get(x_19, 0); +lean_inc(x_26); +lean_dec(x_19); +lean_ctor_set(x_17, 0, x_26); +return x_17; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 1); +lean_inc(x_27); +lean_dec(x_17); +x_28 = lean_ctor_get(x_19, 0); +lean_inc(x_28); +lean_dec(x_19); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +return x_29; +} +} +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_1); +x_30 = lean_ctor_get(x_2, 0); +lean_inc(x_30); +lean_dec(x_2); +x_31 = lean_box(0); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_3); +x_33 = lean_array_get_size(x_30); +x_34 = lean_usize_of_nat(x_33); +lean_dec(x_33); +x_35 = 0; +x_36 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5(x_31, x_30, x_34, x_35, x_32, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_30); +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_39 = lean_ctor_get(x_36, 1); +lean_inc(x_39); +lean_dec(x_36); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_dec(x_37); +x_41 = lean_box(0); +x_42 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1(x_40, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_39); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_42; +} +else +{ +uint8_t x_43; +lean_dec(x_37); +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_43 = !lean_is_exclusive(x_36); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_36, 0); +lean_dec(x_44); +x_45 = lean_ctor_get(x_38, 0); +lean_inc(x_45); +lean_dec(x_38); +lean_ctor_set(x_36, 0, x_45); +return x_36; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_36, 1); +lean_inc(x_46); +lean_dec(x_36); +x_47 = lean_ctor_get(x_38, 0); +lean_inc(x_47); +lean_dec(x_38); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_46); +return x_48; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_lt(x_4, x_3); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; +x_15 = lean_array_uget(x_2, x_4); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_5); +if (x_16 == 0) +{ +lean_object* x_17; size_t x_18; size_t x_19; +x_17 = lean_ctor_get(x_5, 0); +lean_dec(x_17); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_18 = 1; +x_19 = lean_usize_add(x_4, x_18); +x_4 = x_19; +goto _start; +} +else +{ +lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; +x_21 = lean_ctor_get(x_5, 1); +lean_inc(x_21); +lean_dec(x_5); +lean_inc(x_1); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_21); +x_23 = 1; +x_24 = lean_usize_add(x_4, x_23); +x_4 = x_24; +x_5 = x_22; +goto _start; +} +} +else +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_5); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_5, 1); +x_28 = lean_ctor_get(x_5, 0); +lean_dec(x_28); +x_29 = lean_ctor_get(x_15, 0); +lean_inc(x_29); +lean_dec(x_15); +x_30 = l_Lean_LocalDecl_isImplementationDetail(x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; size_t x_33; size_t x_34; +x_31 = l_Lean_LocalDecl_toExpr(x_29); +lean_dec(x_29); +x_32 = lean_array_push(x_27, x_31); +lean_inc(x_1); +lean_ctor_set(x_5, 1, x_32); +lean_ctor_set(x_5, 0, x_1); +x_33 = 1; +x_34 = lean_usize_add(x_4, x_33); +x_4 = x_34; +goto _start; +} +else +{ +size_t x_36; size_t x_37; +lean_dec(x_29); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_36 = 1; +x_37 = lean_usize_add(x_4, x_36); +x_4 = x_37; +goto _start; +} +} +else +{ +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_ctor_get(x_5, 1); +lean_inc(x_39); +lean_dec(x_5); +x_40 = lean_ctor_get(x_15, 0); +lean_inc(x_40); +lean_dec(x_15); +x_41 = l_Lean_LocalDecl_isImplementationDetail(x_40); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; +x_42 = l_Lean_LocalDecl_toExpr(x_40); +lean_dec(x_40); +x_43 = lean_array_push(x_39, x_42); +lean_inc(x_1); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_1); +lean_ctor_set(x_44, 1, x_43); +x_45 = 1; +x_46 = lean_usize_add(x_4, x_45); +x_4 = x_46; +x_5 = x_44; +goto _start; +} +else +{ +lean_object* x_48; size_t x_49; size_t x_50; +lean_dec(x_40); +lean_inc(x_1); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_1); +lean_ctor_set(x_48, 1, x_39); +x_49 = 1; +x_50 = lean_usize_add(x_4, x_49); +x_4 = x_50; +x_5 = x_48; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2___lambda__1(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 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__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_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_11 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3(x_2, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +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_1); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +x_15 = lean_ctor_get(x_12, 0); +lean_inc(x_15); +lean_dec(x_12); +lean_ctor_set(x_11, 0, x_15); +return x_11; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_19 = lean_ctor_get(x_11, 1); +lean_inc(x_19); +lean_dec(x_11); +x_20 = lean_ctor_get(x_12, 0); +lean_inc(x_20); +lean_dec(x_12); +x_21 = lean_ctor_get(x_1, 1); +lean_inc(x_21); +lean_dec(x_1); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_20); +x_24 = lean_array_get_size(x_21); +x_25 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_26 = 0; +x_27 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6(x_22, x_21, x_25, x_26, x_23, x_3, 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); +lean_dec(x_3); +lean_dec(x_21); +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_27); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_27, 0); +lean_dec(x_31); +x_32 = lean_ctor_get(x_28, 1); +lean_inc(x_32); +lean_dec(x_28); +lean_ctor_set(x_27, 0, x_32); +return x_27; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_27, 1); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_ctor_get(x_28, 1); +lean_inc(x_34); +lean_dec(x_28); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; +} +} +else +{ +uint8_t x_36; +lean_dec(x_28); +x_36 = !lean_is_exclusive(x_27); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_27, 0); +lean_dec(x_37); +x_38 = lean_ctor_get(x_29, 0); +lean_inc(x_38); +lean_dec(x_29); +lean_ctor_set(x_27, 0, x_38); +return x_27; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_27, 1); +lean_inc(x_39); +lean_dec(x_27); +x_40 = lean_ctor_get(x_29, 0); +lean_inc(x_40); +lean_dec(x_29); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +return x_41; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_MVarId_applyRules___spec__1(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1; +x_11 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2(x_9, x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +return x_11; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_11); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules___lambda__1(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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = l_Lean_getLocalHyps___at_Lean_MVarId_applyRules___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_array_to_list(lean_box(0), x_10); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_array_to_list(lean_box(0), x_12); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +static lean_object* _init_l_Lean_MVarId_applyRules___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_MVarId_applyRules___lambda__1), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_MVarId_applyRules___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___spec__1___rarg___boxed), 8, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules(lean_object* x_1, lean_object* x_2, uint8_t 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: +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_1); +if (x_10 == 0) +{ +uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_11 = 0; +lean_ctor_set_uint8(x_1, sizeof(void*)*1, x_11); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_12); +if (x_3 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_MVarId_applyRules___closed__1; +x_15 = l_Lean_Meta_SolveByElim_solveByElim(x_1, x_2, x_14, x_13, x_5, x_6, x_7, x_8, x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = l_Lean_MVarId_applyRules___closed__2; +x_17 = l_Lean_Meta_SolveByElim_solveByElim(x_1, x_2, x_16, x_13, x_5, x_6, x_7, x_8, x_9); +return x_17; +} +} +else +{ +lean_object* x_18; uint8_t x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_1, 0); +x_19 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 1); +x_20 = lean_ctor_get_uint8(x_1, sizeof(void*)*1 + 2); +lean_inc(x_18); +lean_dec(x_1); +x_21 = 0; +x_22 = lean_alloc_ctor(0, 1, 3); +lean_ctor_set(x_22, 0, x_18); +lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_21); +lean_ctor_set_uint8(x_22, sizeof(void*)*1 + 1, x_19); +lean_ctor_set_uint8(x_22, sizeof(void*)*1 + 2, x_20); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_4); +lean_ctor_set(x_24, 1, x_23); +if (x_3 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = l_Lean_MVarId_applyRules___closed__1; +x_26 = l_Lean_Meta_SolveByElim_solveByElim(x_22, x_2, x_25, x_24, x_5, x_6, x_7, x_8, x_9); +return x_26; +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = l_Lean_MVarId_applyRules___closed__2; +x_28 = l_Lean_Meta_SolveByElim_solveByElim(x_22, x_2, x_27, x_24, x_5, x_6, x_7, x_8, x_9); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__4___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, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__4(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_3); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__5(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, 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_6); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1___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_PersistentArray_forInAux___at_Lean_MVarId_applyRules___spec__3___lambda__1(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_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6___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, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_forInUnsafe_loop___at_Lean_MVarId_applyRules___spec__6(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, 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_6); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2___lambda__1___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_PersistentArray_forIn___at_Lean_MVarId_applyRules___spec__2___lambda__1(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_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_applyRules___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: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_3); +lean_dec(x_3); +x_11 = l_Lean_MVarId_applyRules(x_1, x_2, x_10, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; +x_9 = lean_box(0); +x_10 = 1; +x_11 = l_Lean_Elab_Term_elabTerm(x_1, x_9, x_10, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27), 8, 1); +lean_closure_set(x_7, 0, x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27), 8, 1); +lean_closure_set(x_11, 0, x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__2(size_t x_1, size_t 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) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +x_14 = l_Lean_Syntax_getId(x_11); +lean_dec(x_11); +x_15 = l_Lean_labelled(x_14, x_6, x_7, x_8); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = 1; +x_19 = lean_usize_add(x_2, x_18); +x_20 = lean_array_uset(x_13, x_2, x_16); +x_2 = x_19; +x_3 = x_20; +x_8 = x_17; +goto _start; +} +else +{ +uint8_t x_22; +lean_dec(x_13); +x_22 = !lean_is_exclusive(x_15); +if (x_22 == 0) +{ +return x_15; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_15, 0); +x_24 = lean_ctor_get(x_15, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_15); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1(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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_mkConstWithFreshMVarLevels(x_1, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_alloc_closure((void*)(l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1___boxed), 8, 1); +lean_closure_set(x_7, 0, x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = lean_alloc_closure((void*)(l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1___boxed), 8, 1); +lean_closure_set(x_11, 0, x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__4(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: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_10 = l_List_reverse___rarg(x_2); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +else +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_1, 0); +x_14 = lean_ctor_get(x_1, 1); +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_15 = l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_16); +{ +lean_object* _tmp_0 = x_14; +lean_object* _tmp_1 = x_1; +lean_object* _tmp_8 = x_17; +x_1 = _tmp_0; +x_2 = _tmp_1; +x_9 = _tmp_8; +} +goto _start; +} +else +{ +uint8_t x_19; +lean_free_object(x_1); +lean_dec(x_14); +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_19 = !lean_is_exclusive(x_15); +if (x_19 == 0) +{ +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_15, 0); +x_21 = lean_ctor_get(x_15, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_15); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_1, 0); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_1); +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_25 = l_Lean_Meta_SolveByElim_mkAssumptionSet_elab_x27(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +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_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_2); +x_1 = x_24; +x_2 = x_28; +x_9 = x_27; +goto _start; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_24); +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_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + x_32 = x_25; +} else { + lean_dec_ref(x_25); + x_32 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_33 = lean_alloc_ctor(1, 2, 0); +} else { + x_33 = x_32; +} +lean_ctor_set(x_33, 0, x_30); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +} +} +} +LEAN_EXPORT uint8_t l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_List_elem___at_Lean_ForEachExprWhere_checked___spec__2(x_1, x_2); +if (x_3 == 0) +{ +uint8_t x_4; +x_4 = 1; +return x_4; +} +else +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_4; +x_4 = l_List_reverse___rarg(x_3); +return x_4; +} +else +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_2); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_2, 0); +x_7 = lean_ctor_get(x_2, 1); +x_8 = l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6(x_6, x_1); +if (x_8 == 0) +{ +lean_free_object(x_2); +lean_dec(x_6); +x_2 = x_7; +goto _start; +} +else +{ +lean_ctor_set(x_2, 1, x_3); +{ +lean_object* _tmp_1 = x_7; +lean_object* _tmp_2 = x_2; +x_2 = _tmp_1; +x_3 = _tmp_2; +} +goto _start; +} +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_2, 0); +x_12 = lean_ctor_get(x_2, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_2); +x_13 = l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6(x_11, x_1); +if (x_13 == 0) +{ +lean_dec(x_11); +x_2 = x_12; +goto _start; +} +else +{ +lean_object* x_15; +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_11); +lean_ctor_set(x_15, 1, x_3); +x_2 = x_12; +x_3 = x_15; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_removeAll___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_box(0); +x_4 = l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7(x_2, x_1, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__1(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; lean_object* x_11; lean_object* x_12; lean_object* x_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_10 = l_Lean_getLocalHyps___at_Lean_MVarId_applyRules___spec__1(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_List_mapM_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_array_to_list(lean_box(0), x_11); +x_17 = l_List_removeAll___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__5(x_16, x_15); +lean_ctor_set(x_13, 0, x_17); +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_18 = lean_ctor_get(x_13, 0); +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_13); +x_20 = lean_array_to_list(lean_box(0), x_11); +x_21 = l_List_removeAll___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__5(x_20, x_18); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_19); +return x_22; +} +} +else +{ +uint8_t x_23; +lean_dec(x_11); +x_23 = !lean_is_exclusive(x_13); +if (x_23 == 0) +{ +return x_13; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +if (x_4 == 0) +{ +lean_object* x_17; +x_17 = lean_box(0); +x_12 = x_17; +goto block_16; +} +else +{ +if (x_5 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_1); +x_18 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___spec__1___rarg___boxed), 8, 1); +lean_closure_set(x_18, 0, x_2); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_3); +lean_ctor_set(x_19, 1, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_11); +return x_20; +} +else +{ +lean_object* x_21; +x_21 = lean_box(0); +x_12 = x_21; +goto block_16; +} +} +block_16: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_dec(x_12); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__1), 9, 2); +lean_closure_set(x_13, 0, x_1); +lean_closure_set(x_13, 1, x_2); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_3); +lean_ctor_set(x_14, 1, x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_11); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("rfl", 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("trivial", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("congrFun", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("congrArg", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19; +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_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("It doesn't make sense to remove local hypotheses when using `only` without `*`.", 79); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t 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; size_t x_63; size_t x_64; lean_object* x_65; +lean_dec(x_6); +x_12 = lean_ctor_get(x_9, 5); +lean_inc(x_12); +x_13 = 0; +x_14 = l_Lean_SourceInfo_fromRef(x_12, x_13); +x_15 = lean_ctor_get(x_9, 10); +lean_inc(x_15); +x_16 = lean_st_ref_get(x_10, x_11); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_environment_main_module(x_19); +x_21 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3; +lean_inc(x_15); +x_22 = l_Lean_addMacroScope(x_20, x_21, x_15); +x_23 = lean_box(0); +x_24 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2; +x_25 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5; +lean_inc(x_14); +x_26 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_26, 0, x_14); +lean_ctor_set(x_26, 1, x_24); +lean_ctor_set(x_26, 2, x_22); +lean_ctor_set(x_26, 3, x_25); +x_27 = lean_st_ref_get(x_10, x_18); +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_ctor_get(x_28, 0); +lean_inc(x_30); +lean_dec(x_28); +x_31 = lean_environment_main_module(x_30); +x_32 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8; +lean_inc(x_15); +x_33 = l_Lean_addMacroScope(x_31, x_32, x_15); +x_34 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7; +x_35 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10; +lean_inc(x_14); +x_36 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_36, 0, x_14); +lean_ctor_set(x_36, 1, x_34); +lean_ctor_set(x_36, 2, x_33); +lean_ctor_set(x_36, 3, x_35); +x_37 = lean_st_ref_get(x_10, x_29); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_environment_main_module(x_40); +x_42 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13; +lean_inc(x_15); +x_43 = l_Lean_addMacroScope(x_41, x_42, x_15); +x_44 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12; +x_45 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15; +lean_inc(x_14); +x_46 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_46, 0, x_14); +lean_ctor_set(x_46, 1, x_44); +lean_ctor_set(x_46, 2, x_43); +lean_ctor_set(x_46, 3, x_45); +x_47 = lean_st_ref_get(x_10, x_39); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +lean_dec(x_48); +x_51 = lean_environment_main_module(x_50); +x_52 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18; +x_53 = l_Lean_addMacroScope(x_51, x_52, x_15); +x_54 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17; +x_55 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20; +x_56 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_56, 0, x_14); +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_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_23); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_46); +lean_ctor_set(x_58, 1, x_57); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_36); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_26); +lean_ctor_set(x_60, 1, x_59); +x_61 = l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__1(x_60, x_23); +x_62 = lean_array_get_size(x_1); +x_63 = lean_usize_of_nat(x_62); +lean_dec(x_62); +x_64 = 0; +x_65 = l_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__2(x_63, x_64, x_1, x_7, x_8, x_9, x_10, x_49); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; lean_object* x_72; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 1); +lean_inc(x_67); +lean_dec(x_65); +x_68 = l_Array_flatten___rarg(x_66); +lean_dec(x_66); +x_69 = lean_array_to_list(lean_box(0), x_68); +x_70 = l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3(x_69, x_23); +x_71 = l_List_isEmpty___rarg(x_2); +if (x_3 == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__1(x_5, x_23); +x_87 = l_List_appendTR___rarg(x_86, x_70); +x_88 = l_List_appendTR___rarg(x_87, x_61); +x_72 = x_88; +goto block_85; +} +else +{ +lean_object* x_89; lean_object* x_90; +lean_dec(x_61); +x_89 = l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__1(x_5, x_23); +x_90 = l_List_appendTR___rarg(x_89, x_70); +x_72 = x_90; +goto block_85; +} +block_85: +{ +if (x_71 == 0) +{ +if (x_3 == 0) +{ +lean_object* x_73; lean_object* x_74; +x_73 = lean_box(0); +x_74 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(x_2, x_23, x_72, x_3, x_4, x_73, x_7, x_8, x_9, x_10, x_67); +lean_dec(x_9); +return x_74; +} +else +{ +if (x_4 == 0) +{ +lean_object* x_75; lean_object* x_76; uint8_t x_77; +lean_dec(x_72); +lean_dec(x_2); +x_75 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22; +x_76 = l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(x_75, x_7, x_8, x_9, x_10, x_67); +lean_dec(x_9); +x_77 = !lean_is_exclusive(x_76); +if (x_77 == 0) +{ +return x_76; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_76, 0); +x_79 = lean_ctor_get(x_76, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_76); +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_81; lean_object* x_82; +x_81 = lean_box(0); +x_82 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(x_2, x_23, x_72, x_3, x_4, x_81, x_7, x_8, x_9, x_10, x_67); +lean_dec(x_9); +return x_82; +} +} +} +else +{ +lean_object* x_83; lean_object* x_84; +x_83 = lean_box(0); +x_84 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(x_2, x_23, x_72, x_3, x_4, x_83, x_7, x_8, x_9, x_10, x_67); +lean_dec(x_9); +return x_84; +} +} +} +else +{ +uint8_t x_91; +lean_dec(x_61); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_2); +x_91 = !lean_is_exclusive(x_65); +if (x_91 == 0) +{ +return x_65; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_65, 0); +x_93 = lean_ctor_get(x_65, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_65); +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; +} +} +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("It doesn't make sense to use `*` without `only`.", 48); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet(uint8_t x_1, uint8_t 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: +{ +if (x_2 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3(x_5, x_4, x_1, x_2, x_3, x_11, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +return x_12; +} +else +{ +if (x_1 == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_13 = l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2; +x_14 = l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(x_13, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_box(0); +x_20 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3(x_5, x_4, x_1, x_2, x_3, x_19, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__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) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__2(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_11; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_List_mapTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_List_notElem___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__6(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_filterTR_loop___at_Lean_Meta_SolveByElim_mkAssumptionSet___spec__7(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_unbox(x_4); +lean_dec(x_4); +x_13 = lean_unbox(x_5); +lean_dec(x_5); +x_14 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__2(x_1, x_2, x_3, x_12, x_13, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_unbox(x_3); +lean_dec(x_3); +x_13 = lean_unbox(x_4); +lean_dec(x_4); +x_14 = l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_SolveByElim_mkAssumptionSet___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, lean_object* x_10) { +_start: +{ +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_unbox(x_1); +lean_dec(x_1); +x_12 = lean_unbox(x_2); +lean_dec(x_2); +x_13 = l_Lean_Meta_SolveByElim_mkAssumptionSet(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_13; +} +} +lean_object* initialize_Init_Data_Sum(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_LabelAttribute(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Apply(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Backtrack(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Constructor(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Repeat(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Symm(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Term(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_SolveByElim(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_Sum(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_LabelAttribute(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Apply(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Backtrack(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Constructor(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Repeat(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Symm(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Term(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__1); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__2); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__3); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__4); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__5); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__6); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__7); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__8); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__9); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__10); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__11); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__12); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__13); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__14); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__15); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__16); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__17); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__18); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__19); +l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20 = _init_l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6____closed__20); +res = l_Lean_Meta_SolveByElim_initFn____x40_Lean_Meta_Tactic_SolveByElim___hyg_6_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__2 = _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__2); +l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__3 = _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__3); +l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4 = _init_l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_applyTactics___lambda__1___closed__4); +l_Lean_Meta_SolveByElim_ApplyRulesConfig_maxDepth___default = _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_maxDepth___default(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_ApplyRulesConfig_maxDepth___default); +l_Lean_Meta_SolveByElim_ApplyRulesConfig_transparency___default = _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_transparency___default(); +l_Lean_Meta_SolveByElim_ApplyRulesConfig_symm___default = _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_symm___default(); +l_Lean_Meta_SolveByElim_ApplyRulesConfig_exfalso___default = _init_l_Lean_Meta_SolveByElim_ApplyRulesConfig_exfalso___default(); +l_Lean_Meta_SolveByElim_SolveByElimConfig_maxDepth___default = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_maxDepth___default(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_maxDepth___default); +l_Lean_Meta_SolveByElim_SolveByElimConfig_backtracking___default = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_backtracking___default(); +l_Lean_Meta_SolveByElim_SolveByElimConfig_intro___default = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_intro___default(); +l_Lean_Meta_SolveByElim_SolveByElimConfig_constructor___default = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructor___default(); +l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_intros___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstance___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_introsAfter___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_constructorAfter___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_synthInstanceAfter___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_testPartialSolutions___lambda__1___closed__2); +l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_SolveByElimConfig_testSolutions___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__1); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__2); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__3 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__3(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__3); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__4); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__5); +l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6 = _init_l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_elabContextLemmas___closed__6); +l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1 = _init_l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__1); +l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2 = _init_l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_repeat_x27Core___at_Lean_Meta_SolveByElim_solveByElim_run___spec__2___closed__2); +l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1 = _init_l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__1); +l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2 = _init_l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_repeat1_x27___at_Lean_Meta_SolveByElim_solveByElim_run___spec__1___closed__2); +l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1 = _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__1); +l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2 = _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_solveByElim___lambda__1___closed__2); +l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1 = _init_l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_solveByElim___lambda__3___closed__1); +l_Lean_MVarId_applyRules___closed__1 = _init_l_Lean_MVarId_applyRules___closed__1(); +lean_mark_persistent(l_Lean_MVarId_applyRules___closed__1); +l_Lean_MVarId_applyRules___closed__2 = _init_l_Lean_MVarId_applyRules___closed__2(); +lean_mark_persistent(l_Lean_MVarId_applyRules___closed__2); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__1); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__2); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__3); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__4); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__5); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__6); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__7); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__8); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__9); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__10); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__11); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__12); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__13); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__14 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__14(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__14); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__15); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__16); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__17); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__18); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__19); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__20); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__21); +l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___lambda__3___closed__22); +l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__1); +l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2 = _init_l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2(); +lean_mark_persistent(l_Lean_Meta_SolveByElim_mkAssumptionSet___closed__2); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/Symm.c b/stage0/stdlib/Lean/Meta/Tactic/Symm.c new file mode 100644 index 0000000000..d6e56a73fa --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/Symm.c @@ -0,0 +1,7377 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.Symm +// Imports: Lean.Meta.Reduce Lean.Meta.Tactic.Assert +#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 +lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9(size_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_applySymm___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16; +lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8; +static lean_object* l_Lean_Meta_Symm_symmExt_config___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18; +lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +size_t lean_usize_shift_right(size_t, size_t); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11; +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102_(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__13; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22; +static uint8_t l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__1; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3; +lean_object* lean_name_append_after(lean_object*, lean_object*); +lean_object* l_Lean_ConstantInfo_type(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17; +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_MVarId_applySymm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15; +uint8_t lean_usize_dec_le(size_t, size_t); +lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14; +size_t lean_uint64_to_usize(uint64_t); +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6; +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l_Lean_instBEqLocalInstance___boxed(lean_object*, lean_object*); +size_t lean_usize_mul(size_t, size_t); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2; +uint8_t lean_usize_dec_eq(size_t, size_t); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_applySymm___closed__2; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6; +static lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2; +LEAN_EXPORT lean_object* l_Lean_MVarId_applySymmAt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_fvarId_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3(lean_object*, size_t, lean_object*); +lean_object* l_Lean_MVarId_replace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1; +lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10; +uint8_t l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2; +extern lean_object* l_Lean_Expr_instBEqExpr; +lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instHashableArray___rarg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Expr_getSymmLems___closed__2; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2; +lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_getSymmLems(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_symmExt; +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11; +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_instDecidableNot___rarg(uint8_t); +lean_object* l_Lean_ScopedEnvExtension_addScopedEntry___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__4; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4___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_st_ref_take(lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8; +lean_object* l_Lean_registerSimpleScopedEnvExtension___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_div(lean_object*, lean_object*); +lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9; +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19_(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19; +static lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1; +lean_object* l_Array_back_x3f___rarg(lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__8; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4; +LEAN_EXPORT lean_object* l_Lean_MVarId_symmSaturate___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3; +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +lean_object* lean_array_to_list(lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7; +lean_object* l_Lean_MVarId_note(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5; +uint8_t l_Lean_Meta_DiscrTree_Key_lt(lean_object*, lean_object*); +extern lean_object* l_Lean_Expr_instHashableExpr; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6; +extern lean_object* l_Lean_instInhabitedExpr; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2; +LEAN_EXPORT lean_object* l_Lean_MVarId_applySymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3; +lean_object* l_Lean_instHashableLocalInstance___boxed(lean_object*); +lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__8(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__10(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6___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_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1; +LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_MVarId_symmSaturate___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__1; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10; +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4; +lean_object* l_Lean_Meta_DiscrTree_mkPath(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +lean_object* lean_usize_to_nat(size_t); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4; +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_symmExt_config; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__14; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_DiscrTree_instInhabitedKey; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__11; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21; +lean_object* l_id___rarg___boxed(lean_object*); +static lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1; +lean_object* l_Lean_Meta_DiscrTree_instInhabitedDiscrTree(lean_object*); +static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Expr_applySymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1; +lean_object* l_Lean_indentExpr(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1; +lean_object* l_Lean_FVarId_getUserName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___boxed(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_Lean_MVarId_symmSaturate___spec__9___boxed(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_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_reduce(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_insertAt_x21___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_getSymmLems___closed__1; +lean_object* l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_object*); +lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static uint8_t l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__3; +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____lambda__1(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_addLocalEntry___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +lean_object* l_Array_back___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +size_t lean_usize_sub(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7; +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* l_Lean_Expr_fvar___override(lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +size_t lean_usize_shift_left(size_t, size_t); +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_setTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__13; +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_LocalDecl_toExpr(lean_object*); +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1; +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14; +uint8_t l_Lean_Exception_isRuntime(lean_object*); +lean_object* l_Lean_Meta_DiscrTree_getMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9; +lean_object* l_Array_instBEqArray___rarg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8; +lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1; +lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_symmSaturate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10; +static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__3; +uint64_t l_Lean_Meta_DiscrTree_Key_hash(lean_object*); +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5; +static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +static lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__2(lean_object*, lean_object*); +size_t lean_usize_land(size_t, size_t); +uint8_t l_Array_isEmpty___rarg(lean_object*); +static lean_object* _init_l_Lean_Meta_Symm_symmExt_config___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; lean_object* x_3; +x_1 = 1; +x_2 = 2; +x_3 = lean_alloc_ctor(0, 0, 5); +lean_ctor_set_uint8(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, 1, x_1); +lean_ctor_set_uint8(x_3, 2, x_2); +lean_ctor_set_uint8(x_3, 3, x_1); +lean_ctor_set_uint8(x_3, 4, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_symmExt_config() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Symm_symmExt_config___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4(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; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_lt(x_4, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_4); +x_8 = lean_box(0); +return x_8; +} +else +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_array_fget(x_1, x_4); +x_10 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_5, x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_4, x_11); +lean_dec(x_4); +x_3 = lean_box(0); +x_4 = x_12; +goto _start; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_array_fget(x_2, x_4); +lean_dec(x_4); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__1() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = 5; +x_3 = lean_usize_shift_left(x_1, x_2); +return x_3; +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__1; +x_3 = lean_usize_sub(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; size_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = 5; +x_6 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2; +x_7 = lean_usize_land(x_2, x_6); +x_8 = lean_usize_to_nat(x_7); +x_9 = lean_box(2); +x_10 = lean_array_get(x_9, x_4, x_8); +lean_dec(x_8); +lean_dec(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_3, x_11); +lean_dec(x_11); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_12); +x_14 = lean_box(0); +return x_14; +} +else +{ +lean_object* x_15; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_12); +return x_15; +} +} +case 1: +{ +lean_object* x_16; size_t x_17; +x_16 = lean_ctor_get(x_10, 0); +lean_inc(x_16); +lean_dec(x_10); +x_17 = lean_usize_shift_right(x_2, x_5); +x_1 = x_16; +x_2 = x_17; +goto _start; +} +default: +{ +lean_object* x_19; +x_19 = lean_box(0); +return x_19; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_1, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_1, 1); +lean_inc(x_21); +lean_dec(x_1); +x_22 = lean_unsigned_to_nat(0u); +x_23 = l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4(x_20, x_21, lean_box(0), x_22, x_3); +lean_dec(x_21); +lean_dec(x_20); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint64_t x_4; size_t x_5; lean_object* x_6; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_5 = lean_uint64_to_usize(x_4); +x_6 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3(x_3, x_5, x_2); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_5, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_dec(x_5); +return x_6; +} +else +{ +lean_object* x_9; lean_object* x_10; uint64_t x_11; size_t x_12; size_t x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_9 = lean_array_fget(x_2, x_5); +x_10 = lean_array_fget(x_3, x_5); +x_11 = l_Lean_Meta_DiscrTree_Key_hash(x_9); +x_12 = lean_uint64_to_usize(x_11); +x_13 = 1; +x_14 = lean_usize_sub(x_1, x_13); +x_15 = 5; +x_16 = lean_usize_mul(x_15, x_14); +x_17 = lean_usize_shift_right(x_12, x_16); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_5, x_18); +lean_dec(x_5); +x_20 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_6, x_17, x_1, x_9, x_10); +x_4 = lean_box(0); +x_5 = x_19; +x_6 = x_20; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +x_7 = lean_array_get_size(x_5); +x_8 = lean_nat_dec_lt(x_2, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +uint8_t x_9; +lean_dec(x_2); +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_1, 1); +lean_dec(x_10); +x_11 = lean_ctor_get(x_1, 0); +lean_dec(x_11); +x_12 = lean_array_push(x_5, x_3); +x_13 = lean_array_push(x_6, x_4); +lean_ctor_set(x_1, 1, x_13); +lean_ctor_set(x_1, 0, x_12); +return x_1; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_dec(x_1); +x_14 = lean_array_push(x_5, x_3); +x_15 = lean_array_push(x_6, x_4); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_array_fget(x_5, x_2); +x_18 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_3, x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_6); +lean_dec(x_5); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_2, x_19); +lean_dec(x_2); +x_2 = x_20; +goto _start; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_1); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_1, 1); +lean_dec(x_23); +x_24 = lean_ctor_get(x_1, 0); +lean_dec(x_24); +x_25 = lean_array_fset(x_5, x_2, x_3); +x_26 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_25); +return x_1; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +lean_dec(x_1); +x_27 = lean_array_fset(x_5, x_2, x_3); +x_28 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +} +} +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; size_t x_8; size_t x_9; size_t x_10; size_t x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_7 = lean_ctor_get(x_1, 0); +x_8 = 1; +x_9 = 5; +x_10 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2; +x_11 = lean_usize_land(x_2, x_10); +x_12 = lean_usize_to_nat(x_11); +x_13 = lean_array_get_size(x_7); +x_14 = lean_nat_dec_lt(x_12, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_4); +return x_1; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_array_fget(x_7, x_12); +x_16 = lean_box(0); +x_17 = lean_array_fset(x_7, x_12, x_16); +switch (lean_obj_tag(x_15)) { +case 0: +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_15); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_15, 0); +x_20 = lean_ctor_get(x_15, 1); +x_21 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_free_object(x_15); +x_22 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_array_fset(x_17, x_12, x_23); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_24); +return x_1; +} +else +{ +lean_object* x_25; +lean_dec(x_20); +lean_dec(x_19); +lean_ctor_set(x_15, 1, x_5); +lean_ctor_set(x_15, 0, x_4); +x_25 = lean_array_fset(x_17, x_12, x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_25); +return x_1; +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_15, 0); +x_27 = lean_ctor_get(x_15, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_15); +x_28 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_26); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_26, x_27, x_4, x_5); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +x_31 = lean_array_fset(x_17, x_12, x_30); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_31); +return x_1; +} +else +{ +lean_object* x_32; lean_object* x_33; +lean_dec(x_27); +lean_dec(x_26); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_4); +lean_ctor_set(x_32, 1, x_5); +x_33 = lean_array_fset(x_17, x_12, x_32); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_33); +return x_1; +} +} +} +case 1: +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_15); +if (x_34 == 0) +{ +lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_15, 0); +x_36 = lean_usize_shift_right(x_2, x_9); +x_37 = lean_usize_add(x_3, x_8); +x_38 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_35, x_36, x_37, x_4, x_5); +lean_ctor_set(x_15, 0, x_38); +x_39 = lean_array_fset(x_17, x_12, x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_39); +return x_1; +} +else +{ +lean_object* x_40; size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_40 = lean_ctor_get(x_15, 0); +lean_inc(x_40); +lean_dec(x_15); +x_41 = lean_usize_shift_right(x_2, x_9); +x_42 = lean_usize_add(x_3, x_8); +x_43 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_40, x_41, x_42, x_4, x_5); +x_44 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_44, 0, x_43); +x_45 = lean_array_fset(x_17, x_12, x_44); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_45); +return x_1; +} +} +default: +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_4); +lean_ctor_set(x_46, 1, x_5); +x_47 = lean_array_fset(x_17, x_12, x_46); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_47); +return x_1; +} +} +} +} +else +{ +lean_object* x_48; size_t x_49; size_t x_50; size_t x_51; size_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_48 = lean_ctor_get(x_1, 0); +lean_inc(x_48); +lean_dec(x_1); +x_49 = 1; +x_50 = 5; +x_51 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2; +x_52 = lean_usize_land(x_2, x_51); +x_53 = lean_usize_to_nat(x_52); +x_54 = lean_array_get_size(x_48); +x_55 = lean_nat_dec_lt(x_53, x_54); +lean_dec(x_54); +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec(x_53); +lean_dec(x_5); +lean_dec(x_4); +x_56 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_56, 0, x_48); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_array_fget(x_48, x_53); +x_58 = lean_box(0); +x_59 = lean_array_fset(x_48, x_53, x_58); +switch (lean_obj_tag(x_57)) { +case 0: +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_60 = lean_ctor_get(x_57, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_57, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_62 = x_57; +} else { + lean_dec_ref(x_57); + x_62 = lean_box(0); +} +x_63 = l___private_Lean_Meta_DiscrTreeTypes_0__Lean_Meta_DiscrTree_beqKey____x40_Lean_Meta_DiscrTreeTypes___hyg_99_(x_4, x_60); +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_dec(x_62); +x_64 = l_Lean_PersistentHashMap_mkCollisionNode___rarg(x_60, x_61, x_4, x_5); +x_65 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_65, 0, x_64); +x_66 = lean_array_fset(x_59, x_53, x_65); +lean_dec(x_53); +x_67 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_67, 0, x_66); +return x_67; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_61); +lean_dec(x_60); +if (lean_is_scalar(x_62)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_62; +} +lean_ctor_set(x_68, 0, x_4); +lean_ctor_set(x_68, 1, x_5); +x_69 = lean_array_fset(x_59, x_53, x_68); +lean_dec(x_53); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; +} +} +case 1: +{ +lean_object* x_71; lean_object* x_72; size_t x_73; size_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_71 = lean_ctor_get(x_57, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + x_72 = x_57; +} else { + lean_dec_ref(x_57); + x_72 = lean_box(0); +} +x_73 = lean_usize_shift_right(x_2, x_50); +x_74 = lean_usize_add(x_3, x_49); +x_75 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_71, x_73, x_74, x_4, x_5); +if (lean_is_scalar(x_72)) { + x_76 = lean_alloc_ctor(1, 1, 0); +} else { + x_76 = x_72; +} +lean_ctor_set(x_76, 0, x_75); +x_77 = lean_array_fset(x_59, x_53, x_76); +lean_dec(x_53); +x_78 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_78, 0, x_77); +return x_78; +} +default: +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_4); +lean_ctor_set(x_79, 1, x_5); +x_80 = lean_array_fset(x_59, x_53, x_79); +lean_dec(x_53); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_80); +return x_81; +} +} +} +} +} +else +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_1); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; size_t x_85; uint8_t x_86; +x_83 = lean_unsigned_to_nat(0u); +x_84 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__8(x_1, x_83, x_4, x_5); +x_85 = 7; +x_86 = lean_usize_dec_le(x_85, x_3); +if (x_86 == 0) +{ +lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_87 = l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(x_84); +x_88 = lean_unsigned_to_nat(4u); +x_89 = lean_nat_dec_lt(x_87, x_88); +lean_dec(x_87); +if (x_89 == 0) +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_ctor_get(x_84, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_84, 1); +lean_inc(x_91); +lean_dec(x_84); +x_92 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1; +x_93 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7(x_3, x_90, x_91, lean_box(0), x_83, x_92); +lean_dec(x_91); +lean_dec(x_90); +return x_93; +} +else +{ +return x_84; +} +} +else +{ +return x_84; +} +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; size_t x_99; uint8_t x_100; +x_94 = lean_ctor_get(x_1, 0); +x_95 = lean_ctor_get(x_1, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_1); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_unsigned_to_nat(0u); +x_98 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__8(x_96, x_97, x_4, x_5); +x_99 = 7; +x_100 = lean_usize_dec_le(x_99, x_3); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_101 = l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(x_98); +x_102 = lean_unsigned_to_nat(4u); +x_103 = lean_nat_dec_lt(x_101, x_102); +lean_dec(x_101); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_98, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_98, 1); +lean_inc(x_105); +lean_dec(x_98); +x_106 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1; +x_107 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7(x_3, x_104, x_105, lean_box(0), x_97, x_106); +lean_dec(x_105); +lean_dec(x_104); +return x_107; +} +else +{ +return x_98; +} +} +else +{ +return x_98; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_8 = lean_uint64_to_usize(x_7); +x_9 = 1; +x_10 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_5, x_8, x_9, x_2, x_3); +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_add(x_6, x_11); +lean_dec(x_6); +lean_ctor_set(x_1, 1, x_12); +lean_ctor_set(x_1, 0, x_10); +return x_1; +} +else +{ +lean_object* x_13; lean_object* x_14; uint64_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_13 = lean_ctor_get(x_1, 0); +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_1); +x_15 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_16 = lean_uint64_to_usize(x_15); +x_17 = 1; +x_18 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_13, x_16, x_17, x_2, x_3); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_14, x_19); +lean_dec(x_14); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_18); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_3, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_array_push(x_1, x_2); +return x_6; +} +else +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_fget(x_1, x_3); +x_8 = lean_name_eq(x_2, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_add(x_3, x_9); +lean_dec(x_3); +x_3 = x_10; +goto _start; +} +else +{ +lean_object* x_12; +x_12 = lean_array_fset(x_1, x_3, x_2); +lean_dec(x_3); +return x_12; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_9 = lean_nat_add(x_7, x_8); +x_10 = lean_unsigned_to_nat(2u); +x_11 = lean_nat_div(x_9, x_10); +lean_dec(x_9); +lean_inc(x_6); +x_12 = lean_array_get(x_6, x_5, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_ctor_get(x_6, 0); +lean_inc(x_14); +x_15 = l_Lean_Meta_DiscrTree_Key_lt(x_13, x_14); +if (x_15 == 0) +{ +uint8_t x_16; +lean_dec(x_8); +x_16 = l_Lean_Meta_DiscrTree_Key_lt(x_14, x_13); +lean_dec(x_13); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +lean_dec(x_7); +lean_dec(x_6); +x_17 = lean_array_get_size(x_5); +x_18 = lean_nat_dec_lt(x_11, x_17); +lean_dec(x_17); +if (x_18 == 0) +{ +lean_dec(x_11); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_array_fget(x_5, x_11); +x_20 = lean_box(0); +x_21 = lean_array_fset(x_5, x_11, x_20); +x_22 = !lean_is_exclusive(x_19); +if (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; +x_23 = lean_ctor_get(x_19, 1); +x_24 = lean_ctor_get(x_19, 0); +lean_dec(x_24); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_3, x_25); +x_27 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_26, x_23); +lean_dec(x_26); +lean_ctor_set(x_19, 1, x_27); +lean_ctor_set(x_19, 0, x_4); +x_28 = lean_array_fset(x_21, x_11, x_19); +lean_dec(x_11); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_dec(x_19); +x_30 = lean_unsigned_to_nat(1u); +x_31 = lean_nat_add(x_3, x_30); +x_32 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_31, x_29); +lean_dec(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_fset(x_21, x_11, x_33); +lean_dec(x_11); +return x_34; +} +} +} +else +{ +x_8 = x_11; +goto _start; +} +} +else +{ +uint8_t x_36; +lean_dec(x_14); +lean_dec(x_13); +x_36 = lean_nat_dec_eq(x_11, x_7); +if (x_36 == 0) +{ +lean_dec(x_7); +x_7 = x_11; +goto _start; +} +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_dec(x_11); +lean_dec(x_8); +lean_dec(x_6); +x_38 = lean_unsigned_to_nat(1u); +x_39 = lean_nat_add(x_3, x_38); +x_40 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_39); +lean_dec(x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_4); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_nat_add(x_7, x_38); +lean_dec(x_7); +x_43 = l_Array_insertAt_x21___rarg(x_5, x_42, x_41); +lean_dec(x_42); +return x_43; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = l_Array_isEmpty___rarg(x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_unsigned_to_nat(0u); +lean_inc(x_6); +x_9 = lean_array_get(x_6, x_5, x_8); +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l_Lean_Meta_DiscrTree_Key_lt(x_10, x_11); +if (x_12 == 0) +{ +uint8_t x_13; +x_13 = l_Lean_Meta_DiscrTree_Key_lt(x_11, x_10); +lean_dec(x_11); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; +lean_dec(x_10); +lean_dec(x_6); +x_14 = lean_array_get_size(x_5); +x_15 = lean_nat_dec_lt(x_8, x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_array_fget(x_5, x_8); +x_17 = lean_box(0); +x_18 = lean_array_fset(x_5, x_8, x_17); +x_19 = !lean_is_exclusive(x_16); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_20 = lean_ctor_get(x_16, 1); +x_21 = lean_ctor_get(x_16, 0); +lean_dec(x_21); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_3, x_22); +x_24 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_23, x_20); +lean_dec(x_23); +lean_ctor_set(x_16, 1, x_24); +lean_ctor_set(x_16, 0, x_4); +x_25 = lean_array_fset(x_18, x_8, 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; +x_26 = lean_ctor_get(x_16, 1); +lean_inc(x_26); +lean_dec(x_16); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_add(x_3, x_27); +x_29 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_28, x_26); +lean_dec(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_4); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_array_fset(x_18, x_8, x_30); +return x_31; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_inc(x_6); +x_32 = l_Array_back___rarg(x_6, x_5); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec(x_32); +x_34 = l_Lean_Meta_DiscrTree_Key_lt(x_33, x_10); +if (x_34 == 0) +{ +uint8_t x_35; +x_35 = l_Lean_Meta_DiscrTree_Key_lt(x_10, x_33); +lean_dec(x_33); +lean_dec(x_10); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_dec(x_6); +x_36 = lean_array_get_size(x_5); +x_37 = lean_unsigned_to_nat(1u); +x_38 = lean_nat_sub(x_36, x_37); +x_39 = lean_nat_dec_lt(x_38, x_36); +lean_dec(x_36); +if (x_39 == 0) +{ +lean_dec(x_38); +lean_dec(x_4); +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_array_fget(x_5, x_38); +x_41 = lean_box(0); +x_42 = lean_array_fset(x_5, x_38, x_41); +x_43 = !lean_is_exclusive(x_40); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = lean_ctor_get(x_40, 1); +x_45 = lean_ctor_get(x_40, 0); +lean_dec(x_45); +x_46 = lean_nat_add(x_3, x_37); +x_47 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_46, x_44); +lean_dec(x_46); +lean_ctor_set(x_40, 1, x_47); +lean_ctor_set(x_40, 0, x_4); +x_48 = lean_array_fset(x_42, x_38, x_40); +lean_dec(x_38); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_49 = lean_ctor_get(x_40, 1); +lean_inc(x_49); +lean_dec(x_40); +x_50 = lean_nat_add(x_3, x_37); +x_51 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_50, x_49); +lean_dec(x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_4); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_array_fset(x_42, x_38, x_52); +lean_dec(x_38); +return x_53; +} +} +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_54 = lean_array_get_size(x_5); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_sub(x_54, x_55); +lean_dec(x_54); +x_57 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_56); +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_dec(x_33); +lean_dec(x_10); +lean_dec(x_6); +x_58 = lean_unsigned_to_nat(1u); +x_59 = lean_nat_add(x_3, x_58); +x_60 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_59); +lean_dec(x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_4); +lean_ctor_set(x_61, 1, x_60); +x_62 = lean_array_push(x_5, x_61); +return x_62; +} +} +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +x_63 = lean_unsigned_to_nat(1u); +x_64 = lean_nat_add(x_3, x_63); +x_65 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_64); +lean_dec(x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_4); +lean_ctor_set(x_66, 1, x_65); +x_67 = l_Array_insertAt_x21___rarg(x_5, x_8, x_66); +return x_67; +} +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_6); +x_68 = lean_unsigned_to_nat(1u); +x_69 = lean_nat_add(x_3, x_68); +x_70 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_1, x_2, x_69); +lean_dec(x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_4); +lean_ctor_set(x_71, 1, x_70); +x_72 = lean_array_push(x_5, x_71); +return x_72; +} +} +} +static lean_object* _init_l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1() { +_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___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +x_8 = lean_array_get_size(x_1); +x_9 = lean_nat_dec_lt(x_3, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__10(x_6, x_2, x_10); +lean_ctor_set(x_4, 0, x_11); +return x_4; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_array_fget(x_1, x_3); +x_13 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2; +lean_inc(x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11(x_1, x_2, x_3, x_12, x_7, x_14); +lean_ctor_set(x_4, 1, x_15); +return x_4; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_ctor_get(x_4, 0); +x_17 = lean_ctor_get(x_4, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_4); +x_18 = lean_array_get_size(x_1); +x_19 = lean_nat_dec_lt(x_3, x_18); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertVal_loop___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__10(x_16, x_2, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_17); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_23 = lean_array_fget(x_1, x_3); +x_24 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2; +lean_inc(x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11(x_1, x_2, x_3, x_23, x_17, x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_16); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +static lean_object* _init_l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_DiscrTree_instInhabitedDiscrTree(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1; +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.DiscrTree", 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean.Meta.DiscrTree.insertCore", 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("invalid key sequence", 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4() { +_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_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1; +x_2 = l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2; +x_3 = lean_unsigned_to_nat(463u); +x_4 = lean_unsigned_to_nat(23u); +x_5 = l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___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_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Array_isEmpty___rarg(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_array_get_size(x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_nat_dec_lt(x_6, x_5); +lean_dec(x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = l_Lean_Meta_DiscrTree_instInhabitedKey; +x_9 = l___private_Init_Util_0__outOfBounds___rarg(x_8); +lean_inc(x_9); +lean_inc(x_1); +x_10 = l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__2(x_1, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_unsigned_to_nat(1u); +x_12 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_2, x_3, x_11); +lean_dec(x_2); +x_13 = l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(x_1, x_9, x_12); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_unsigned_to_nat(1u); +x_16 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_2, x_3, x_15, x_14); +lean_dec(x_2); +x_17 = l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(x_1, x_9, x_16); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_array_fget(x_2, x_6); +lean_inc(x_18); +lean_inc(x_1); +x_19 = l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__2(x_1, x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_unsigned_to_nat(1u); +x_21 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_createNodes___rarg(x_2, x_3, x_20); +lean_dec(x_2); +x_22 = l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(x_1, x_18, x_21); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_19, 0); +lean_inc(x_23); +lean_dec(x_19); +x_24 = lean_unsigned_to_nat(1u); +x_25 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_2, x_3, x_24, x_23); +lean_dec(x_2); +x_26 = l_Lean_PersistentHashMap_insert___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__5(x_1, x_18, x_25); +return x_26; +} +} +} +else +{ +lean_object* x_27; lean_object* x_28; +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_27 = l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4; +x_28 = l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13(x_27); +return x_28; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____lambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_dec(x_2); +x_5 = l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1(x_1, x_4, x_3); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Lean", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Meta", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Symm", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symmExt", 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5() { +_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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3; +x_4 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6; +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____lambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_id___rarg___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11() { +_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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8; +x_4 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10; +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11; +x_3 = l_Lean_registerSimpleScopedEnvExtension___rarg(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4___boxed(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; +x_6 = l_Lean_PersistentHashMap_findAtAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__4(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; lean_object* x_5; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3(x_1, x_4, x_3); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7___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) { +_start: +{ +size_t x_7; lean_object* x_8; +x_7 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__7(x_7, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6(x_1, x_6, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_binInsertM___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__11(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instBEqLocalInstance___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6; +x_2 = lean_alloc_closure((void*)(l_Array_instBEqArray___rarg___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7; +x_2 = l_Lean_Expr_instBEqExpr; +x_3 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instHashableLocalInstance___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9; +x_2 = lean_alloc_closure((void*)(l_instHashableArray___rarg___boxed), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10; +x_2 = l_Lean_Expr_instHashableExpr; +x_3 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_instBEqExpr; +x_2 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 4, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_instHashableExpr; +x_2 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 2); +lean_closure_set(x_2, 0, x_1); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15; +x_2 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +lean_ctor_set(x_2, 2, x_1); +lean_ctor_set(x_2, 3, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17() { +_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_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3; +x_2 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5; +x_3 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12; +x_4 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16; +x_5 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set(x_5, 3, x_1); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_4); +lean_ctor_set(x_5, 6, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +switch (x_3) { +case 0: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_dec(x_6); +x_9 = lean_st_ref_take(x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +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; uint8_t x_22; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 4); +lean_dec(x_14); +x_15 = l_Lean_ScopedEnvExtension_addEntry___rarg(x_1, x_13, x_2); +x_16 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +lean_ctor_set(x_10, 4, x_16); +lean_ctor_set(x_10, 0, x_15); +x_17 = lean_st_ref_set(x_7, x_10, x_11); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +lean_dec(x_17); +x_19 = lean_st_ref_take(x_5, x_18); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = !lean_is_exclusive(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_23 = lean_ctor_get(x_20, 1); +lean_dec(x_23); +x_24 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +lean_ctor_set(x_20, 1, x_24); +x_25 = lean_st_ref_set(x_5, x_20, x_21); +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_25, 0); +lean_dec(x_27); +x_28 = lean_box(0); +lean_ctor_set(x_25, 0, x_28); +return x_25; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_25, 1); +lean_inc(x_29); +lean_dec(x_25); +x_30 = lean_box(0); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +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; +x_32 = lean_ctor_get(x_20, 0); +x_33 = lean_ctor_get(x_20, 2); +x_34 = lean_ctor_get(x_20, 3); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_20); +x_35 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +x_36 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_36, 0, x_32); +lean_ctor_set(x_36, 1, x_35); +lean_ctor_set(x_36, 2, x_33); +lean_ctor_set(x_36, 3, x_34); +x_37 = lean_st_ref_set(x_5, x_36, x_21); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_39 = x_37; +} else { + lean_dec_ref(x_37); + x_39 = lean_box(0); +} +x_40 = lean_box(0); +if (lean_is_scalar(x_39)) { + x_41 = lean_alloc_ctor(0, 2, 0); +} else { + x_41 = x_39; +} +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_38); +return x_41; +} +} +else +{ +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; +x_42 = lean_ctor_get(x_10, 0); +x_43 = lean_ctor_get(x_10, 1); +x_44 = lean_ctor_get(x_10, 2); +x_45 = lean_ctor_get(x_10, 3); +x_46 = lean_ctor_get(x_10, 5); +x_47 = lean_ctor_get(x_10, 6); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_10); +x_48 = l_Lean_ScopedEnvExtension_addEntry___rarg(x_1, x_42, x_2); +x_49 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +x_50 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_43); +lean_ctor_set(x_50, 2, x_44); +lean_ctor_set(x_50, 3, x_45); +lean_ctor_set(x_50, 4, x_49); +lean_ctor_set(x_50, 5, x_46); +lean_ctor_set(x_50, 6, x_47); +x_51 = lean_st_ref_set(x_7, x_50, x_11); +x_52 = lean_ctor_get(x_51, 1); +lean_inc(x_52); +lean_dec(x_51); +x_53 = lean_st_ref_take(x_5, x_52); +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); +lean_inc(x_55); +lean_dec(x_53); +x_56 = lean_ctor_get(x_54, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_54, 2); +lean_inc(x_57); +x_58 = lean_ctor_get(x_54, 3); +lean_inc(x_58); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + lean_ctor_release(x_54, 2); + lean_ctor_release(x_54, 3); + x_59 = x_54; +} else { + lean_dec_ref(x_54); + x_59 = lean_box(0); +} +x_60 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +if (lean_is_scalar(x_59)) { + x_61 = lean_alloc_ctor(0, 4, 0); +} else { + x_61 = x_59; +} +lean_ctor_set(x_61, 0, x_56); +lean_ctor_set(x_61, 1, x_60); +lean_ctor_set(x_61, 2, x_57); +lean_ctor_set(x_61, 3, x_58); +x_62 = lean_st_ref_set(x_5, x_61, x_55); +x_63 = lean_ctor_get(x_62, 1); +lean_inc(x_63); +if (lean_is_exclusive(x_62)) { + lean_ctor_release(x_62, 0); + lean_ctor_release(x_62, 1); + x_64 = x_62; +} else { + lean_dec_ref(x_62); + x_64 = lean_box(0); +} +x_65 = lean_box(0); +if (lean_is_scalar(x_64)) { + x_66 = lean_alloc_ctor(0, 2, 0); +} else { + x_66 = x_64; +} +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_63); +return x_66; +} +} +case 1: +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +lean_dec(x_6); +x_67 = lean_st_ref_take(x_7, x_8); +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +lean_dec(x_67); +x_70 = !lean_is_exclusive(x_68); +if (x_70 == 0) +{ +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; uint8_t x_80; +x_71 = lean_ctor_get(x_68, 0); +x_72 = lean_ctor_get(x_68, 4); +lean_dec(x_72); +x_73 = l_Lean_ScopedEnvExtension_addLocalEntry___rarg(x_1, x_71, x_2); +x_74 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +lean_ctor_set(x_68, 4, x_74); +lean_ctor_set(x_68, 0, x_73); +x_75 = lean_st_ref_set(x_7, x_68, x_69); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = lean_st_ref_take(x_5, x_76); +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 = !lean_is_exclusive(x_78); +if (x_80 == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; +x_81 = lean_ctor_get(x_78, 1); +lean_dec(x_81); +x_82 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +lean_ctor_set(x_78, 1, x_82); +x_83 = lean_st_ref_set(x_5, x_78, x_79); +x_84 = !lean_is_exclusive(x_83); +if (x_84 == 0) +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_83, 0); +lean_dec(x_85); +x_86 = lean_box(0); +lean_ctor_set(x_83, 0, x_86); +return x_83; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_83, 1); +lean_inc(x_87); +lean_dec(x_83); +x_88 = lean_box(0); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_87); +return x_89; +} +} +else +{ +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; +x_90 = lean_ctor_get(x_78, 0); +x_91 = lean_ctor_get(x_78, 2); +x_92 = lean_ctor_get(x_78, 3); +lean_inc(x_92); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_78); +x_93 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +x_94 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_94, 0, x_90); +lean_ctor_set(x_94, 1, x_93); +lean_ctor_set(x_94, 2, x_91); +lean_ctor_set(x_94, 3, x_92); +x_95 = lean_st_ref_set(x_5, x_94, x_79); +x_96 = lean_ctor_get(x_95, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + lean_ctor_release(x_95, 1); + x_97 = x_95; +} else { + lean_dec_ref(x_95); + x_97 = lean_box(0); +} +x_98 = lean_box(0); +if (lean_is_scalar(x_97)) { + x_99 = lean_alloc_ctor(0, 2, 0); +} else { + x_99 = x_97; +} +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_96); +return x_99; +} +} +else +{ +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; +x_100 = lean_ctor_get(x_68, 0); +x_101 = lean_ctor_get(x_68, 1); +x_102 = lean_ctor_get(x_68, 2); +x_103 = lean_ctor_get(x_68, 3); +x_104 = lean_ctor_get(x_68, 5); +x_105 = lean_ctor_get(x_68, 6); +lean_inc(x_105); +lean_inc(x_104); +lean_inc(x_103); +lean_inc(x_102); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_68); +x_106 = l_Lean_ScopedEnvExtension_addLocalEntry___rarg(x_1, x_100, x_2); +x_107 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +x_108 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_101); +lean_ctor_set(x_108, 2, x_102); +lean_ctor_set(x_108, 3, x_103); +lean_ctor_set(x_108, 4, x_107); +lean_ctor_set(x_108, 5, x_104); +lean_ctor_set(x_108, 6, x_105); +x_109 = lean_st_ref_set(x_7, x_108, x_69); +x_110 = lean_ctor_get(x_109, 1); +lean_inc(x_110); +lean_dec(x_109); +x_111 = lean_st_ref_take(x_5, x_110); +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_ctor_get(x_112, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_112, 2); +lean_inc(x_115); +x_116 = lean_ctor_get(x_112, 3); +lean_inc(x_116); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + lean_ctor_release(x_112, 2); + lean_ctor_release(x_112, 3); + x_117 = x_112; +} else { + lean_dec_ref(x_112); + x_117 = lean_box(0); +} +x_118 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +if (lean_is_scalar(x_117)) { + x_119 = lean_alloc_ctor(0, 4, 0); +} else { + x_119 = x_117; +} +lean_ctor_set(x_119, 0, x_114); +lean_ctor_set(x_119, 1, x_118); +lean_ctor_set(x_119, 2, x_115); +lean_ctor_set(x_119, 3, x_116); +x_120 = lean_st_ref_set(x_5, x_119, x_113); +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 = lean_box(0); +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; +} +} +default: +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; +x_125 = lean_ctor_get(x_6, 6); +lean_inc(x_125); +lean_dec(x_6); +x_126 = lean_st_ref_take(x_7, x_8); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); +x_129 = !lean_is_exclusive(x_127); +if (x_129 == 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; uint8_t x_139; +x_130 = lean_ctor_get(x_127, 0); +x_131 = lean_ctor_get(x_127, 4); +lean_dec(x_131); +x_132 = l_Lean_ScopedEnvExtension_addScopedEntry___rarg(x_1, x_130, x_125, x_2); +x_133 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +lean_ctor_set(x_127, 4, x_133); +lean_ctor_set(x_127, 0, x_132); +x_134 = lean_st_ref_set(x_7, x_127, x_128); +x_135 = lean_ctor_get(x_134, 1); +lean_inc(x_135); +lean_dec(x_134); +x_136 = lean_st_ref_take(x_5, x_135); +x_137 = lean_ctor_get(x_136, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_136, 1); +lean_inc(x_138); +lean_dec(x_136); +x_139 = !lean_is_exclusive(x_137); +if (x_139 == 0) +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; +x_140 = lean_ctor_get(x_137, 1); +lean_dec(x_140); +x_141 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +lean_ctor_set(x_137, 1, x_141); +x_142 = lean_st_ref_set(x_5, x_137, x_138); +x_143 = !lean_is_exclusive(x_142); +if (x_143 == 0) +{ +lean_object* x_144; lean_object* x_145; +x_144 = lean_ctor_get(x_142, 0); +lean_dec(x_144); +x_145 = lean_box(0); +lean_ctor_set(x_142, 0, x_145); +return x_142; +} +else +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_146 = lean_ctor_get(x_142, 1); +lean_inc(x_146); +lean_dec(x_142); +x_147 = lean_box(0); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_146); +return x_148; +} +} +else +{ +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; +x_149 = lean_ctor_get(x_137, 0); +x_150 = lean_ctor_get(x_137, 2); +x_151 = lean_ctor_get(x_137, 3); +lean_inc(x_151); +lean_inc(x_150); +lean_inc(x_149); +lean_dec(x_137); +x_152 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +x_153 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_153, 0, x_149); +lean_ctor_set(x_153, 1, x_152); +lean_ctor_set(x_153, 2, x_150); +lean_ctor_set(x_153, 3, x_151); +x_154 = lean_st_ref_set(x_5, x_153, x_138); +x_155 = lean_ctor_get(x_154, 1); +lean_inc(x_155); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_156 = x_154; +} else { + lean_dec_ref(x_154); + x_156 = lean_box(0); +} +x_157 = lean_box(0); +if (lean_is_scalar(x_156)) { + x_158 = lean_alloc_ctor(0, 2, 0); +} else { + x_158 = x_156; +} +lean_ctor_set(x_158, 0, x_157); +lean_ctor_set(x_158, 1, x_155); +return x_158; +} +} +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; 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; +x_159 = lean_ctor_get(x_127, 0); +x_160 = lean_ctor_get(x_127, 1); +x_161 = lean_ctor_get(x_127, 2); +x_162 = lean_ctor_get(x_127, 3); +x_163 = lean_ctor_get(x_127, 5); +x_164 = lean_ctor_get(x_127, 6); +lean_inc(x_164); +lean_inc(x_163); +lean_inc(x_162); +lean_inc(x_161); +lean_inc(x_160); +lean_inc(x_159); +lean_dec(x_127); +x_165 = l_Lean_ScopedEnvExtension_addScopedEntry___rarg(x_1, x_159, x_125, x_2); +x_166 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2; +x_167 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_160); +lean_ctor_set(x_167, 2, x_161); +lean_ctor_set(x_167, 3, x_162); +lean_ctor_set(x_167, 4, x_166); +lean_ctor_set(x_167, 5, x_163); +lean_ctor_set(x_167, 6, x_164); +x_168 = lean_st_ref_set(x_7, x_167, x_128); +x_169 = lean_ctor_get(x_168, 1); +lean_inc(x_169); +lean_dec(x_168); +x_170 = lean_st_ref_take(x_5, x_169); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +x_172 = lean_ctor_get(x_170, 1); +lean_inc(x_172); +lean_dec(x_170); +x_173 = lean_ctor_get(x_171, 0); +lean_inc(x_173); +x_174 = lean_ctor_get(x_171, 2); +lean_inc(x_174); +x_175 = lean_ctor_get(x_171, 3); +lean_inc(x_175); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + lean_ctor_release(x_171, 2); + lean_ctor_release(x_171, 3); + x_176 = x_171; +} else { + lean_dec_ref(x_171); + x_176 = lean_box(0); +} +x_177 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +if (lean_is_scalar(x_176)) { + x_178 = lean_alloc_ctor(0, 4, 0); +} else { + x_178 = x_176; +} +lean_ctor_set(x_178, 0, x_173); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_174); +lean_ctor_set(x_178, 3, x_175); +x_179 = lean_st_ref_set(x_5, x_178, x_172); +x_180 = lean_ctor_get(x_179, 1); +lean_inc(x_180); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + x_181 = x_179; +} else { + lean_dec_ref(x_179); + x_181 = lean_box(0); +} +x_182 = lean_box(0); +if (lean_is_scalar(x_181)) { + x_183 = lean_alloc_ctor(0, 2, 0); +} else { + x_183 = x_181; +} +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_180); +return x_183; +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_1 = 0; +x_2 = 1; +x_3 = 1; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_5, 0, x_1); +lean_ctor_set_uint8(x_5, 1, x_1); +lean_ctor_set_uint8(x_5, 2, x_1); +lean_ctor_set_uint8(x_5, 3, x_1); +lean_ctor_set_uint8(x_5, 4, x_1); +lean_ctor_set_uint8(x_5, 5, x_2); +lean_ctor_set_uint8(x_5, 6, x_2); +lean_ctor_set_uint8(x_5, 7, x_1); +lean_ctor_set_uint8(x_5, 8, x_2); +lean_ctor_set_uint8(x_5, 9, x_3); +lean_ctor_set_uint8(x_5, 10, x_1); +lean_ctor_set_uint8(x_5, 11, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_4); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5; +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__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 = lean_box(0); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6; +x_4 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1; +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_1); +lean_ctor_set(x_6, 4, x_5); +lean_ctor_set(x_6, 5, x_1); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7; +x_2 = lean_unsigned_to_nat(0u); +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_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9; +x_4 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1; +x_5 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_1); +lean_ctor_set(x_5, 2, x_1); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set(x_5, 4, x_3); +lean_ctor_set(x_5, 5, x_4); +lean_ctor_set(x_5, 6, x_2); +lean_ctor_set(x_5, 7, x_3); +lean_ctor_set(x_5, 8, x_3); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10; +x_3 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17; +x_4 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5; +x_5 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_5, 0, x_2); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_1); +lean_ctor_set(x_5, 3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12() { +_start: +{ +uint8_t x_1; uint8_t x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_1 = 0; +x_2 = 1; +x_3 = 2; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_5, 0, x_1); +lean_ctor_set_uint8(x_5, 1, x_1); +lean_ctor_set_uint8(x_5, 2, x_1); +lean_ctor_set_uint8(x_5, 3, x_1); +lean_ctor_set_uint8(x_5, 4, x_1); +lean_ctor_set_uint8(x_5, 5, x_2); +lean_ctor_set_uint8(x_5, 6, x_2); +lean_ctor_set_uint8(x_5, 7, x_1); +lean_ctor_set_uint8(x_5, 8, x_2); +lean_ctor_set_uint8(x_5, 9, x_3); +lean_ctor_set_uint8(x_5, 10, x_1); +lean_ctor_set_uint8(x_5, 11, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___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 = lean_box(0); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6; +x_4 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1; +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_1); +lean_ctor_set(x_6, 4, x_5); +lean_ctor_set(x_6, 5, x_1); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("@[symm] attribute only applies to lemmas proving x ∼ y → y ∼ x, got ", 74); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Symm_symmExt; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_25; lean_object* x_26; +x_7 = lean_box(0); +x_8 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11; +x_9 = lean_st_mk_ref(x_8, x_6); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_25 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__7; +lean_inc(x_1); +x_26 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_1, x_25, x_10, x_4, x_5, x_11); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = l_Lean_ConstantInfo_type(x_27); +lean_dec(x_27); +x_30 = 1; +x_31 = 0; +x_32 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__13; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +lean_inc(x_29); +x_33 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(x_29, x_30, x_7, x_31, x_32, x_10, x_4, x_5, x_28); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +lean_dec(x_33); +x_37 = lean_ctor_get(x_34, 0); +lean_inc(x_37); +lean_dec(x_34); +x_38 = !lean_is_exclusive(x_35); +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; lean_object* x_45; lean_object* x_46; +x_39 = lean_ctor_get(x_35, 1); +x_40 = lean_ctor_get(x_35, 0); +lean_dec(x_40); +x_41 = l_Lean_MessageData_ofExpr(x_29); +x_42 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15; +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +x_44 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_45 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +x_46 = l_Array_back_x3f___rarg(x_37); +lean_dec(x_37); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; +lean_free_object(x_35); +lean_dec(x_39); +lean_dec(x_1); +x_47 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_45, x_25, x_10, x_4, x_5, x_36); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_47; +goto block_24; +} +else +{ +lean_object* x_48; +lean_dec(x_46); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_48 = l_Lean_Meta_reduce(x_39, x_30, x_30, x_30, x_25, x_10, x_4, x_5, x_36); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +if (lean_obj_tag(x_49) == 5) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec(x_49); +if (lean_obj_tag(x_50) == 5) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; +lean_dec(x_45); +x_51 = lean_ctor_get(x_48, 1); +lean_inc(x_51); +lean_dec(x_48); +x_52 = lean_ctor_get(x_50, 0); +lean_inc(x_52); +lean_dec(x_50); +x_53 = l_Lean_Meta_Symm_symmExt_config; +x_54 = 0; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_55 = l_Lean_Meta_DiscrTree_mkPath(x_52, x_53, x_54, x_32, x_10, x_4, x_5, x_51); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +lean_dec(x_55); +lean_ctor_set(x_35, 1, x_56); +lean_ctor_set(x_35, 0, x_1); +x_58 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18; +x_59 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1(x_58, x_35, x_3, x_25, x_10, x_4, x_5, x_57); +lean_dec(x_5); +x_12 = x_59; +goto block_24; +} +else +{ +uint8_t x_60; +lean_free_object(x_35); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_55); +if (x_60 == 0) +{ +x_12 = x_55; +goto block_24; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_55, 0); +x_62 = lean_ctor_get(x_55, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_55); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_12 = x_63; +goto block_24; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; +lean_dec(x_50); +lean_free_object(x_35); +lean_dec(x_1); +x_64 = lean_ctor_get(x_48, 1); +lean_inc(x_64); +lean_dec(x_48); +x_65 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_45, x_25, x_10, x_4, x_5, x_64); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_65; +goto block_24; +} +} +else +{ +lean_object* x_66; lean_object* x_67; +lean_dec(x_49); +lean_free_object(x_35); +lean_dec(x_1); +x_66 = lean_ctor_get(x_48, 1); +lean_inc(x_66); +lean_dec(x_48); +x_67 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_45, x_25, x_10, x_4, x_5, x_66); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_67; +goto block_24; +} +} +else +{ +uint8_t x_68; +lean_dec(x_45); +lean_free_object(x_35); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_68 = !lean_is_exclusive(x_48); +if (x_68 == 0) +{ +x_12 = x_48; +goto block_24; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_48, 0); +x_70 = lean_ctor_get(x_48, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_48); +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +x_12 = x_71; +goto block_24; +} +} +} +} +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; +x_72 = lean_ctor_get(x_35, 1); +lean_inc(x_72); +lean_dec(x_35); +x_73 = l_Lean_MessageData_ofExpr(x_29); +x_74 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15; +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_77 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +x_78 = l_Array_back_x3f___rarg(x_37); +lean_dec(x_37); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; +lean_dec(x_72); +lean_dec(x_1); +x_79 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_77, x_25, x_10, x_4, x_5, x_36); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_79; +goto block_24; +} +else +{ +lean_object* x_80; +lean_dec(x_78); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_80 = l_Lean_Meta_reduce(x_72, x_30, x_30, x_30, x_25, x_10, x_4, x_5, x_36); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +if (lean_obj_tag(x_81) == 5) +{ +lean_object* x_82; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +lean_dec(x_81); +if (lean_obj_tag(x_82) == 5) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; +lean_dec(x_77); +x_83 = lean_ctor_get(x_80, 1); +lean_inc(x_83); +lean_dec(x_80); +x_84 = lean_ctor_get(x_82, 0); +lean_inc(x_84); +lean_dec(x_82); +x_85 = l_Lean_Meta_Symm_symmExt_config; +x_86 = 0; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_10); +x_87 = l_Lean_Meta_DiscrTree_mkPath(x_84, x_85, x_86, x_32, x_10, x_4, x_5, x_83); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_1); +lean_ctor_set(x_90, 1, x_88); +x_91 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18; +x_92 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1(x_91, x_90, x_3, x_25, x_10, x_4, x_5, x_89); +lean_dec(x_5); +x_12 = x_92; +goto block_24; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_93 = lean_ctor_get(x_87, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_87, 1); +lean_inc(x_94); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_95 = x_87; +} else { + lean_dec_ref(x_87); + x_95 = lean_box(0); +} +if (lean_is_scalar(x_95)) { + x_96 = lean_alloc_ctor(1, 2, 0); +} else { + x_96 = x_95; +} +lean_ctor_set(x_96, 0, x_93); +lean_ctor_set(x_96, 1, x_94); +x_12 = x_96; +goto block_24; +} +} +else +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_82); +lean_dec(x_1); +x_97 = lean_ctor_get(x_80, 1); +lean_inc(x_97); +lean_dec(x_80); +x_98 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_77, x_25, x_10, x_4, x_5, x_97); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_98; +goto block_24; +} +} +else +{ +lean_object* x_99; lean_object* x_100; +lean_dec(x_81); +lean_dec(x_1); +x_99 = lean_ctor_get(x_80, 1); +lean_inc(x_99); +lean_dec(x_80); +x_100 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_77, x_25, x_10, x_4, x_5, x_99); +lean_dec(x_5); +lean_dec(x_4); +x_12 = x_100; +goto block_24; +} +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec(x_77); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_101 = lean_ctor_get(x_80, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_80, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_103 = x_80; +} else { + lean_dec_ref(x_80); + x_103 = lean_box(0); +} +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(1, 2, 0); +} else { + x_104 = x_103; +} +lean_ctor_set(x_104, 0, x_101); +lean_ctor_set(x_104, 1, x_102); +x_12 = x_104; +goto block_24; +} +} +} +} +else +{ +uint8_t x_105; +lean_dec(x_29); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_105 = !lean_is_exclusive(x_33); +if (x_105 == 0) +{ +x_12 = x_33; +goto block_24; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_106 = lean_ctor_get(x_33, 0); +x_107 = lean_ctor_get(x_33, 1); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_33); +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_107); +x_12 = x_108; +goto block_24; +} +} +} +else +{ +uint8_t x_109; +lean_dec(x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_109 = !lean_is_exclusive(x_26); +if (x_109 == 0) +{ +return x_26; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_26, 0); +x_111 = lean_ctor_get(x_26, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_26); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; +} +} +block_24: +{ +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_st_ref_get(x_10, x_14); +lean_dec(x_10); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +lean_ctor_set(x_15, 0, x_13); +return x_15; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_13); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +else +{ +uint8_t x_20; +lean_dec(x_10); +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 0) +{ +return x_12; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_12, 0); +x_22 = lean_ctor_get(x_12, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_12); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; +x_5 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2; +x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); +return x_6; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initFn", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_@", 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Tactic", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_hyg", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14; +x_2 = lean_unsigned_to_nat(102u); +x_3 = l_Lean_Name_num___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symm", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symmetric relation", 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18; +x_4 = 0; +x_5 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___boxed), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___boxed), 4, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20; +x_3 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21; +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; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22; +x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_3); +lean_dec(x_3); +x_10 = l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1(x_1, x_2, x_9, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +lean_dec(x_3); +x_8 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1(x_1, x_2, x_7, x_4, x_5, x_6); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Expr_getSymmLems___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("symmetry lemmas only apply to binary relations, not", 51); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_getSymmLems___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_getSymmLems___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_getSymmLems(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +if (lean_obj_tag(x_1) == 5) +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 5) +{ +lean_object* x_8; lean_object* x_9; 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_dec(x_1); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +lean_dec(x_7); +x_9 = lean_st_ref_get(x_5, x_6); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1; +x_14 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18; +x_15 = l_Lean_ScopedEnvExtension_getState___rarg(x_13, x_14, x_12); +lean_dec(x_12); +x_16 = l_Lean_Meta_Symm_symmExt_config; +x_17 = l_Lean_Meta_DiscrTree_getMatch___rarg(x_15, x_8, x_16, x_2, x_3, x_4, x_5, x_11); +return x_17; +} +else +{ +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_dec(x_7); +x_18 = l_Lean_indentExpr(x_1); +x_19 = l_Lean_Expr_getSymmLems___closed__2; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +x_21 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1(x_22, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_24 = l_Lean_indentExpr(x_1); +x_25 = l_Lean_Expr_getSymmLems___closed__2; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +x_27 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1(x_28, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_29; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at_Lean_Expr_getSymmLems___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +static lean_object* _init_l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("failed", 6); +return x_1; +} +} +static lean_object* _init_l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_1); +x_9 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_10 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_9, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_10; +} +else +{ +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_29; lean_object* x_30; lean_object* x_31; +x_11 = lean_ctor_get(x_3, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_3, 1); +lean_inc(x_12); +lean_dec(x_3); +x_13 = l_Lean_Meta_saveState___rarg(x_5, x_6, x_7, x_8); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_16 = x_13; +} else { + lean_dec_ref(x_13); + x_16 = lean_box(0); +} +x_29 = l_Lean_Meta_SavedState_restore(x_2, x_4, x_5, x_6, x_7, x_15); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_31 = l_Lean_Meta_mkConstWithFreshMVarLevels(x_11, x_4, x_5, x_6, x_7, x_30); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_32); +x_34 = lean_infer_type(x_32, x_4, x_5, x_6, x_7, x_33); +if (lean_obj_tag(x_34) == 0) +{ +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; uint8_t x_44; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_box(0); +x_38 = lean_ctor_get(x_4, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_4, 1); +lean_inc(x_39); +x_40 = lean_ctor_get(x_4, 2); +lean_inc(x_40); +x_41 = lean_ctor_get(x_4, 3); +lean_inc(x_41); +x_42 = lean_ctor_get(x_4, 4); +lean_inc(x_42); +x_43 = lean_ctor_get(x_4, 5); +lean_inc(x_43); +x_44 = !lean_is_exclusive(x_38); +if (x_44 == 0) +{ +uint8_t x_45; lean_object* x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; +x_45 = 2; +lean_ctor_set_uint8(x_38, 9, x_45); +x_46 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_46, 0, x_38); +lean_ctor_set(x_46, 1, x_39); +lean_ctor_set(x_46, 2, x_40); +lean_ctor_set(x_46, 3, x_41); +lean_ctor_set(x_46, 4, x_42); +lean_ctor_set(x_46, 5, x_43); +x_47 = 1; +x_48 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_49 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(x_35, x_47, x_37, x_48, x_46, x_5, x_6, x_7, x_36); +if (lean_obj_tag(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; lean_object* x_57; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +x_52 = lean_ctor_get(x_49, 1); +lean_inc(x_52); +lean_dec(x_49); +x_53 = lean_ctor_get(x_50, 0); +lean_inc(x_53); +lean_dec(x_50); +x_54 = lean_ctor_get(x_51, 1); +lean_inc(x_54); +lean_dec(x_51); +x_55 = l_Lean_instInhabitedExpr; +x_56 = l_Array_back___rarg(x_55, x_53); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_57 = l_Lean_Meta_isExprDefEq(x_56, x_1, x_4, x_5, x_6, x_7, x_52); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; uint8_t x_59; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_unbox(x_58); +lean_dec(x_58); +if (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_54); +lean_dec(x_53); +lean_dec(x_32); +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +lean_dec(x_57); +x_61 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_62 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_61, x_4, x_5, x_6, x_7, x_60); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +lean_dec(x_62); +x_17 = x_63; +x_18 = x_64; +goto block_28; +} +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; +x_65 = lean_ctor_get(x_57, 1); +lean_inc(x_65); +lean_dec(x_57); +x_66 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_54, x_4, x_5, x_6, x_7, x_65); +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec(x_66); +x_69 = l_Lean_mkAppN(x_32, x_53); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_70 = l_Lean_Meta_mkExpectedTypeHint(x_69, x_67, x_4, x_5, x_6, x_7, x_68); +if (lean_obj_tag(x_70) == 0) +{ +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); +x_17 = x_71; +x_18 = x_72; +goto block_28; +} +} +} +else +{ +lean_object* x_73; lean_object* x_74; +lean_dec(x_54); +lean_dec(x_53); +lean_dec(x_32); +x_73 = lean_ctor_get(x_57, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_57, 1); +lean_inc(x_74); +lean_dec(x_57); +x_17 = x_73; +x_18 = x_74; +goto block_28; +} +} +else +{ +lean_object* x_75; lean_object* x_76; +lean_dec(x_32); +x_75 = lean_ctor_get(x_49, 0); +lean_inc(x_75); +x_76 = lean_ctor_get(x_49, 1); +lean_inc(x_76); +lean_dec(x_49); +x_17 = x_75; +x_18 = x_76; +goto block_28; +} +} +else +{ +uint8_t x_77; uint8_t x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; uint8_t x_82; uint8_t x_83; uint8_t x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; uint8_t x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; uint8_t x_92; lean_object* x_93; +x_77 = lean_ctor_get_uint8(x_38, 0); +x_78 = lean_ctor_get_uint8(x_38, 1); +x_79 = lean_ctor_get_uint8(x_38, 2); +x_80 = lean_ctor_get_uint8(x_38, 3); +x_81 = lean_ctor_get_uint8(x_38, 4); +x_82 = lean_ctor_get_uint8(x_38, 5); +x_83 = lean_ctor_get_uint8(x_38, 6); +x_84 = lean_ctor_get_uint8(x_38, 7); +x_85 = lean_ctor_get_uint8(x_38, 8); +x_86 = lean_ctor_get_uint8(x_38, 10); +x_87 = lean_ctor_get_uint8(x_38, 11); +lean_dec(x_38); +x_88 = 2; +x_89 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_89, 0, x_77); +lean_ctor_set_uint8(x_89, 1, x_78); +lean_ctor_set_uint8(x_89, 2, x_79); +lean_ctor_set_uint8(x_89, 3, x_80); +lean_ctor_set_uint8(x_89, 4, x_81); +lean_ctor_set_uint8(x_89, 5, x_82); +lean_ctor_set_uint8(x_89, 6, x_83); +lean_ctor_set_uint8(x_89, 7, x_84); +lean_ctor_set_uint8(x_89, 8, x_85); +lean_ctor_set_uint8(x_89, 9, x_88); +lean_ctor_set_uint8(x_89, 10, x_86); +lean_ctor_set_uint8(x_89, 11, x_87); +x_90 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_39); +lean_ctor_set(x_90, 2, x_40); +lean_ctor_set(x_90, 3, x_41); +lean_ctor_set(x_90, 4, x_42); +lean_ctor_set(x_90, 5, x_43); +x_91 = 1; +x_92 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_93 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(x_35, x_91, x_37, x_92, x_90, x_5, x_6, x_7, x_36); +if (lean_obj_tag(x_93) == 0) +{ +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; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_94, 1); +lean_inc(x_95); +x_96 = lean_ctor_get(x_93, 1); +lean_inc(x_96); +lean_dec(x_93); +x_97 = lean_ctor_get(x_94, 0); +lean_inc(x_97); +lean_dec(x_94); +x_98 = lean_ctor_get(x_95, 1); +lean_inc(x_98); +lean_dec(x_95); +x_99 = l_Lean_instInhabitedExpr; +x_100 = l_Array_back___rarg(x_99, x_97); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_1); +x_101 = l_Lean_Meta_isExprDefEq(x_100, x_1, x_4, x_5, x_6, x_7, x_96); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; uint8_t x_103; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_unbox(x_102); +lean_dec(x_102); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_32); +x_104 = lean_ctor_get(x_101, 1); +lean_inc(x_104); +lean_dec(x_101); +x_105 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_106 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_105, x_4, x_5, x_6, x_7, x_104); +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +x_108 = lean_ctor_get(x_106, 1); +lean_inc(x_108); +lean_dec(x_106); +x_17 = x_107; +x_18 = x_108; +goto block_28; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_109 = lean_ctor_get(x_101, 1); +lean_inc(x_109); +lean_dec(x_101); +x_110 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_98, x_4, x_5, x_6, x_7, x_109); +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec(x_110); +x_113 = l_Lean_mkAppN(x_32, x_97); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_114 = l_Lean_Meta_mkExpectedTypeHint(x_113, x_111, x_4, x_5, x_6, x_7, x_112); +if (lean_obj_tag(x_114) == 0) +{ +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_114; +} +else +{ +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_114, 1); +lean_inc(x_116); +lean_dec(x_114); +x_17 = x_115; +x_18 = x_116; +goto block_28; +} +} +} +else +{ +lean_object* x_117; lean_object* x_118; +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_32); +x_117 = lean_ctor_get(x_101, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_101, 1); +lean_inc(x_118); +lean_dec(x_101); +x_17 = x_117; +x_18 = x_118; +goto block_28; +} +} +else +{ +lean_object* x_119; lean_object* x_120; +lean_dec(x_32); +x_119 = lean_ctor_get(x_93, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_93, 1); +lean_inc(x_120); +lean_dec(x_93); +x_17 = x_119; +x_18 = x_120; +goto block_28; +} +} +} +else +{ +lean_object* x_121; lean_object* x_122; +lean_dec(x_32); +x_121 = lean_ctor_get(x_34, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_34, 1); +lean_inc(x_122); +lean_dec(x_34); +x_17 = x_121; +x_18 = x_122; +goto block_28; +} +} +else +{ +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_31, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_31, 1); +lean_inc(x_124); +lean_dec(x_31); +x_17 = x_123; +x_18 = x_124; +goto block_28; +} +block_28: +{ +uint8_t x_19; +x_19 = l_Lean_Exception_isRuntime(x_17); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_17); +lean_dec(x_16); +x_20 = l_Lean_Meta_SavedState_restore(x_14, x_4, x_5, x_6, x_7, x_18); +lean_dec(x_14); +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec(x_20); +x_3 = x_12; +x_8 = x_21; +goto _start; +} +else +{ +uint8_t x_23; +x_23 = lean_ctor_get_uint8(x_6, sizeof(void*)*11); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_14); +lean_dec(x_12); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +if (lean_is_scalar(x_16)) { + x_24 = lean_alloc_ctor(1, 2, 0); +} else { + x_24 = x_16; + lean_ctor_set_tag(x_24, 1); +} +lean_ctor_set(x_24, 0, x_17); +lean_ctor_set(x_24, 1, x_18); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_17); +lean_dec(x_16); +x_25 = l_Lean_Meta_SavedState_restore(x_14, x_4, x_5, x_6, x_7, x_18); +lean_dec(x_14); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +x_3 = x_12; +x_8 = x_26; +goto _start; +} +} +} +} +} +} +static lean_object* _init_l_Lean_Expr_applySymm___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("no applicable symmetry lemma found for ", 39); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_applySymm___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Expr_applySymm___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_applySymm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_7 = lean_infer_type(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_8, x_2, x_3, x_4, x_5, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_11); +x_13 = l_Lean_Expr_getSymmLems(x_11, x_2, x_3, x_4, x_5, 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_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +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_16 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_15); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_array_to_list(lean_box(0), x_14); +x_20 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_18); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_23 = l_List_firstM___at_Lean_Expr_applySymm___spec__1(x_1, x_17, x_19, x_2, x_3, x_4, x_5, x_22); +lean_dec(x_17); +if (lean_obj_tag(x_23) == 0) +{ +lean_dec(x_21); +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_23; +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_ctor_get(x_23, 1); +x_27 = l_Lean_Exception_isRuntime(x_25); +if (x_27 == 0) +{ +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_free_object(x_23); +lean_dec(x_25); +x_28 = l_Lean_Meta_SavedState_restore(x_21, x_2, x_3, x_4, x_5, x_26); +lean_dec(x_21); +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +lean_dec(x_28); +x_30 = l_Lean_indentExpr(x_11); +x_31 = l_Lean_Expr_applySymm___closed__2; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +x_33 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_34, x_2, x_3, x_4, x_5, x_29); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_35; +} +else +{ +uint8_t x_36; +x_36 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_36 == 0) +{ +lean_dec(x_21); +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_23; +} +else +{ +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_free_object(x_23); +lean_dec(x_25); +x_37 = l_Lean_Meta_SavedState_restore(x_21, x_2, x_3, x_4, x_5, x_26); +lean_dec(x_21); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_Lean_indentExpr(x_11); +x_40 = l_Lean_Expr_applySymm___closed__2; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_43, x_2, x_3, x_4, x_5, x_38); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_44; +} +} +} +else +{ +lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_45 = lean_ctor_get(x_23, 0); +x_46 = lean_ctor_get(x_23, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_23); +x_47 = l_Lean_Exception_isRuntime(x_45); +if (x_47 == 0) +{ +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_dec(x_45); +x_48 = l_Lean_Meta_SavedState_restore(x_21, x_2, x_3, x_4, x_5, x_46); +lean_dec(x_21); +x_49 = lean_ctor_get(x_48, 1); +lean_inc(x_49); +lean_dec(x_48); +x_50 = l_Lean_indentExpr(x_11); +x_51 = l_Lean_Expr_applySymm___closed__2; +x_52 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_54 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_53); +x_55 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_54, x_2, x_3, x_4, x_5, x_49); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_55; +} +else +{ +uint8_t x_56; +x_56 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_56 == 0) +{ +lean_object* x_57; +lean_dec(x_21); +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_45); +lean_ctor_set(x_57, 1, x_46); +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_dec(x_45); +x_58 = l_Lean_Meta_SavedState_restore(x_21, x_2, x_3, x_4, x_5, x_46); +lean_dec(x_21); +x_59 = lean_ctor_get(x_58, 1); +lean_inc(x_59); +lean_dec(x_58); +x_60 = l_Lean_indentExpr(x_11); +x_61 = l_Lean_Expr_applySymm___closed__2; +x_62 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_60); +x_63 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_64 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +x_65 = l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(x_64, x_2, x_3, x_4, x_5, x_59); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_65; +} +} +} +} +} +else +{ +uint8_t x_66; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_66 = !lean_is_exclusive(x_13); +if (x_66 == 0) +{ +return x_13; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_13, 0); +x_68 = lean_ctor_get(x_13, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_13); +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_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_70 = !lean_is_exclusive(x_7); +if (x_70 == 0) +{ +return x_7; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_7, 0); +x_72 = lean_ctor_get(x_7, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_7); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_Expr_applySymm___spec__1___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) { +_start: +{ +lean_object* x_9; +x_9 = l_List_firstM___at_Lean_Expr_applySymm___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_firstM___at_Lean_MVarId_applySymm___spec__1(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) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_1); +x_8 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_9 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_8, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_9; +} +else +{ +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_28; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +lean_dec(x_2); +x_12 = l_Lean_Meta_saveState___rarg(x_4, x_5, x_6, x_7); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_15 = x_12; +} else { + lean_dec_ref(x_12); + x_15 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_28 = l_Lean_Meta_mkConstWithFreshMVarLevels(x_10, x_3, x_4, x_5, x_6, x_14); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_29); +x_31 = lean_infer_type(x_29, x_3, x_4, x_5, x_6, x_30); +if (lean_obj_tag(x_31) == 0) +{ +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; uint8_t x_41; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = lean_box(0); +x_35 = lean_ctor_get(x_3, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_3, 1); +lean_inc(x_36); +x_37 = lean_ctor_get(x_3, 2); +lean_inc(x_37); +x_38 = lean_ctor_get(x_3, 3); +lean_inc(x_38); +x_39 = lean_ctor_get(x_3, 4); +lean_inc(x_39); +x_40 = lean_ctor_get(x_3, 5); +lean_inc(x_40); +x_41 = !lean_is_exclusive(x_35); +if (x_41 == 0) +{ +uint8_t x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; lean_object* x_46; +x_42 = 2; +lean_ctor_set_uint8(x_35, 9, x_42); +x_43 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_43, 0, x_35); +lean_ctor_set(x_43, 1, x_36); +lean_ctor_set(x_43, 2, x_37); +lean_ctor_set(x_43, 3, x_38); +lean_ctor_set(x_43, 4, x_39); +lean_ctor_set(x_43, 5, x_40); +x_44 = 1; +x_45 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_46 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(x_32, x_44, x_34, x_45, x_43, x_4, x_5, x_6, x_33); +if (lean_obj_tag(x_46) == 0) +{ +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_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +x_49 = lean_ctor_get(x_46, 1); +lean_inc(x_49); +lean_dec(x_46); +x_50 = lean_ctor_get(x_47, 0); +lean_inc(x_50); +lean_dec(x_47); +x_51 = lean_ctor_get(x_48, 1); +lean_inc(x_51); +lean_dec(x_48); +lean_inc(x_1); +x_52 = l_Lean_MVarId_getType(x_1, x_3, x_4, x_5, x_6, x_49); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +lean_dec(x_52); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_55 = l_Lean_Meta_isExprDefEq(x_53, x_51, x_3, x_4, x_5, x_6, x_54); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; uint8_t x_57; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_unbox(x_56); +lean_dec(x_56); +if (x_57 == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +lean_dec(x_50); +lean_dec(x_29); +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +lean_dec(x_55); +x_59 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_60 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_59, x_3, x_4, x_5, x_6, x_58); +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +lean_dec(x_60); +x_16 = x_61; +x_17 = x_62; +goto block_27; +} +else +{ +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; +x_63 = lean_ctor_get(x_55, 1); +lean_inc(x_63); +lean_dec(x_55); +lean_inc(x_50); +x_64 = l_Lean_mkAppN(x_29, x_50); +lean_inc(x_1); +x_65 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_64, x_3, x_4, x_5, x_6, x_63); +x_66 = lean_ctor_get(x_65, 1); +lean_inc(x_66); +lean_dec(x_65); +x_67 = l_Lean_instInhabitedExpr; +x_68 = l_Array_back___rarg(x_67, x_50); +lean_dec(x_50); +x_69 = l_Lean_Expr_mvarId_x21(x_68); +lean_inc(x_1); +x_70 = l_Lean_MVarId_getTag(x_1, x_3, x_4, x_5, x_6, x_66); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; +lean_dec(x_15); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_1); +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); +lean_inc(x_69); +x_73 = l_Lean_MVarId_setTag(x_69, x_71, x_3, x_4, x_5, x_6, x_72); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_74 = !lean_is_exclusive(x_73); +if (x_74 == 0) +{ +lean_object* x_75; +x_75 = lean_ctor_get(x_73, 0); +lean_dec(x_75); +lean_ctor_set(x_73, 0, x_69); +return x_73; +} +else +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_73, 1); +lean_inc(x_76); +lean_dec(x_73); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_69); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +else +{ +lean_object* x_78; lean_object* x_79; +lean_dec(x_69); +x_78 = lean_ctor_get(x_70, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_70, 1); +lean_inc(x_79); +lean_dec(x_70); +x_16 = x_78; +x_17 = x_79; +goto block_27; +} +} +} +else +{ +lean_object* x_80; lean_object* x_81; +lean_dec(x_50); +lean_dec(x_29); +x_80 = lean_ctor_get(x_55, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_55, 1); +lean_inc(x_81); +lean_dec(x_55); +x_16 = x_80; +x_17 = x_81; +goto block_27; +} +} +else +{ +lean_object* x_82; lean_object* x_83; +lean_dec(x_51); +lean_dec(x_50); +lean_dec(x_29); +x_82 = lean_ctor_get(x_52, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_52, 1); +lean_inc(x_83); +lean_dec(x_52); +x_16 = x_82; +x_17 = x_83; +goto block_27; +} +} +else +{ +lean_object* x_84; lean_object* x_85; +lean_dec(x_29); +x_84 = lean_ctor_get(x_46, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_46, 1); +lean_inc(x_85); +lean_dec(x_46); +x_16 = x_84; +x_17 = x_85; +goto block_27; +} +} +else +{ +uint8_t x_86; uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; uint8_t x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; uint8_t x_101; lean_object* x_102; +x_86 = lean_ctor_get_uint8(x_35, 0); +x_87 = lean_ctor_get_uint8(x_35, 1); +x_88 = lean_ctor_get_uint8(x_35, 2); +x_89 = lean_ctor_get_uint8(x_35, 3); +x_90 = lean_ctor_get_uint8(x_35, 4); +x_91 = lean_ctor_get_uint8(x_35, 5); +x_92 = lean_ctor_get_uint8(x_35, 6); +x_93 = lean_ctor_get_uint8(x_35, 7); +x_94 = lean_ctor_get_uint8(x_35, 8); +x_95 = lean_ctor_get_uint8(x_35, 10); +x_96 = lean_ctor_get_uint8(x_35, 11); +lean_dec(x_35); +x_97 = 2; +x_98 = lean_alloc_ctor(0, 0, 12); +lean_ctor_set_uint8(x_98, 0, x_86); +lean_ctor_set_uint8(x_98, 1, x_87); +lean_ctor_set_uint8(x_98, 2, x_88); +lean_ctor_set_uint8(x_98, 3, x_89); +lean_ctor_set_uint8(x_98, 4, x_90); +lean_ctor_set_uint8(x_98, 5, x_91); +lean_ctor_set_uint8(x_98, 6, x_92); +lean_ctor_set_uint8(x_98, 7, x_93); +lean_ctor_set_uint8(x_98, 8, x_94); +lean_ctor_set_uint8(x_98, 9, x_97); +lean_ctor_set_uint8(x_98, 10, x_95); +lean_ctor_set_uint8(x_98, 11, x_96); +x_99 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_36); +lean_ctor_set(x_99, 2, x_37); +lean_ctor_set(x_99, 3, x_38); +lean_ctor_set(x_99, 4, x_39); +lean_ctor_set(x_99, 5, x_40); +x_100 = 1; +x_101 = 0; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_102 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(x_32, x_100, x_34, x_101, x_99, x_4, x_5, x_6, x_33); +if (lean_obj_tag(x_102) == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +x_104 = lean_ctor_get(x_103, 1); +lean_inc(x_104); +x_105 = lean_ctor_get(x_102, 1); +lean_inc(x_105); +lean_dec(x_102); +x_106 = lean_ctor_get(x_103, 0); +lean_inc(x_106); +lean_dec(x_103); +x_107 = lean_ctor_get(x_104, 1); +lean_inc(x_107); +lean_dec(x_104); +lean_inc(x_1); +x_108 = l_Lean_MVarId_getType(x_1, x_3, x_4, x_5, x_6, x_105); +if (lean_obj_tag(x_108) == 0) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +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); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_111 = l_Lean_Meta_isExprDefEq(x_109, x_107, x_3, x_4, x_5, x_6, x_110); +if (lean_obj_tag(x_111) == 0) +{ +lean_object* x_112; uint8_t x_113; +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_unbox(x_112); +lean_dec(x_112); +if (x_113 == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec(x_106); +lean_dec(x_29); +x_114 = lean_ctor_get(x_111, 1); +lean_inc(x_114); +lean_dec(x_111); +x_115 = l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2; +x_116 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_115, x_3, x_4, x_5, x_6, x_114); +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_16 = x_117; +x_17 = x_118; +goto block_27; +} +else +{ +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; +x_119 = lean_ctor_get(x_111, 1); +lean_inc(x_119); +lean_dec(x_111); +lean_inc(x_106); +x_120 = l_Lean_mkAppN(x_29, x_106); +lean_inc(x_1); +x_121 = l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(x_1, x_120, x_3, x_4, x_5, x_6, x_119); +x_122 = lean_ctor_get(x_121, 1); +lean_inc(x_122); +lean_dec(x_121); +x_123 = l_Lean_instInhabitedExpr; +x_124 = l_Array_back___rarg(x_123, x_106); +lean_dec(x_106); +x_125 = l_Lean_Expr_mvarId_x21(x_124); +lean_inc(x_1); +x_126 = l_Lean_MVarId_getTag(x_1, x_3, x_4, x_5, x_6, x_122); +if (lean_obj_tag(x_126) == 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_dec(x_15); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_1); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); +lean_inc(x_125); +x_129 = l_Lean_MVarId_setTag(x_125, x_127, x_3, x_4, x_5, x_6, x_128); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_130 = lean_ctor_get(x_129, 1); +lean_inc(x_130); +if (lean_is_exclusive(x_129)) { + lean_ctor_release(x_129, 0); + lean_ctor_release(x_129, 1); + x_131 = x_129; +} else { + lean_dec_ref(x_129); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(0, 2, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_125); +lean_ctor_set(x_132, 1, x_130); +return x_132; +} +else +{ +lean_object* x_133; lean_object* x_134; +lean_dec(x_125); +x_133 = lean_ctor_get(x_126, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_126, 1); +lean_inc(x_134); +lean_dec(x_126); +x_16 = x_133; +x_17 = x_134; +goto block_27; +} +} +} +else +{ +lean_object* x_135; lean_object* x_136; +lean_dec(x_106); +lean_dec(x_29); +x_135 = lean_ctor_get(x_111, 0); +lean_inc(x_135); +x_136 = lean_ctor_get(x_111, 1); +lean_inc(x_136); +lean_dec(x_111); +x_16 = x_135; +x_17 = x_136; +goto block_27; +} +} +else +{ +lean_object* x_137; lean_object* x_138; +lean_dec(x_107); +lean_dec(x_106); +lean_dec(x_29); +x_137 = lean_ctor_get(x_108, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_108, 1); +lean_inc(x_138); +lean_dec(x_108); +x_16 = x_137; +x_17 = x_138; +goto block_27; +} +} +else +{ +lean_object* x_139; lean_object* x_140; +lean_dec(x_29); +x_139 = lean_ctor_get(x_102, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_102, 1); +lean_inc(x_140); +lean_dec(x_102); +x_16 = x_139; +x_17 = x_140; +goto block_27; +} +} +} +else +{ +lean_object* x_141; lean_object* x_142; +lean_dec(x_29); +x_141 = lean_ctor_get(x_31, 0); +lean_inc(x_141); +x_142 = lean_ctor_get(x_31, 1); +lean_inc(x_142); +lean_dec(x_31); +x_16 = x_141; +x_17 = x_142; +goto block_27; +} +} +else +{ +lean_object* x_143; lean_object* x_144; +x_143 = lean_ctor_get(x_28, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_28, 1); +lean_inc(x_144); +lean_dec(x_28); +x_16 = x_143; +x_17 = x_144; +goto block_27; +} +block_27: +{ +uint8_t x_18; +x_18 = l_Lean_Exception_isRuntime(x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_16); +lean_dec(x_15); +x_19 = l_Lean_Meta_SavedState_restore(x_13, x_3, x_4, x_5, x_6, x_17); +lean_dec(x_13); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec(x_19); +x_2 = x_11; +x_7 = x_20; +goto _start; +} +else +{ +uint8_t x_22; +x_22 = lean_ctor_get_uint8(x_5, sizeof(void*)*11); +if (x_22 == 0) +{ +lean_object* x_23; +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +if (lean_is_scalar(x_15)) { + x_23 = lean_alloc_ctor(1, 2, 0); +} else { + x_23 = x_15; + lean_ctor_set_tag(x_23, 1); +} +lean_ctor_set(x_23, 0, x_16); +lean_ctor_set(x_23, 1, x_17); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; +lean_dec(x_16); +lean_dec(x_15); +x_24 = l_Lean_Meta_SavedState_restore(x_13, x_3, x_4, x_5, x_6, x_17); +lean_dec(x_13); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec(x_24); +x_2 = x_11; +x_7 = x_25; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_applySymm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +lean_inc(x_1); +x_7 = l_Lean_MVarId_getType(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(x_8, x_2, x_3, x_4, x_5, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_Lean_Expr_cleanupAnnotations(x_11); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_13); +x_14 = l_Lean_Expr_getSymmLems(x_13, x_2, x_3, x_4, x_5, x_12); +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_19; lean_object* 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_17 = lean_array_to_list(lean_box(0), x_15); +x_18 = l_Lean_Meta_saveState___rarg(x_3, x_4, x_5, x_16); +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); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_21 = l_List_firstM___at_Lean_MVarId_applySymm___spec__1(x_1, x_17, x_2, x_3, x_4, x_5, x_20); +if (lean_obj_tag(x_21) == 0) +{ +lean_dec(x_19); +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_21; +} +else +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +x_25 = l_Lean_Exception_isRuntime(x_23); +if (x_25 == 0) +{ +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_free_object(x_21); +lean_dec(x_23); +x_26 = l_Lean_Meta_SavedState_restore(x_19, x_2, x_3, x_4, x_5, x_24); +lean_dec(x_19); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +lean_dec(x_26); +x_28 = l_Lean_indentExpr(x_13); +x_29 = l_Lean_Expr_applySymm___closed__2; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +x_31 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_32, x_2, x_3, x_4, x_5, x_27); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_33; +} +else +{ +uint8_t x_34; +x_34 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_34 == 0) +{ +lean_dec(x_19); +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_21; +} +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; lean_object* x_42; +lean_free_object(x_21); +lean_dec(x_23); +x_35 = l_Lean_Meta_SavedState_restore(x_19, x_2, x_3, x_4, x_5, x_24); +lean_dec(x_19); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_Lean_indentExpr(x_13); +x_38 = l_Lean_Expr_applySymm___closed__2; +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +x_40 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_41, x_2, x_3, x_4, x_5, x_36); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_42; +} +} +} +else +{ +lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_43 = lean_ctor_get(x_21, 0); +x_44 = lean_ctor_get(x_21, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_21); +x_45 = l_Lean_Exception_isRuntime(x_43); +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; lean_object* x_52; lean_object* x_53; +lean_dec(x_43); +x_46 = l_Lean_Meta_SavedState_restore(x_19, x_2, x_3, x_4, x_5, x_44); +lean_dec(x_19); +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = l_Lean_indentExpr(x_13); +x_49 = l_Lean_Expr_applySymm___closed__2; +x_50 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_52 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +x_53 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_52, x_2, x_3, x_4, x_5, x_47); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_53; +} +else +{ +uint8_t x_54; +x_54 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +if (x_54 == 0) +{ +lean_object* x_55; +lean_dec(x_19); +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_43); +lean_ctor_set(x_55, 1, x_44); +return x_55; +} +else +{ +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_dec(x_43); +x_56 = l_Lean_Meta_SavedState_restore(x_19, x_2, x_3, x_4, x_5, x_44); +lean_dec(x_19); +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec(x_56); +x_58 = l_Lean_indentExpr(x_13); +x_59 = l_Lean_Expr_applySymm___closed__2; +x_60 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_58); +x_61 = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17; +x_62 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +x_63 = l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1(x_62, x_2, x_3, x_4, x_5, x_57); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_63; +} +} +} +} +} +else +{ +uint8_t x_64; +lean_dec(x_13); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_64 = !lean_is_exclusive(x_14); +if (x_64 == 0) +{ +return x_14; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_14, 0); +x_66 = lean_ctor_get(x_14, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_14); +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +return x_67; +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_68 = !lean_is_exclusive(x_7); +if (x_68 == 0) +{ +return x_7; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_7, 0); +x_70 = lean_ctor_get(x_7, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_7); +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +return x_71; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_applySymmAt(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +lean_inc(x_1); +x_8 = l_Lean_Expr_fvar___override(x_1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_9 = l_Lean_Expr_applySymm(x_8, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_box(0); +x_13 = l_Lean_MVarId_replace(x_2, x_1, x_10, x_12, x_3, x_4, x_5, x_6, x_11); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +lean_dec(x_15); +lean_ctor_set(x_13, 0, x_16); +return x_13; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_13, 0); +x_18 = lean_ctor_get(x_13, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_13); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_13); +if (x_21 == 0) +{ +return x_13; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_13, 0); +x_23 = lean_ctor_get(x_13, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_13); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +else +{ +uint8_t x_25; +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_25 = !lean_is_exclusive(x_9); +if (x_25 == 0) +{ +return x_9; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_9, 0); +x_27 = lean_ctor_get(x_9, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_9); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_5, x_4); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_6); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_array_uget(x_3, x_5); +x_15 = !lean_is_exclusive(x_6); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_ctor_get(x_6, 1); +x_17 = lean_ctor_get(x_6, 0); +lean_dec(x_17); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_16); +lean_inc(x_1); +x_18 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3(x_1, x_14, x_16, x_7, x_8, x_9, x_10, x_11); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_18); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_18, 0); +lean_dec(x_21); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_19); +lean_ctor_set(x_6, 0, x_22); +lean_ctor_set(x_18, 0, x_6); +return x_18; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_dec(x_18); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_19); +lean_ctor_set(x_6, 0, x_24); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_6); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} +else +{ +lean_object* x_26; lean_object* x_27; size_t x_28; size_t x_29; +lean_dec(x_16); +x_26 = lean_ctor_get(x_18, 1); +lean_inc(x_26); +lean_dec(x_18); +x_27 = lean_ctor_get(x_19, 0); +lean_inc(x_27); +lean_dec(x_19); +lean_inc(x_2); +lean_ctor_set(x_6, 1, x_27); +lean_ctor_set(x_6, 0, x_2); +x_28 = 1; +x_29 = lean_usize_add(x_5, x_28); +x_5 = x_29; +x_11 = x_26; +goto _start; +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_6, 1); +lean_inc(x_31); +lean_dec(x_6); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_31); +lean_inc(x_1); +x_32 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3(x_1, x_14, x_31, x_7, x_8, x_9, x_10, x_11); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +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_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_35 = x_32; +} else { + lean_dec_ref(x_32); + x_35 = lean_box(0); +} +x_36 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_36, 0, x_33); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_31); +if (lean_is_scalar(x_35)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_35; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_34); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; size_t x_42; size_t x_43; +lean_dec(x_31); +x_39 = lean_ctor_get(x_32, 1); +lean_inc(x_39); +lean_dec(x_32); +x_40 = lean_ctor_get(x_33, 0); +lean_inc(x_40); +lean_dec(x_33); +lean_inc(x_2); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_2); +lean_ctor_set(x_41, 1, x_40); +x_42 = 1; +x_43 = lean_usize_add(x_5, x_42); +x_5 = x_43; +x_6 = x_41; +x_11 = x_39; +goto _start; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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: +{ +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_4, x_3); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_1); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else +{ +lean_object* x_13; +x_13 = lean_array_uget(x_2, x_4); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_5); +if (x_14 == 0) +{ +lean_object* x_15; size_t x_16; size_t x_17; +x_15 = lean_ctor_get(x_5, 0); +lean_dec(x_15); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_16 = 1; +x_17 = lean_usize_add(x_4, x_16); +x_4 = x_17; +goto _start; +} +else +{ +lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; +x_19 = lean_ctor_get(x_5, 1); +lean_inc(x_19); +lean_dec(x_5); +lean_inc(x_1); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_19); +x_21 = 1; +x_22 = lean_usize_add(x_4, x_21); +x_4 = x_22; +x_5 = x_20; +goto _start; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_5); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_5, 1); +x_26 = lean_ctor_get(x_5, 0); +lean_dec(x_26); +x_27 = lean_ctor_get(x_13, 0); +lean_inc(x_27); +lean_dec(x_13); +x_28 = l_Lean_LocalDecl_isImplementationDetail(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; size_t x_31; size_t x_32; +x_29 = l_Lean_LocalDecl_toExpr(x_27); +lean_dec(x_27); +x_30 = lean_array_push(x_25, x_29); +lean_inc(x_1); +lean_ctor_set(x_5, 1, x_30); +lean_ctor_set(x_5, 0, x_1); +x_31 = 1; +x_32 = lean_usize_add(x_4, x_31); +x_4 = x_32; +goto _start; +} +else +{ +size_t x_34; size_t x_35; +lean_dec(x_27); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_34 = 1; +x_35 = lean_usize_add(x_4, x_34); +x_4 = x_35; +goto _start; +} +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_5, 1); +lean_inc(x_37); +lean_dec(x_5); +x_38 = lean_ctor_get(x_13, 0); +lean_inc(x_38); +lean_dec(x_13); +x_39 = l_Lean_LocalDecl_isImplementationDetail(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; size_t x_43; size_t x_44; +x_40 = l_Lean_LocalDecl_toExpr(x_38); +lean_dec(x_38); +x_41 = lean_array_push(x_37, x_40); +lean_inc(x_1); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_41); +x_43 = 1; +x_44 = lean_usize_add(x_4, x_43); +x_4 = x_44; +x_5 = x_42; +goto _start; +} +else +{ +lean_object* x_46; size_t x_47; size_t x_48; +lean_dec(x_38); +lean_inc(x_1); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_37); +x_47 = 1; +x_48 = lean_usize_add(x_4, x_47); +x_4 = x_48; +x_5 = x_46; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1(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) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_1); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__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) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +lean_dec(x_2); +x_10 = lean_box(0); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_3); +x_12 = lean_array_get_size(x_9); +x_13 = lean_usize_of_nat(x_12); +lean_dec(x_12); +x_14 = 0; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_15 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4(x_1, x_10, x_9, x_13, x_14, x_11, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_9); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_box(0); +x_21 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1(x_19, x_20, x_4, x_5, x_6, x_7, x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_21; +} +else +{ +uint8_t x_22; +lean_dec(x_16); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_22 = !lean_is_exclusive(x_15); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_15, 0); +lean_dec(x_23); +x_24 = lean_ctor_get(x_17, 0); +lean_inc(x_24); +lean_dec(x_17); +lean_ctor_set(x_15, 0, x_24); +return x_15; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_15, 1); +lean_inc(x_25); +lean_dec(x_15); +x_26 = lean_ctor_get(x_17, 0); +lean_inc(x_26); +lean_dec(x_17); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_25); +return x_27; +} +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; size_t x_32; size_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_1); +x_28 = lean_ctor_get(x_2, 0); +lean_inc(x_28); +lean_dec(x_2); +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_3); +x_31 = lean_array_get_size(x_28); +x_32 = lean_usize_of_nat(x_31); +lean_dec(x_31); +x_33 = 0; +x_34 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5(x_29, x_28, x_32, x_33, x_30, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_28); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = lean_ctor_get(x_35, 1); +lean_inc(x_38); +lean_dec(x_35); +x_39 = lean_box(0); +x_40 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1(x_38, x_39, x_4, x_5, x_6, x_7, x_37); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_40; +} +else +{ +uint8_t x_41; +lean_dec(x_35); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_41 = !lean_is_exclusive(x_34); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_ctor_get(x_34, 0); +lean_dec(x_42); +x_43 = lean_ctor_get(x_36, 0); +lean_inc(x_43); +lean_dec(x_36); +lean_ctor_set(x_34, 0, x_43); +return x_34; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_34, 1); +lean_inc(x_44); +lean_dec(x_34); +x_45 = lean_ctor_get(x_36, 0); +lean_inc(x_45); +lean_dec(x_36); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_44); +return x_46; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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: +{ +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_4, x_3); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_1); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_5); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else +{ +lean_object* x_13; +x_13 = lean_array_uget(x_2, x_4); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_5); +if (x_14 == 0) +{ +lean_object* x_15; size_t x_16; size_t x_17; +x_15 = lean_ctor_get(x_5, 0); +lean_dec(x_15); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_16 = 1; +x_17 = lean_usize_add(x_4, x_16); +x_4 = x_17; +goto _start; +} +else +{ +lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; +x_19 = lean_ctor_get(x_5, 1); +lean_inc(x_19); +lean_dec(x_5); +lean_inc(x_1); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_19); +x_21 = 1; +x_22 = lean_usize_add(x_4, x_21); +x_4 = x_22; +x_5 = x_20; +goto _start; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_5); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_5, 1); +x_26 = lean_ctor_get(x_5, 0); +lean_dec(x_26); +x_27 = lean_ctor_get(x_13, 0); +lean_inc(x_27); +lean_dec(x_13); +x_28 = l_Lean_LocalDecl_isImplementationDetail(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; size_t x_31; size_t x_32; +x_29 = l_Lean_LocalDecl_toExpr(x_27); +lean_dec(x_27); +x_30 = lean_array_push(x_25, x_29); +lean_inc(x_1); +lean_ctor_set(x_5, 1, x_30); +lean_ctor_set(x_5, 0, x_1); +x_31 = 1; +x_32 = lean_usize_add(x_4, x_31); +x_4 = x_32; +goto _start; +} +else +{ +size_t x_34; size_t x_35; +lean_dec(x_27); +lean_inc(x_1); +lean_ctor_set(x_5, 0, x_1); +x_34 = 1; +x_35 = lean_usize_add(x_4, x_34); +x_4 = x_35; +goto _start; +} +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_5, 1); +lean_inc(x_37); +lean_dec(x_5); +x_38 = lean_ctor_get(x_13, 0); +lean_inc(x_38); +lean_dec(x_13); +x_39 = l_Lean_LocalDecl_isImplementationDetail(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; size_t x_43; size_t x_44; +x_40 = l_Lean_LocalDecl_toExpr(x_38); +lean_dec(x_38); +x_41 = lean_array_push(x_37, x_40); +lean_inc(x_1); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_41); +x_43 = 1; +x_44 = lean_usize_add(x_4, x_43); +x_4 = x_44; +x_5 = x_42; +goto _start; +} +else +{ +lean_object* x_46; size_t x_47; size_t x_48; +lean_dec(x_38); +lean_inc(x_1); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_37); +x_47 = 1; +x_48 = lean_usize_add(x_4, x_47); +x_4 = x_48; +x_5 = x_46; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2___lambda__1(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) { +_start: +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__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) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_1, 0); +lean_inc(x_8); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_9 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3(x_2, x_8, x_2, x_3, x_4, x_5, x_6, x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_11 = !lean_is_exclusive(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_9, 0); +lean_dec(x_12); +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +lean_ctor_set(x_9, 0, x_13); +return x_9; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_dec(x_9); +x_15 = lean_ctor_get(x_10, 0); +lean_inc(x_15); +lean_dec(x_10); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +return x_16; +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_17 = lean_ctor_get(x_9, 1); +lean_inc(x_17); +lean_dec(x_9); +x_18 = lean_ctor_get(x_10, 0); +lean_inc(x_18); +lean_dec(x_10); +x_19 = lean_ctor_get(x_1, 1); +lean_inc(x_19); +lean_dec(x_1); +x_20 = lean_box(0); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +x_22 = lean_array_get_size(x_19); +x_23 = lean_usize_of_nat(x_22); +lean_dec(x_22); +x_24 = 0; +x_25 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6(x_20, x_19, x_23, x_24, x_21, x_3, x_4, x_5, x_6, x_17); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_19); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_25); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_25, 0); +lean_dec(x_29); +x_30 = lean_ctor_get(x_26, 1); +lean_inc(x_30); +lean_dec(x_26); +lean_ctor_set(x_25, 0, x_30); +return x_25; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +lean_dec(x_25); +x_32 = lean_ctor_get(x_26, 1); +lean_inc(x_32); +lean_dec(x_26); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_26); +x_34 = !lean_is_exclusive(x_25); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_ctor_get(x_25, 0); +lean_dec(x_35); +x_36 = lean_ctor_get(x_27, 0); +lean_inc(x_36); +lean_dec(x_27); +lean_ctor_set(x_25, 0, x_36); +return x_25; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_25, 1); +lean_inc(x_37); +lean_dec(x_25); +x_38 = lean_ctor_get(x_27, 0); +lean_inc(x_38); +lean_dec(x_27); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +return x_39; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_getLocalHyps___at_Lean_MVarId_symmSaturate___spec__1(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; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +x_7 = lean_ctor_get(x_6, 1); +lean_inc(x_7); +lean_dec(x_6); +x_8 = l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1; +x_9 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2(x_7, x_8, x_1, x_2, x_3, x_4, x_5); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +return x_9; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_9); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7(size_t x_1, size_t 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) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +x_14 = lean_infer_type(x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; +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 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_19 = lean_array_uset(x_13, x_2, x_15); +x_2 = x_18; +x_3 = x_19; +x_8 = x_16; +goto _start; +} +else +{ +uint8_t x_21; +lean_dec(x_13); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_21 = !lean_is_exclusive(x_14); +if (x_21 == 0) +{ +return x_14; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_14, 0); +x_23 = lean_ctor_get(x_14, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_14); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_eq(x_3, x_4); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_array_uget(x_2, x_3); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_1); +x_12 = l_Lean_Meta_isExprDefEq(x_1, x_11, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_unbox(x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; size_t x_16; size_t x_17; +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec(x_12); +x_16 = 1; +x_17 = lean_usize_add(x_3, x_16); +x_3 = x_17; +x_9 = x_15; +goto _start; +} +else +{ +uint8_t x_19; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +lean_object* x_20; uint8_t x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_12, 0); +lean_dec(x_20); +x_21 = 1; +x_22 = lean_box(x_21); +lean_ctor_set(x_12, 0, x_22); +return x_12; +} +else +{ +lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_12, 1); +lean_inc(x_23); +lean_dec(x_12); +x_24 = 1; +x_25 = lean_box(x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_23); +return x_26; +} +} +} +else +{ +uint8_t x_27; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_12); +if (x_27 == 0) +{ +return x_12; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_12, 0); +x_29 = lean_ctor_get(x_12, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_12); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +else +{ +uint8_t x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_31 = 0; +x_32 = lean_box(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_9); +return x_33; +} +} +} +static uint8_t _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__1() { +_start: +{ +uint8_t x_1; uint8_t x_2; +x_1 = 0; +x_2 = l_instDecidableNot___rarg(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("_symm", 5); +return x_1; +} +} +static uint8_t _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__3() { +_start: +{ +uint8_t x_1; uint8_t x_2; +x_1 = 1; +x_2 = l_instDecidableNot___rarg(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9(size_t x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_5, x_4); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_6); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_22; lean_object* x_23; lean_object* x_30; +x_14 = lean_array_uget(x_3, x_5); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_14); +x_30 = l_Lean_Expr_applySymm(x_14, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_72; +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); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_31); +x_72 = lean_infer_type(x_31, x_7, x_8, x_9, x_10, x_32); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec(x_72); +x_75 = lean_array_get_size(x_2); +x_76 = lean_unsigned_to_nat(0u); +x_77 = lean_nat_dec_lt(x_76, x_75); +if (x_77 == 0) +{ +uint8_t x_78; +lean_dec(x_75); +lean_dec(x_73); +x_78 = 0; +x_33 = x_78; +x_34 = x_74; +goto block_71; +} +else +{ +size_t x_79; lean_object* x_80; +x_79 = lean_usize_of_nat(x_75); +lean_dec(x_75); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_80 = l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8(x_73, x_2, x_1, x_79, x_7, x_8, x_9, x_10, x_74); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; lean_object* x_82; uint8_t x_83; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +lean_dec(x_80); +x_83 = lean_unbox(x_81); +lean_dec(x_81); +x_33 = x_83; +x_34 = x_82; +goto block_71; +} +else +{ +lean_object* x_84; lean_object* x_85; +lean_dec(x_31); +lean_dec(x_14); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_80, 1); +lean_inc(x_85); +lean_dec(x_80); +x_22 = x_84; +x_23 = x_85; +goto block_29; +} +} +} +else +{ +lean_object* x_86; lean_object* x_87; +lean_dec(x_31); +lean_dec(x_14); +x_86 = lean_ctor_get(x_72, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_72, 1); +lean_inc(x_87); +lean_dec(x_72); +x_22 = x_86; +x_23 = x_87; +goto block_29; +} +block_71: +{ +if (x_33 == 0) +{ +uint8_t x_35; +x_35 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__1; +if (x_35 == 0) +{ +lean_object* x_36; +lean_dec(x_31); +lean_dec(x_14); +x_36 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_36, 0, x_6); +x_15 = x_36; +x_16 = x_34; +goto block_21; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = l_Lean_Expr_fvarId_x21(x_14); +lean_inc(x_7); +x_38 = l_Lean_FVarId_getUserName(x_37, x_7, x_8, x_9, x_10, x_34); +if (lean_obj_tag(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_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec(x_38); +x_41 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2; +x_42 = lean_name_append_after(x_39, x_41); +x_43 = lean_box(0); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_44 = l_Lean_MVarId_note(x_6, x_42, x_31, x_43, x_7, x_8, x_9, x_10, x_40); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_6); +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec(x_45); +x_48 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_48, 0, x_47); +x_15 = x_48; +x_16 = x_46; +goto block_21; +} +else +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_44, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_44, 1); +lean_inc(x_50); +lean_dec(x_44); +x_22 = x_49; +x_23 = x_50; +goto block_29; +} +} +else +{ +lean_object* x_51; lean_object* x_52; +lean_dec(x_31); +x_51 = lean_ctor_get(x_38, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_38, 1); +lean_inc(x_52); +lean_dec(x_38); +x_22 = x_51; +x_23 = x_52; +goto block_29; +} +} +} +else +{ +uint8_t x_53; +x_53 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__3; +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_31); +lean_dec(x_14); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_6); +x_15 = x_54; +x_16 = x_34; +goto block_21; +} +else +{ +lean_object* x_55; lean_object* x_56; +x_55 = l_Lean_Expr_fvarId_x21(x_14); +lean_inc(x_7); +x_56 = l_Lean_FVarId_getUserName(x_55, x_7, x_8, x_9, x_10, x_34); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +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_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2; +x_60 = lean_name_append_after(x_57, x_59); +x_61 = lean_box(0); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_62 = l_Lean_MVarId_note(x_6, x_60, x_31, x_61, x_7, x_8, x_9, x_10, x_58); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_6); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +lean_dec(x_62); +x_65 = lean_ctor_get(x_63, 1); +lean_inc(x_65); +lean_dec(x_63); +x_66 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_66, 0, x_65); +x_15 = x_66; +x_16 = x_64; +goto block_21; +} +else +{ +lean_object* x_67; lean_object* x_68; +x_67 = lean_ctor_get(x_62, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_62, 1); +lean_inc(x_68); +lean_dec(x_62); +x_22 = x_67; +x_23 = x_68; +goto block_29; +} +} +else +{ +lean_object* x_69; lean_object* x_70; +lean_dec(x_31); +x_69 = lean_ctor_get(x_56, 0); +lean_inc(x_69); +x_70 = lean_ctor_get(x_56, 1); +lean_inc(x_70); +lean_dec(x_56); +x_22 = x_69; +x_23 = x_70; +goto block_29; +} +} +} +} +} +else +{ +uint8_t x_88; +lean_dec(x_14); +x_88 = !lean_is_exclusive(x_30); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_89 = lean_ctor_get(x_30, 0); +x_90 = lean_ctor_get(x_30, 1); +x_91 = l_Lean_Exception_isRuntime(x_89); +if (x_91 == 0) +{ +size_t x_92; size_t x_93; +lean_free_object(x_30); +lean_dec(x_89); +x_92 = 1; +x_93 = lean_usize_add(x_5, x_92); +x_5 = x_93; +x_11 = x_90; +goto _start; +} +else +{ +uint8_t x_95; +x_95 = lean_ctor_get_uint8(x_9, sizeof(void*)*11); +if (x_95 == 0) +{ +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +return x_30; +} +else +{ +size_t x_96; size_t x_97; +lean_free_object(x_30); +lean_dec(x_89); +x_96 = 1; +x_97 = lean_usize_add(x_5, x_96); +x_5 = x_97; +x_11 = x_90; +goto _start; +} +} +} +else +{ +lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_99 = lean_ctor_get(x_30, 0); +x_100 = lean_ctor_get(x_30, 1); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_30); +x_101 = l_Lean_Exception_isRuntime(x_99); +if (x_101 == 0) +{ +size_t x_102; size_t x_103; +lean_dec(x_99); +x_102 = 1; +x_103 = lean_usize_add(x_5, x_102); +x_5 = x_103; +x_11 = x_100; +goto _start; +} +else +{ +uint8_t x_105; +x_105 = lean_ctor_get_uint8(x_9, sizeof(void*)*11); +if (x_105 == 0) +{ +lean_object* x_106; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_99); +lean_ctor_set(x_106, 1, x_100); +return x_106; +} +else +{ +size_t x_107; size_t x_108; +lean_dec(x_99); +x_107 = 1; +x_108 = lean_usize_add(x_5, x_107); +x_5 = x_108; +x_11 = x_100; +goto _start; +} +} +} +} +block_21: +{ +lean_object* x_17; size_t x_18; size_t x_19; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = 1; +x_19 = lean_usize_add(x_5, x_18); +x_5 = x_19; +x_6 = x_17; +x_11 = x_16; +goto _start; +} +block_29: +{ +uint8_t x_24; +x_24 = l_Lean_Exception_isRuntime(x_22); +if (x_24 == 0) +{ +lean_object* x_25; +lean_dec(x_22); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_6); +x_15 = x_25; +x_16 = x_23; +goto block_21; +} +else +{ +uint8_t x_26; +x_26 = lean_ctor_get_uint8(x_9, sizeof(void*)*11); +if (x_26 == 0) +{ +lean_object* x_27; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_22); +lean_ctor_set(x_27, 1, x_23); +return x_27; +} +else +{ +lean_object* x_28; +lean_dec(x_22); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_6); +x_15 = x_28; +x_16 = x_23; +goto block_21; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_symmSaturate___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_7 = l_Lean_getLocalHyps___at_Lean_MVarId_symmSaturate___spec__1(x_2, x_3, x_4, x_5, x_6); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_array_get_size(x_8); +x_11 = lean_usize_of_nat(x_10); +lean_dec(x_10); +x_12 = 0; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_8); +x_13 = l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7(x_11, x_12, x_8, x_2, x_3, x_4, x_5, x_9); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +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_16 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9(x_12, x_14, x_8, x_11, x_12, x_1, x_2, x_3, x_4, x_5, x_15); +lean_dec(x_8); +lean_dec(x_14); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +return x_16; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_16); +if (x_21 == 0) +{ +return x_16; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_16, 0); +x_23 = lean_ctor_get(x_16, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_16); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_13); +if (x_25 == 0) +{ +return x_13; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_13, 0); +x_27 = lean_ctor_get(x_13, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_13); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_symmSaturate(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +lean_inc(x_1); +x_7 = lean_alloc_closure((void*)(l_Lean_MVarId_symmSaturate___lambda__1), 6, 1); +lean_closure_set(x_7, 0, x_1); +x_8 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(x_1, x_7, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_14 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__4(x_1, x_2, x_3, x_12, x_13, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_3); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5___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, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__5(x_1, x_2, x_11, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_PersistentArray_forInAux___at_Lean_MVarId_symmSaturate___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6___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, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__6(x_1, x_2, x_11, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2___lambda__1___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_PersistentArray_forIn___at_Lean_MVarId_symmSaturate___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7___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) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at_Lean_MVarId_symmSaturate___spec__7(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8___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: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_11 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_12 = l_Array_anyMUnsafe_any___at_Lean_MVarId_symmSaturate___spec__8(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___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, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; size_t x_14; lean_object* x_15; +x_12 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_13 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_14 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_15 = l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9(x_12, x_2, x_3, x_13, x_14, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_3); +lean_dec(x_2); +return x_15; +} +} +lean_object* initialize_Lean_Meta_Reduce(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Symm(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Reduce(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Assert(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_Symm_symmExt_config___closed__1 = _init_l_Lean_Meta_Symm_symmExt_config___closed__1(); +lean_mark_persistent(l_Lean_Meta_Symm_symmExt_config___closed__1); +l_Lean_Meta_Symm_symmExt_config = _init_l_Lean_Meta_Symm_symmExt_config(); +lean_mark_persistent(l_Lean_Meta_Symm_symmExt_config); +l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__1 = _init_l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__1(); +l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2 = _init_l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__3___closed__2(); +l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__6___closed__1); +l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1 = _init_l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__1); +l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2 = _init_l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_0__Lean_Meta_DiscrTree_insertAux___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__9___closed__2); +l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1 = _init_l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1(); +lean_mark_persistent(l_panic___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__13___closed__1); +l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1 = _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__1); +l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2 = _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__2); +l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__3 = _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__3(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__3); +l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4 = _init_l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____spec__1___closed__4); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__1); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__2); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__3); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__4); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__5); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__6); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__7); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__8); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__9); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__10); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19____closed__11); +if (builtin) {res = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_19_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Meta_Symm_symmExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Meta_Symm_symmExt); +lean_dec_ref(res); +}l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__1); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__2); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__3); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__4 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__4(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__4); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__5); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__6); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__7); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__8 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__8(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__8); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__9); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__10); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__11 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__11(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__11); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__12); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__13 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__13(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__13); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__14 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__14(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__14); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__15); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__16); +l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17 = _init_l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____spec__1___closed__17); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__1); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__2); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__3); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__4); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__5); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__6); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__7 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__7); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__8); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__9); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__10); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__11); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__12); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__13 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__13(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__13); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__14); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__15); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__16); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__17); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__1___closed__18); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__1); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____lambda__2___closed__2); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__1); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__2); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__3); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__4); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__5); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__6); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__7); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__8); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__9); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__10); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__11); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__12); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__13); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__14); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__15); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__16); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__17); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__18); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__19); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__20); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__21); +l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22 = _init_l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22(); +lean_mark_persistent(l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102____closed__22); +if (builtin) {res = l_Lean_Meta_Symm_initFn____x40_Lean_Meta_Tactic_Symm___hyg_102_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Expr_getSymmLems___closed__1 = _init_l_Lean_Expr_getSymmLems___closed__1(); +lean_mark_persistent(l_Lean_Expr_getSymmLems___closed__1); +l_Lean_Expr_getSymmLems___closed__2 = _init_l_Lean_Expr_getSymmLems___closed__2(); +lean_mark_persistent(l_Lean_Expr_getSymmLems___closed__2); +l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1 = _init_l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1(); +lean_mark_persistent(l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__1); +l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2 = _init_l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2(); +lean_mark_persistent(l_List_firstM___at_Lean_Expr_applySymm___spec__1___closed__2); +l_Lean_Expr_applySymm___closed__1 = _init_l_Lean_Expr_applySymm___closed__1(); +lean_mark_persistent(l_Lean_Expr_applySymm___closed__1); +l_Lean_Expr_applySymm___closed__2 = _init_l_Lean_Expr_applySymm___closed__2(); +lean_mark_persistent(l_Lean_Expr_applySymm___closed__2); +l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__1(); +l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__2); +l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_MVarId_symmSaturate___spec__9___closed__3(); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/Util.c b/stage0/stdlib/Lean/Meta/Tactic/Util.c index 6cd563d90f..da77b43081 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Util.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Util.c @@ -44,6 +44,7 @@ size_t lean_hashset_mk_idx(lean_object*, uint64_t); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwNestedTacticEx___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_headBetaType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_MVarId_isSubsingleton___closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_getPropHyps___spec__4___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_mkHashSetImp___rarg(lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_418____closed__16; @@ -73,6 +74,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwNestedTacticEx___ lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_Expr_mvar___override(lean_object*); lean_object* l_Lean_MetavarContext_setMVarUserName(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_MVarId_isSubsingleton___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getNondepPropHyps___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_appendTag(lean_object*, lean_object*); @@ -120,6 +122,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_admit(lean_object*, uint8_t, lean_object*, LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwNestedTacticEx___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_exactlyOne___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_getNondepPropHyps___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at_Lean_MVarId_getNondepPropHyps___spec__19___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getNondepPropHyps___spec__17(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -133,6 +136,7 @@ lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_MVarId_getNondepPropHyps___spec__14___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at_Lean_MVarId_getNondepPropHyps___spec__9(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getNondepPropHyps___spec__17___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_MVarId_isSubsingleton(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMVarType_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_admit___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getPropHyps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -209,6 +213,7 @@ lean_object* lean_erase_macro_scopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_ensureAtMostOne___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashSet___at_Lean_MVarId_getNondepPropHyps___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_saturate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_MVarId_isSubsingleton___closed__1; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_418____closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getNondepPropHyps___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); @@ -238,6 +243,7 @@ lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_headBetaMVarType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_MVarId_getNondepPropHyps___spec__23___boxed(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_Meta_getMVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Exception_isRuntime(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at_Lean_MVarId_getNondepPropHyps___spec__10(lean_object*, lean_object*); static lean_object* l_Lean_MVarId_getNondepPropHyps___lambda__1___closed__1; static lean_object* l_Lean_MVarId_checkNotAssigned___closed__2; @@ -8024,6 +8030,182 @@ x_9 = l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_M return x_9; } } +static lean_object* _init_l_Lean_MVarId_isSubsingleton___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Subsingleton", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_MVarId_isSubsingleton___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_MVarId_isSubsingleton___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_MVarId_isSubsingleton___closed__3() { +_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; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isSubsingleton(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_19; +x_19 = l_Lean_MVarId_getType(x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = l_Lean_MVarId_isSubsingleton___closed__3; +x_23 = lean_array_push(x_22, x_20); +x_24 = l_Lean_MVarId_isSubsingleton___closed__2; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_25 = l_Lean_Meta_mkAppM(x_24, x_23, x_2, x_3, x_4, x_5, x_21); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +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_28 = lean_box(0); +lean_inc(x_4); +x_29 = l_Lean_Meta_synthInstance(x_26, x_28, x_2, x_3, x_4, x_5, x_27); +if (lean_obj_tag(x_29) == 0) +{ +uint8_t x_30; +lean_dec(x_4); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_29, 0); +lean_dec(x_31); +x_32 = 1; +x_33 = lean_box(x_32); +lean_ctor_set(x_29, 0, x_33); +return x_29; +} +else +{ +lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_29, 1); +lean_inc(x_34); +lean_dec(x_29); +x_35 = 1; +x_36 = lean_box(x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_29, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_29, 1); +lean_inc(x_39); +lean_dec(x_29); +x_7 = x_38; +x_8 = x_39; +goto block_18; +} +} +else +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_40 = lean_ctor_get(x_25, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_25, 1); +lean_inc(x_41); +lean_dec(x_25); +x_7 = x_40; +x_8 = x_41; +goto block_18; +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_42 = lean_ctor_get(x_19, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_19, 1); +lean_inc(x_43); +lean_dec(x_19); +x_7 = x_42; +x_8 = x_43; +goto block_18; +} +block_18: +{ +uint8_t x_9; +x_9 = l_Lean_Exception_isRuntime(x_7); +if (x_9 == 0) +{ +uint8_t x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_7); +lean_dec(x_4); +x_10 = 0; +x_11 = lean_box(x_10); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +else +{ +uint8_t x_13; +x_13 = lean_ctor_get_uint8(x_4, sizeof(void*)*11); +lean_dec(x_4); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_8); +return x_14; +} +else +{ +uint8_t x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_7); +x_15 = 0; +x_16 = lean_box(x_15); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_8); +return x_17; +} +} +} +} +} lean_object* initialize_Lean_Util_ForEachExprWhere(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_AppBuilder(uint8_t builtin, lean_object*); @@ -8138,6 +8320,12 @@ l_Lean_MVarId_inferInstance___closed__1 = _init_l_Lean_MVarId_inferInstance___cl lean_mark_persistent(l_Lean_MVarId_inferInstance___closed__1); l_Lean_MVarId_inferInstance___closed__2 = _init_l_Lean_MVarId_inferInstance___closed__2(); lean_mark_persistent(l_Lean_MVarId_inferInstance___closed__2); +l_Lean_MVarId_isSubsingleton___closed__1 = _init_l_Lean_MVarId_isSubsingleton___closed__1(); +lean_mark_persistent(l_Lean_MVarId_isSubsingleton___closed__1); +l_Lean_MVarId_isSubsingleton___closed__2 = _init_l_Lean_MVarId_isSubsingleton___closed__2(); +lean_mark_persistent(l_Lean_MVarId_isSubsingleton___closed__2); +l_Lean_MVarId_isSubsingleton___closed__3 = _init_l_Lean_MVarId_isSubsingleton___closed__3(); +lean_mark_persistent(l_Lean_MVarId_isSubsingleton___closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser.c b/stage0/stdlib/Lean/Parser.c index fad7b114d7..c31190c4fb 100644 --- a/stage0/stdlib/Lean/Parser.c +++ b/stage0/stdlib/Lean/Parser.c @@ -14,6 +14,7 @@ extern "C" { #endif lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__52; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__192; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__215; @@ -53,6 +54,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__2 LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__9___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_initFn____x40_Lean_Parser___hyg_8____closed__306; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__249; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer___closed__2; @@ -91,6 +93,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_obj static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__245; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__290; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__35; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__75; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__234; lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -100,6 +103,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__6 static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__145; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__58; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__41; +lean_object* l_Lean_Parser_recover(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_scientific_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__214; @@ -149,7 +153,9 @@ static lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_strLit_formatter static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__47; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__53; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__79; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__281; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__256; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__203; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__259; @@ -188,6 +194,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__1 static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__17; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_strLit_formatter(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304; LEAN_EXPORT lean_object* lean_pretty_printer_parenthesizer_interpret_parser_descr(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__169; @@ -212,6 +219,7 @@ lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_withoutPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__162; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__182; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__308; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____lambda__1___closed__1; @@ -223,6 +231,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__6 static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__86; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__82; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__270; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__261; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__185; @@ -294,6 +303,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__2 static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__233; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__26; lean_object* l_Lean_PrettyPrinter_Formatter_lookahead_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__250; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__62; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__164; @@ -408,6 +418,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__1 static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__170; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__42; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__149; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__107; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__115; lean_object* l_Lean_Parser_registerAlias(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -448,6 +459,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__1 lean_object* l_Lean_Parser_lookahead(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__45; +lean_object* l_Lean_PrettyPrinter_Formatter_recover_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__134; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__93; lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -524,6 +536,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_ob lean_object* l_Lean_Parser_nonReservedSymbol_formatter(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__28; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300; static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____lambda__1___closed__1() { _start: { @@ -3253,7 +3266,7 @@ static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____clo _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("notFollowedBy", 13); +x_1 = lean_mk_string_from_bytes("recover", 7); return x_1; } } @@ -3282,7 +3295,7 @@ static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____clo _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_recover), 2, 0); return x_1; } } @@ -3291,7 +3304,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__294; -x_2 = lean_alloc_ctor(1, 1, 0); +x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } @@ -3299,34 +3312,127 @@ return x_2; static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__296() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___boxed), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__297() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__296; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__293; 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_initFn____x40_Lean_Parser___hyg_8____closed__297() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_recover_formatter), 6, 0); +return x_1; +} +} static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__298() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__297; +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_initFn____x40_Lean_Parser___hyg_8____closed__299() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299; +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_initFn____x40_Lean_Parser___hyg_8____closed__301() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("notFollowedBy", 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__3; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__4; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____lambda__1), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304; +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_initFn____x40_Lean_Parser___hyg_8____closed__306() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___boxed), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__306; +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_initFn____x40_Lean_Parser___hyg_8____closed__308() { +_start: +{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__298; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__308; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -4068,117 +4174,75 @@ x_330 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__290; x_331 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_321, x_330, x_329); if (lean_obj_tag(x_331) == 0) { -lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; x_332 = lean_ctor_get(x_331, 1); lean_inc(x_332); lean_dec(x_331); x_333 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__292; x_334 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__293; x_335 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__295; -x_336 = l_Lean_Parser_registerAlias(x_333, x_334, x_335, x_186, x_45, x_332); -if (lean_obj_tag(x_336) == 0) +x_336 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__296; +x_337 = l_Lean_Parser_registerAlias(x_333, x_334, x_335, x_336, x_45, x_332); +if (lean_obj_tag(x_337) == 0) { -lean_object* x_337; lean_object* x_338; lean_object* x_339; -x_337 = lean_ctor_get(x_336, 1); -lean_inc(x_337); -lean_dec(x_336); -x_338 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__297; -x_339 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_333, x_338, x_337); -if (lean_obj_tag(x_339) == 0) +lean_object* x_338; lean_object* x_339; lean_object* x_340; +x_338 = lean_ctor_get(x_337, 1); +lean_inc(x_338); +lean_dec(x_337); +x_339 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__298; +x_340 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_333, x_339, x_338); +if (lean_obj_tag(x_340) == 0) { -lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_340 = lean_ctor_get(x_339, 1); -lean_inc(x_340); -lean_dec(x_339); -x_341 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299; -x_342 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_333, x_341, x_340); -return x_342; -} -else +lean_object* x_341; lean_object* x_342; lean_object* x_343; +x_341 = lean_ctor_get(x_340, 1); +lean_inc(x_341); +lean_dec(x_340); +x_342 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300; +x_343 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_333, x_342, x_341); +if (lean_obj_tag(x_343) == 0) { -uint8_t x_343; -x_343 = !lean_is_exclusive(x_339); -if (x_343 == 0) -{ -return x_339; -} -else -{ -lean_object* x_344; lean_object* x_345; lean_object* x_346; -x_344 = lean_ctor_get(x_339, 0); -x_345 = lean_ctor_get(x_339, 1); -lean_inc(x_345); +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_344 = lean_ctor_get(x_343, 1); lean_inc(x_344); -lean_dec(x_339); -x_346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_346, 0, x_344); -lean_ctor_set(x_346, 1, x_345); -return x_346; -} -} -} -else +lean_dec(x_343); +x_345 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302; +x_346 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303; +x_347 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305; +x_348 = l_Lean_Parser_registerAlias(x_345, x_346, x_347, x_186, x_45, x_344); +if (lean_obj_tag(x_348) == 0) { -uint8_t x_347; -x_347 = !lean_is_exclusive(x_336); -if (x_347 == 0) -{ -return x_336; -} -else -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; -x_348 = lean_ctor_get(x_336, 0); -x_349 = lean_ctor_get(x_336, 1); +lean_object* x_349; lean_object* x_350; lean_object* x_351; +x_349 = lean_ctor_get(x_348, 1); lean_inc(x_349); -lean_inc(x_348); -lean_dec(x_336); -x_350 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_350, 0, x_348); -lean_ctor_set(x_350, 1, x_349); -return x_350; -} -} -} -else -{ -uint8_t x_351; -x_351 = !lean_is_exclusive(x_331); -if (x_351 == 0) -{ -return x_331; -} -else +lean_dec(x_348); +x_350 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307; +x_351 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_345, x_350, x_349); +if (lean_obj_tag(x_351) == 0) { lean_object* x_352; lean_object* x_353; lean_object* x_354; -x_352 = lean_ctor_get(x_331, 0); -x_353 = lean_ctor_get(x_331, 1); -lean_inc(x_353); +x_352 = lean_ctor_get(x_351, 1); lean_inc(x_352); -lean_dec(x_331); -x_354 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_354, 0, x_352); -lean_ctor_set(x_354, 1, x_353); +lean_dec(x_351); +x_353 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309; +x_354 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_345, x_353, x_352); return x_354; } -} -} else { uint8_t x_355; -x_355 = !lean_is_exclusive(x_328); +x_355 = !lean_is_exclusive(x_351); if (x_355 == 0) { -return x_328; +return x_351; } else { lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_356 = lean_ctor_get(x_328, 0); -x_357 = lean_ctor_get(x_328, 1); +x_356 = lean_ctor_get(x_351, 0); +x_357 = lean_ctor_get(x_351, 1); lean_inc(x_357); lean_inc(x_356); -lean_dec(x_328); +lean_dec(x_351); x_358 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_358, 0, x_356); lean_ctor_set(x_358, 1, x_357); @@ -4189,19 +4253,19 @@ return x_358; else { uint8_t x_359; -x_359 = !lean_is_exclusive(x_325); +x_359 = !lean_is_exclusive(x_348); if (x_359 == 0) { -return x_325; +return x_348; } else { lean_object* x_360; lean_object* x_361; lean_object* x_362; -x_360 = lean_ctor_get(x_325, 0); -x_361 = lean_ctor_get(x_325, 1); +x_360 = lean_ctor_get(x_348, 0); +x_361 = lean_ctor_get(x_348, 1); lean_inc(x_361); lean_inc(x_360); -lean_dec(x_325); +lean_dec(x_348); x_362 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_362, 0, x_360); lean_ctor_set(x_362, 1, x_361); @@ -4212,19 +4276,19 @@ return x_362; else { uint8_t x_363; -x_363 = !lean_is_exclusive(x_319); +x_363 = !lean_is_exclusive(x_343); if (x_363 == 0) { -return x_319; +return x_343; } else { lean_object* x_364; lean_object* x_365; lean_object* x_366; -x_364 = lean_ctor_get(x_319, 0); -x_365 = lean_ctor_get(x_319, 1); +x_364 = lean_ctor_get(x_343, 0); +x_365 = lean_ctor_get(x_343, 1); lean_inc(x_365); lean_inc(x_364); -lean_dec(x_319); +lean_dec(x_343); x_366 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_366, 0, x_364); lean_ctor_set(x_366, 1, x_365); @@ -4235,19 +4299,19 @@ return x_366; else { uint8_t x_367; -x_367 = !lean_is_exclusive(x_316); +x_367 = !lean_is_exclusive(x_340); if (x_367 == 0) { -return x_316; +return x_340; } else { lean_object* x_368; lean_object* x_369; lean_object* x_370; -x_368 = lean_ctor_get(x_316, 0); -x_369 = lean_ctor_get(x_316, 1); +x_368 = lean_ctor_get(x_340, 0); +x_369 = lean_ctor_get(x_340, 1); lean_inc(x_369); lean_inc(x_368); -lean_dec(x_316); +lean_dec(x_340); x_370 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_370, 0, x_368); lean_ctor_set(x_370, 1, x_369); @@ -4258,19 +4322,19 @@ return x_370; else { uint8_t x_371; -x_371 = !lean_is_exclusive(x_313); +x_371 = !lean_is_exclusive(x_337); if (x_371 == 0) { -return x_313; +return x_337; } else { lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_372 = lean_ctor_get(x_313, 0); -x_373 = lean_ctor_get(x_313, 1); +x_372 = lean_ctor_get(x_337, 0); +x_373 = lean_ctor_get(x_337, 1); lean_inc(x_373); lean_inc(x_372); -lean_dec(x_313); +lean_dec(x_337); x_374 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_374, 0, x_372); lean_ctor_set(x_374, 1, x_373); @@ -4281,19 +4345,19 @@ return x_374; else { uint8_t x_375; -x_375 = !lean_is_exclusive(x_307); +x_375 = !lean_is_exclusive(x_331); if (x_375 == 0) { -return x_307; +return x_331; } else { lean_object* x_376; lean_object* x_377; lean_object* x_378; -x_376 = lean_ctor_get(x_307, 0); -x_377 = lean_ctor_get(x_307, 1); +x_376 = lean_ctor_get(x_331, 0); +x_377 = lean_ctor_get(x_331, 1); lean_inc(x_377); lean_inc(x_376); -lean_dec(x_307); +lean_dec(x_331); x_378 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_378, 0, x_376); lean_ctor_set(x_378, 1, x_377); @@ -4304,19 +4368,19 @@ return x_378; else { uint8_t x_379; -x_379 = !lean_is_exclusive(x_304); +x_379 = !lean_is_exclusive(x_328); if (x_379 == 0) { -return x_304; +return x_328; } else { lean_object* x_380; lean_object* x_381; lean_object* x_382; -x_380 = lean_ctor_get(x_304, 0); -x_381 = lean_ctor_get(x_304, 1); +x_380 = lean_ctor_get(x_328, 0); +x_381 = lean_ctor_get(x_328, 1); lean_inc(x_381); lean_inc(x_380); -lean_dec(x_304); +lean_dec(x_328); x_382 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_382, 0, x_380); lean_ctor_set(x_382, 1, x_381); @@ -4327,19 +4391,19 @@ return x_382; else { uint8_t x_383; -x_383 = !lean_is_exclusive(x_301); +x_383 = !lean_is_exclusive(x_325); if (x_383 == 0) { -return x_301; +return x_325; } else { lean_object* x_384; lean_object* x_385; lean_object* x_386; -x_384 = lean_ctor_get(x_301, 0); -x_385 = lean_ctor_get(x_301, 1); +x_384 = lean_ctor_get(x_325, 0); +x_385 = lean_ctor_get(x_325, 1); lean_inc(x_385); lean_inc(x_384); -lean_dec(x_301); +lean_dec(x_325); x_386 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_386, 0, x_384); lean_ctor_set(x_386, 1, x_385); @@ -4350,19 +4414,19 @@ return x_386; else { uint8_t x_387; -x_387 = !lean_is_exclusive(x_295); +x_387 = !lean_is_exclusive(x_319); if (x_387 == 0) { -return x_295; +return x_319; } else { lean_object* x_388; lean_object* x_389; lean_object* x_390; -x_388 = lean_ctor_get(x_295, 0); -x_389 = lean_ctor_get(x_295, 1); +x_388 = lean_ctor_get(x_319, 0); +x_389 = lean_ctor_get(x_319, 1); lean_inc(x_389); lean_inc(x_388); -lean_dec(x_295); +lean_dec(x_319); x_390 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_390, 0, x_388); lean_ctor_set(x_390, 1, x_389); @@ -4373,19 +4437,19 @@ return x_390; else { uint8_t x_391; -x_391 = !lean_is_exclusive(x_292); +x_391 = !lean_is_exclusive(x_316); if (x_391 == 0) { -return x_292; +return x_316; } else { lean_object* x_392; lean_object* x_393; lean_object* x_394; -x_392 = lean_ctor_get(x_292, 0); -x_393 = lean_ctor_get(x_292, 1); +x_392 = lean_ctor_get(x_316, 0); +x_393 = lean_ctor_get(x_316, 1); lean_inc(x_393); lean_inc(x_392); -lean_dec(x_292); +lean_dec(x_316); x_394 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_394, 0, x_392); lean_ctor_set(x_394, 1, x_393); @@ -4396,19 +4460,19 @@ return x_394; else { uint8_t x_395; -x_395 = !lean_is_exclusive(x_289); +x_395 = !lean_is_exclusive(x_313); if (x_395 == 0) { -return x_289; +return x_313; } else { lean_object* x_396; lean_object* x_397; lean_object* x_398; -x_396 = lean_ctor_get(x_289, 0); -x_397 = lean_ctor_get(x_289, 1); +x_396 = lean_ctor_get(x_313, 0); +x_397 = lean_ctor_get(x_313, 1); lean_inc(x_397); lean_inc(x_396); -lean_dec(x_289); +lean_dec(x_313); x_398 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_398, 0, x_396); lean_ctor_set(x_398, 1, x_397); @@ -4419,19 +4483,19 @@ return x_398; else { uint8_t x_399; -x_399 = !lean_is_exclusive(x_283); +x_399 = !lean_is_exclusive(x_307); if (x_399 == 0) { -return x_283; +return x_307; } else { lean_object* x_400; lean_object* x_401; lean_object* x_402; -x_400 = lean_ctor_get(x_283, 0); -x_401 = lean_ctor_get(x_283, 1); +x_400 = lean_ctor_get(x_307, 0); +x_401 = lean_ctor_get(x_307, 1); lean_inc(x_401); lean_inc(x_400); -lean_dec(x_283); +lean_dec(x_307); x_402 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_402, 0, x_400); lean_ctor_set(x_402, 1, x_401); @@ -4442,19 +4506,19 @@ return x_402; else { uint8_t x_403; -x_403 = !lean_is_exclusive(x_280); +x_403 = !lean_is_exclusive(x_304); if (x_403 == 0) { -return x_280; +return x_304; } else { lean_object* x_404; lean_object* x_405; lean_object* x_406; -x_404 = lean_ctor_get(x_280, 0); -x_405 = lean_ctor_get(x_280, 1); +x_404 = lean_ctor_get(x_304, 0); +x_405 = lean_ctor_get(x_304, 1); lean_inc(x_405); lean_inc(x_404); -lean_dec(x_280); +lean_dec(x_304); x_406 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_406, 0, x_404); lean_ctor_set(x_406, 1, x_405); @@ -4465,19 +4529,19 @@ return x_406; else { uint8_t x_407; -x_407 = !lean_is_exclusive(x_277); +x_407 = !lean_is_exclusive(x_301); if (x_407 == 0) { -return x_277; +return x_301; } else { lean_object* x_408; lean_object* x_409; lean_object* x_410; -x_408 = lean_ctor_get(x_277, 0); -x_409 = lean_ctor_get(x_277, 1); +x_408 = lean_ctor_get(x_301, 0); +x_409 = lean_ctor_get(x_301, 1); lean_inc(x_409); lean_inc(x_408); -lean_dec(x_277); +lean_dec(x_301); x_410 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_410, 0, x_408); lean_ctor_set(x_410, 1, x_409); @@ -4488,19 +4552,19 @@ return x_410; else { uint8_t x_411; -x_411 = !lean_is_exclusive(x_271); +x_411 = !lean_is_exclusive(x_295); if (x_411 == 0) { -return x_271; +return x_295; } else { lean_object* x_412; lean_object* x_413; lean_object* x_414; -x_412 = lean_ctor_get(x_271, 0); -x_413 = lean_ctor_get(x_271, 1); +x_412 = lean_ctor_get(x_295, 0); +x_413 = lean_ctor_get(x_295, 1); lean_inc(x_413); lean_inc(x_412); -lean_dec(x_271); +lean_dec(x_295); x_414 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_414, 0, x_412); lean_ctor_set(x_414, 1, x_413); @@ -4511,19 +4575,19 @@ return x_414; else { uint8_t x_415; -x_415 = !lean_is_exclusive(x_268); +x_415 = !lean_is_exclusive(x_292); if (x_415 == 0) { -return x_268; +return x_292; } else { lean_object* x_416; lean_object* x_417; lean_object* x_418; -x_416 = lean_ctor_get(x_268, 0); -x_417 = lean_ctor_get(x_268, 1); +x_416 = lean_ctor_get(x_292, 0); +x_417 = lean_ctor_get(x_292, 1); lean_inc(x_417); lean_inc(x_416); -lean_dec(x_268); +lean_dec(x_292); x_418 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_418, 0, x_416); lean_ctor_set(x_418, 1, x_417); @@ -4534,19 +4598,19 @@ return x_418; else { uint8_t x_419; -x_419 = !lean_is_exclusive(x_265); +x_419 = !lean_is_exclusive(x_289); if (x_419 == 0) { -return x_265; +return x_289; } else { lean_object* x_420; lean_object* x_421; lean_object* x_422; -x_420 = lean_ctor_get(x_265, 0); -x_421 = lean_ctor_get(x_265, 1); +x_420 = lean_ctor_get(x_289, 0); +x_421 = lean_ctor_get(x_289, 1); lean_inc(x_421); lean_inc(x_420); -lean_dec(x_265); +lean_dec(x_289); x_422 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_422, 0, x_420); lean_ctor_set(x_422, 1, x_421); @@ -4557,19 +4621,19 @@ return x_422; else { uint8_t x_423; -x_423 = !lean_is_exclusive(x_259); +x_423 = !lean_is_exclusive(x_283); if (x_423 == 0) { -return x_259; +return x_283; } else { lean_object* x_424; lean_object* x_425; lean_object* x_426; -x_424 = lean_ctor_get(x_259, 0); -x_425 = lean_ctor_get(x_259, 1); +x_424 = lean_ctor_get(x_283, 0); +x_425 = lean_ctor_get(x_283, 1); lean_inc(x_425); lean_inc(x_424); -lean_dec(x_259); +lean_dec(x_283); x_426 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_426, 0, x_424); lean_ctor_set(x_426, 1, x_425); @@ -4580,19 +4644,19 @@ return x_426; else { uint8_t x_427; -x_427 = !lean_is_exclusive(x_256); +x_427 = !lean_is_exclusive(x_280); if (x_427 == 0) { -return x_256; +return x_280; } else { lean_object* x_428; lean_object* x_429; lean_object* x_430; -x_428 = lean_ctor_get(x_256, 0); -x_429 = lean_ctor_get(x_256, 1); +x_428 = lean_ctor_get(x_280, 0); +x_429 = lean_ctor_get(x_280, 1); lean_inc(x_429); lean_inc(x_428); -lean_dec(x_256); +lean_dec(x_280); x_430 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_430, 0, x_428); lean_ctor_set(x_430, 1, x_429); @@ -4603,19 +4667,19 @@ return x_430; else { uint8_t x_431; -x_431 = !lean_is_exclusive(x_253); +x_431 = !lean_is_exclusive(x_277); if (x_431 == 0) { -return x_253; +return x_277; } else { lean_object* x_432; lean_object* x_433; lean_object* x_434; -x_432 = lean_ctor_get(x_253, 0); -x_433 = lean_ctor_get(x_253, 1); +x_432 = lean_ctor_get(x_277, 0); +x_433 = lean_ctor_get(x_277, 1); lean_inc(x_433); lean_inc(x_432); -lean_dec(x_253); +lean_dec(x_277); x_434 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_434, 0, x_432); lean_ctor_set(x_434, 1, x_433); @@ -4626,19 +4690,19 @@ return x_434; else { uint8_t x_435; -x_435 = !lean_is_exclusive(x_246); +x_435 = !lean_is_exclusive(x_271); if (x_435 == 0) { -return x_246; +return x_271; } else { lean_object* x_436; lean_object* x_437; lean_object* x_438; -x_436 = lean_ctor_get(x_246, 0); -x_437 = lean_ctor_get(x_246, 1); +x_436 = lean_ctor_get(x_271, 0); +x_437 = lean_ctor_get(x_271, 1); lean_inc(x_437); lean_inc(x_436); -lean_dec(x_246); +lean_dec(x_271); x_438 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_438, 0, x_436); lean_ctor_set(x_438, 1, x_437); @@ -4649,19 +4713,19 @@ return x_438; else { uint8_t x_439; -x_439 = !lean_is_exclusive(x_243); +x_439 = !lean_is_exclusive(x_268); if (x_439 == 0) { -return x_243; +return x_268; } else { lean_object* x_440; lean_object* x_441; lean_object* x_442; -x_440 = lean_ctor_get(x_243, 0); -x_441 = lean_ctor_get(x_243, 1); +x_440 = lean_ctor_get(x_268, 0); +x_441 = lean_ctor_get(x_268, 1); lean_inc(x_441); lean_inc(x_440); -lean_dec(x_243); +lean_dec(x_268); x_442 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_442, 0, x_440); lean_ctor_set(x_442, 1, x_441); @@ -4672,19 +4736,19 @@ return x_442; else { uint8_t x_443; -x_443 = !lean_is_exclusive(x_240); +x_443 = !lean_is_exclusive(x_265); if (x_443 == 0) { -return x_240; +return x_265; } else { lean_object* x_444; lean_object* x_445; lean_object* x_446; -x_444 = lean_ctor_get(x_240, 0); -x_445 = lean_ctor_get(x_240, 1); +x_444 = lean_ctor_get(x_265, 0); +x_445 = lean_ctor_get(x_265, 1); lean_inc(x_445); lean_inc(x_444); -lean_dec(x_240); +lean_dec(x_265); x_446 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_446, 0, x_444); lean_ctor_set(x_446, 1, x_445); @@ -4695,19 +4759,19 @@ return x_446; else { uint8_t x_447; -x_447 = !lean_is_exclusive(x_234); +x_447 = !lean_is_exclusive(x_259); if (x_447 == 0) { -return x_234; +return x_259; } else { lean_object* x_448; lean_object* x_449; lean_object* x_450; -x_448 = lean_ctor_get(x_234, 0); -x_449 = lean_ctor_get(x_234, 1); +x_448 = lean_ctor_get(x_259, 0); +x_449 = lean_ctor_get(x_259, 1); lean_inc(x_449); lean_inc(x_448); -lean_dec(x_234); +lean_dec(x_259); x_450 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_450, 0, x_448); lean_ctor_set(x_450, 1, x_449); @@ -4718,19 +4782,19 @@ return x_450; else { uint8_t x_451; -x_451 = !lean_is_exclusive(x_231); +x_451 = !lean_is_exclusive(x_256); if (x_451 == 0) { -return x_231; +return x_256; } else { lean_object* x_452; lean_object* x_453; lean_object* x_454; -x_452 = lean_ctor_get(x_231, 0); -x_453 = lean_ctor_get(x_231, 1); +x_452 = lean_ctor_get(x_256, 0); +x_453 = lean_ctor_get(x_256, 1); lean_inc(x_453); lean_inc(x_452); -lean_dec(x_231); +lean_dec(x_256); x_454 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_454, 0, x_452); lean_ctor_set(x_454, 1, x_453); @@ -4741,19 +4805,19 @@ return x_454; else { uint8_t x_455; -x_455 = !lean_is_exclusive(x_228); +x_455 = !lean_is_exclusive(x_253); if (x_455 == 0) { -return x_228; +return x_253; } else { lean_object* x_456; lean_object* x_457; lean_object* x_458; -x_456 = lean_ctor_get(x_228, 0); -x_457 = lean_ctor_get(x_228, 1); +x_456 = lean_ctor_get(x_253, 0); +x_457 = lean_ctor_get(x_253, 1); lean_inc(x_457); lean_inc(x_456); -lean_dec(x_228); +lean_dec(x_253); x_458 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_458, 0, x_456); lean_ctor_set(x_458, 1, x_457); @@ -4764,19 +4828,19 @@ return x_458; else { uint8_t x_459; -x_459 = !lean_is_exclusive(x_222); +x_459 = !lean_is_exclusive(x_246); if (x_459 == 0) { -return x_222; +return x_246; } else { lean_object* x_460; lean_object* x_461; lean_object* x_462; -x_460 = lean_ctor_get(x_222, 0); -x_461 = lean_ctor_get(x_222, 1); +x_460 = lean_ctor_get(x_246, 0); +x_461 = lean_ctor_get(x_246, 1); lean_inc(x_461); lean_inc(x_460); -lean_dec(x_222); +lean_dec(x_246); x_462 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_462, 0, x_460); lean_ctor_set(x_462, 1, x_461); @@ -4787,19 +4851,19 @@ return x_462; else { uint8_t x_463; -x_463 = !lean_is_exclusive(x_219); +x_463 = !lean_is_exclusive(x_243); if (x_463 == 0) { -return x_219; +return x_243; } else { lean_object* x_464; lean_object* x_465; lean_object* x_466; -x_464 = lean_ctor_get(x_219, 0); -x_465 = lean_ctor_get(x_219, 1); +x_464 = lean_ctor_get(x_243, 0); +x_465 = lean_ctor_get(x_243, 1); lean_inc(x_465); lean_inc(x_464); -lean_dec(x_219); +lean_dec(x_243); x_466 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_466, 0, x_464); lean_ctor_set(x_466, 1, x_465); @@ -4810,19 +4874,19 @@ return x_466; else { uint8_t x_467; -x_467 = !lean_is_exclusive(x_216); +x_467 = !lean_is_exclusive(x_240); if (x_467 == 0) { -return x_216; +return x_240; } else { lean_object* x_468; lean_object* x_469; lean_object* x_470; -x_468 = lean_ctor_get(x_216, 0); -x_469 = lean_ctor_get(x_216, 1); +x_468 = lean_ctor_get(x_240, 0); +x_469 = lean_ctor_get(x_240, 1); lean_inc(x_469); lean_inc(x_468); -lean_dec(x_216); +lean_dec(x_240); x_470 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_470, 0, x_468); lean_ctor_set(x_470, 1, x_469); @@ -4833,19 +4897,19 @@ return x_470; else { uint8_t x_471; -x_471 = !lean_is_exclusive(x_210); +x_471 = !lean_is_exclusive(x_234); if (x_471 == 0) { -return x_210; +return x_234; } else { lean_object* x_472; lean_object* x_473; lean_object* x_474; -x_472 = lean_ctor_get(x_210, 0); -x_473 = lean_ctor_get(x_210, 1); +x_472 = lean_ctor_get(x_234, 0); +x_473 = lean_ctor_get(x_234, 1); lean_inc(x_473); lean_inc(x_472); -lean_dec(x_210); +lean_dec(x_234); x_474 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_474, 0, x_472); lean_ctor_set(x_474, 1, x_473); @@ -4856,19 +4920,19 @@ return x_474; else { uint8_t x_475; -x_475 = !lean_is_exclusive(x_207); +x_475 = !lean_is_exclusive(x_231); if (x_475 == 0) { -return x_207; +return x_231; } else { lean_object* x_476; lean_object* x_477; lean_object* x_478; -x_476 = lean_ctor_get(x_207, 0); -x_477 = lean_ctor_get(x_207, 1); +x_476 = lean_ctor_get(x_231, 0); +x_477 = lean_ctor_get(x_231, 1); lean_inc(x_477); lean_inc(x_476); -lean_dec(x_207); +lean_dec(x_231); x_478 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_478, 0, x_476); lean_ctor_set(x_478, 1, x_477); @@ -4879,19 +4943,19 @@ return x_478; else { uint8_t x_479; -x_479 = !lean_is_exclusive(x_204); +x_479 = !lean_is_exclusive(x_228); if (x_479 == 0) { -return x_204; +return x_228; } else { lean_object* x_480; lean_object* x_481; lean_object* x_482; -x_480 = lean_ctor_get(x_204, 0); -x_481 = lean_ctor_get(x_204, 1); +x_480 = lean_ctor_get(x_228, 0); +x_481 = lean_ctor_get(x_228, 1); lean_inc(x_481); lean_inc(x_480); -lean_dec(x_204); +lean_dec(x_228); x_482 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_482, 0, x_480); lean_ctor_set(x_482, 1, x_481); @@ -4902,19 +4966,19 @@ return x_482; else { uint8_t x_483; -x_483 = !lean_is_exclusive(x_198); +x_483 = !lean_is_exclusive(x_222); if (x_483 == 0) { -return x_198; +return x_222; } else { lean_object* x_484; lean_object* x_485; lean_object* x_486; -x_484 = lean_ctor_get(x_198, 0); -x_485 = lean_ctor_get(x_198, 1); +x_484 = lean_ctor_get(x_222, 0); +x_485 = lean_ctor_get(x_222, 1); lean_inc(x_485); lean_inc(x_484); -lean_dec(x_198); +lean_dec(x_222); x_486 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_486, 0, x_484); lean_ctor_set(x_486, 1, x_485); @@ -4925,19 +4989,19 @@ return x_486; else { uint8_t x_487; -x_487 = !lean_is_exclusive(x_195); +x_487 = !lean_is_exclusive(x_219); if (x_487 == 0) { -return x_195; +return x_219; } else { lean_object* x_488; lean_object* x_489; lean_object* x_490; -x_488 = lean_ctor_get(x_195, 0); -x_489 = lean_ctor_get(x_195, 1); +x_488 = lean_ctor_get(x_219, 0); +x_489 = lean_ctor_get(x_219, 1); lean_inc(x_489); lean_inc(x_488); -lean_dec(x_195); +lean_dec(x_219); x_490 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_490, 0, x_488); lean_ctor_set(x_490, 1, x_489); @@ -4948,19 +5012,19 @@ return x_490; else { uint8_t x_491; -x_491 = !lean_is_exclusive(x_192); +x_491 = !lean_is_exclusive(x_216); if (x_491 == 0) { -return x_192; +return x_216; } else { lean_object* x_492; lean_object* x_493; lean_object* x_494; -x_492 = lean_ctor_get(x_192, 0); -x_493 = lean_ctor_get(x_192, 1); +x_492 = lean_ctor_get(x_216, 0); +x_493 = lean_ctor_get(x_216, 1); lean_inc(x_493); lean_inc(x_492); -lean_dec(x_192); +lean_dec(x_216); x_494 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_494, 0, x_492); lean_ctor_set(x_494, 1, x_493); @@ -4971,19 +5035,19 @@ return x_494; else { uint8_t x_495; -x_495 = !lean_is_exclusive(x_184); +x_495 = !lean_is_exclusive(x_210); if (x_495 == 0) { -return x_184; +return x_210; } else { lean_object* x_496; lean_object* x_497; lean_object* x_498; -x_496 = lean_ctor_get(x_184, 0); -x_497 = lean_ctor_get(x_184, 1); +x_496 = lean_ctor_get(x_210, 0); +x_497 = lean_ctor_get(x_210, 1); lean_inc(x_497); lean_inc(x_496); -lean_dec(x_184); +lean_dec(x_210); x_498 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_498, 0, x_496); lean_ctor_set(x_498, 1, x_497); @@ -4994,19 +5058,19 @@ return x_498; else { uint8_t x_499; -x_499 = !lean_is_exclusive(x_181); +x_499 = !lean_is_exclusive(x_207); if (x_499 == 0) { -return x_181; +return x_207; } else { lean_object* x_500; lean_object* x_501; lean_object* x_502; -x_500 = lean_ctor_get(x_181, 0); -x_501 = lean_ctor_get(x_181, 1); +x_500 = lean_ctor_get(x_207, 0); +x_501 = lean_ctor_get(x_207, 1); lean_inc(x_501); lean_inc(x_500); -lean_dec(x_181); +lean_dec(x_207); x_502 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_502, 0, x_500); lean_ctor_set(x_502, 1, x_501); @@ -5017,19 +5081,19 @@ return x_502; else { uint8_t x_503; -x_503 = !lean_is_exclusive(x_178); +x_503 = !lean_is_exclusive(x_204); if (x_503 == 0) { -return x_178; +return x_204; } else { lean_object* x_504; lean_object* x_505; lean_object* x_506; -x_504 = lean_ctor_get(x_178, 0); -x_505 = lean_ctor_get(x_178, 1); +x_504 = lean_ctor_get(x_204, 0); +x_505 = lean_ctor_get(x_204, 1); lean_inc(x_505); lean_inc(x_504); -lean_dec(x_178); +lean_dec(x_204); x_506 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_506, 0, x_504); lean_ctor_set(x_506, 1, x_505); @@ -5040,19 +5104,19 @@ return x_506; else { uint8_t x_507; -x_507 = !lean_is_exclusive(x_172); +x_507 = !lean_is_exclusive(x_198); if (x_507 == 0) { -return x_172; +return x_198; } else { lean_object* x_508; lean_object* x_509; lean_object* x_510; -x_508 = lean_ctor_get(x_172, 0); -x_509 = lean_ctor_get(x_172, 1); +x_508 = lean_ctor_get(x_198, 0); +x_509 = lean_ctor_get(x_198, 1); lean_inc(x_509); lean_inc(x_508); -lean_dec(x_172); +lean_dec(x_198); x_510 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_510, 0, x_508); lean_ctor_set(x_510, 1, x_509); @@ -5063,19 +5127,19 @@ return x_510; else { uint8_t x_511; -x_511 = !lean_is_exclusive(x_169); +x_511 = !lean_is_exclusive(x_195); if (x_511 == 0) { -return x_169; +return x_195; } else { lean_object* x_512; lean_object* x_513; lean_object* x_514; -x_512 = lean_ctor_get(x_169, 0); -x_513 = lean_ctor_get(x_169, 1); +x_512 = lean_ctor_get(x_195, 0); +x_513 = lean_ctor_get(x_195, 1); lean_inc(x_513); lean_inc(x_512); -lean_dec(x_169); +lean_dec(x_195); x_514 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_514, 0, x_512); lean_ctor_set(x_514, 1, x_513); @@ -5086,19 +5150,19 @@ return x_514; else { uint8_t x_515; -x_515 = !lean_is_exclusive(x_166); +x_515 = !lean_is_exclusive(x_192); if (x_515 == 0) { -return x_166; +return x_192; } else { lean_object* x_516; lean_object* x_517; lean_object* x_518; -x_516 = lean_ctor_get(x_166, 0); -x_517 = lean_ctor_get(x_166, 1); +x_516 = lean_ctor_get(x_192, 0); +x_517 = lean_ctor_get(x_192, 1); lean_inc(x_517); lean_inc(x_516); -lean_dec(x_166); +lean_dec(x_192); x_518 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_518, 0, x_516); lean_ctor_set(x_518, 1, x_517); @@ -5109,19 +5173,19 @@ return x_518; else { uint8_t x_519; -x_519 = !lean_is_exclusive(x_160); +x_519 = !lean_is_exclusive(x_184); if (x_519 == 0) { -return x_160; +return x_184; } else { lean_object* x_520; lean_object* x_521; lean_object* x_522; -x_520 = lean_ctor_get(x_160, 0); -x_521 = lean_ctor_get(x_160, 1); +x_520 = lean_ctor_get(x_184, 0); +x_521 = lean_ctor_get(x_184, 1); lean_inc(x_521); lean_inc(x_520); -lean_dec(x_160); +lean_dec(x_184); x_522 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_522, 0, x_520); lean_ctor_set(x_522, 1, x_521); @@ -5132,19 +5196,19 @@ return x_522; else { uint8_t x_523; -x_523 = !lean_is_exclusive(x_157); +x_523 = !lean_is_exclusive(x_181); if (x_523 == 0) { -return x_157; +return x_181; } else { lean_object* x_524; lean_object* x_525; lean_object* x_526; -x_524 = lean_ctor_get(x_157, 0); -x_525 = lean_ctor_get(x_157, 1); +x_524 = lean_ctor_get(x_181, 0); +x_525 = lean_ctor_get(x_181, 1); lean_inc(x_525); lean_inc(x_524); -lean_dec(x_157); +lean_dec(x_181); x_526 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_526, 0, x_524); lean_ctor_set(x_526, 1, x_525); @@ -5155,19 +5219,19 @@ return x_526; else { uint8_t x_527; -x_527 = !lean_is_exclusive(x_154); +x_527 = !lean_is_exclusive(x_178); if (x_527 == 0) { -return x_154; +return x_178; } else { lean_object* x_528; lean_object* x_529; lean_object* x_530; -x_528 = lean_ctor_get(x_154, 0); -x_529 = lean_ctor_get(x_154, 1); +x_528 = lean_ctor_get(x_178, 0); +x_529 = lean_ctor_get(x_178, 1); lean_inc(x_529); lean_inc(x_528); -lean_dec(x_154); +lean_dec(x_178); x_530 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_530, 0, x_528); lean_ctor_set(x_530, 1, x_529); @@ -5178,19 +5242,19 @@ return x_530; else { uint8_t x_531; -x_531 = !lean_is_exclusive(x_148); +x_531 = !lean_is_exclusive(x_172); if (x_531 == 0) { -return x_148; +return x_172; } else { lean_object* x_532; lean_object* x_533; lean_object* x_534; -x_532 = lean_ctor_get(x_148, 0); -x_533 = lean_ctor_get(x_148, 1); +x_532 = lean_ctor_get(x_172, 0); +x_533 = lean_ctor_get(x_172, 1); lean_inc(x_533); lean_inc(x_532); -lean_dec(x_148); +lean_dec(x_172); x_534 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_534, 0, x_532); lean_ctor_set(x_534, 1, x_533); @@ -5201,19 +5265,19 @@ return x_534; else { uint8_t x_535; -x_535 = !lean_is_exclusive(x_145); +x_535 = !lean_is_exclusive(x_169); if (x_535 == 0) { -return x_145; +return x_169; } else { lean_object* x_536; lean_object* x_537; lean_object* x_538; -x_536 = lean_ctor_get(x_145, 0); -x_537 = lean_ctor_get(x_145, 1); +x_536 = lean_ctor_get(x_169, 0); +x_537 = lean_ctor_get(x_169, 1); lean_inc(x_537); lean_inc(x_536); -lean_dec(x_145); +lean_dec(x_169); x_538 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_538, 0, x_536); lean_ctor_set(x_538, 1, x_537); @@ -5224,19 +5288,19 @@ return x_538; else { uint8_t x_539; -x_539 = !lean_is_exclusive(x_142); +x_539 = !lean_is_exclusive(x_166); if (x_539 == 0) { -return x_142; +return x_166; } else { lean_object* x_540; lean_object* x_541; lean_object* x_542; -x_540 = lean_ctor_get(x_142, 0); -x_541 = lean_ctor_get(x_142, 1); +x_540 = lean_ctor_get(x_166, 0); +x_541 = lean_ctor_get(x_166, 1); lean_inc(x_541); lean_inc(x_540); -lean_dec(x_142); +lean_dec(x_166); x_542 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_542, 0, x_540); lean_ctor_set(x_542, 1, x_541); @@ -5247,19 +5311,19 @@ return x_542; else { uint8_t x_543; -x_543 = !lean_is_exclusive(x_136); +x_543 = !lean_is_exclusive(x_160); if (x_543 == 0) { -return x_136; +return x_160; } else { lean_object* x_544; lean_object* x_545; lean_object* x_546; -x_544 = lean_ctor_get(x_136, 0); -x_545 = lean_ctor_get(x_136, 1); +x_544 = lean_ctor_get(x_160, 0); +x_545 = lean_ctor_get(x_160, 1); lean_inc(x_545); lean_inc(x_544); -lean_dec(x_136); +lean_dec(x_160); x_546 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_546, 0, x_544); lean_ctor_set(x_546, 1, x_545); @@ -5270,19 +5334,19 @@ return x_546; else { uint8_t x_547; -x_547 = !lean_is_exclusive(x_133); +x_547 = !lean_is_exclusive(x_157); if (x_547 == 0) { -return x_133; +return x_157; } else { lean_object* x_548; lean_object* x_549; lean_object* x_550; -x_548 = lean_ctor_get(x_133, 0); -x_549 = lean_ctor_get(x_133, 1); +x_548 = lean_ctor_get(x_157, 0); +x_549 = lean_ctor_get(x_157, 1); lean_inc(x_549); lean_inc(x_548); -lean_dec(x_133); +lean_dec(x_157); x_550 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_550, 0, x_548); lean_ctor_set(x_550, 1, x_549); @@ -5293,19 +5357,19 @@ return x_550; else { uint8_t x_551; -x_551 = !lean_is_exclusive(x_130); +x_551 = !lean_is_exclusive(x_154); if (x_551 == 0) { -return x_130; +return x_154; } else { lean_object* x_552; lean_object* x_553; lean_object* x_554; -x_552 = lean_ctor_get(x_130, 0); -x_553 = lean_ctor_get(x_130, 1); +x_552 = lean_ctor_get(x_154, 0); +x_553 = lean_ctor_get(x_154, 1); lean_inc(x_553); lean_inc(x_552); -lean_dec(x_130); +lean_dec(x_154); x_554 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_554, 0, x_552); lean_ctor_set(x_554, 1, x_553); @@ -5316,19 +5380,19 @@ return x_554; else { uint8_t x_555; -x_555 = !lean_is_exclusive(x_124); +x_555 = !lean_is_exclusive(x_148); if (x_555 == 0) { -return x_124; +return x_148; } else { lean_object* x_556; lean_object* x_557; lean_object* x_558; -x_556 = lean_ctor_get(x_124, 0); -x_557 = lean_ctor_get(x_124, 1); +x_556 = lean_ctor_get(x_148, 0); +x_557 = lean_ctor_get(x_148, 1); lean_inc(x_557); lean_inc(x_556); -lean_dec(x_124); +lean_dec(x_148); x_558 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_558, 0, x_556); lean_ctor_set(x_558, 1, x_557); @@ -5339,19 +5403,19 @@ return x_558; else { uint8_t x_559; -x_559 = !lean_is_exclusive(x_121); +x_559 = !lean_is_exclusive(x_145); if (x_559 == 0) { -return x_121; +return x_145; } else { lean_object* x_560; lean_object* x_561; lean_object* x_562; -x_560 = lean_ctor_get(x_121, 0); -x_561 = lean_ctor_get(x_121, 1); +x_560 = lean_ctor_get(x_145, 0); +x_561 = lean_ctor_get(x_145, 1); lean_inc(x_561); lean_inc(x_560); -lean_dec(x_121); +lean_dec(x_145); x_562 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_562, 0, x_560); lean_ctor_set(x_562, 1, x_561); @@ -5362,19 +5426,19 @@ return x_562; else { uint8_t x_563; -x_563 = !lean_is_exclusive(x_118); +x_563 = !lean_is_exclusive(x_142); if (x_563 == 0) { -return x_118; +return x_142; } else { lean_object* x_564; lean_object* x_565; lean_object* x_566; -x_564 = lean_ctor_get(x_118, 0); -x_565 = lean_ctor_get(x_118, 1); +x_564 = lean_ctor_get(x_142, 0); +x_565 = lean_ctor_get(x_142, 1); lean_inc(x_565); lean_inc(x_564); -lean_dec(x_118); +lean_dec(x_142); x_566 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_566, 0, x_564); lean_ctor_set(x_566, 1, x_565); @@ -5385,19 +5449,19 @@ return x_566; else { uint8_t x_567; -x_567 = !lean_is_exclusive(x_112); +x_567 = !lean_is_exclusive(x_136); if (x_567 == 0) { -return x_112; +return x_136; } else { lean_object* x_568; lean_object* x_569; lean_object* x_570; -x_568 = lean_ctor_get(x_112, 0); -x_569 = lean_ctor_get(x_112, 1); +x_568 = lean_ctor_get(x_136, 0); +x_569 = lean_ctor_get(x_136, 1); lean_inc(x_569); lean_inc(x_568); -lean_dec(x_112); +lean_dec(x_136); x_570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_570, 0, x_568); lean_ctor_set(x_570, 1, x_569); @@ -5408,19 +5472,19 @@ return x_570; else { uint8_t x_571; -x_571 = !lean_is_exclusive(x_109); +x_571 = !lean_is_exclusive(x_133); if (x_571 == 0) { -return x_109; +return x_133; } else { lean_object* x_572; lean_object* x_573; lean_object* x_574; -x_572 = lean_ctor_get(x_109, 0); -x_573 = lean_ctor_get(x_109, 1); +x_572 = lean_ctor_get(x_133, 0); +x_573 = lean_ctor_get(x_133, 1); lean_inc(x_573); lean_inc(x_572); -lean_dec(x_109); +lean_dec(x_133); x_574 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_574, 0, x_572); lean_ctor_set(x_574, 1, x_573); @@ -5431,19 +5495,19 @@ return x_574; else { uint8_t x_575; -x_575 = !lean_is_exclusive(x_106); +x_575 = !lean_is_exclusive(x_130); if (x_575 == 0) { -return x_106; +return x_130; } else { lean_object* x_576; lean_object* x_577; lean_object* x_578; -x_576 = lean_ctor_get(x_106, 0); -x_577 = lean_ctor_get(x_106, 1); +x_576 = lean_ctor_get(x_130, 0); +x_577 = lean_ctor_get(x_130, 1); lean_inc(x_577); lean_inc(x_576); -lean_dec(x_106); +lean_dec(x_130); x_578 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_578, 0, x_576); lean_ctor_set(x_578, 1, x_577); @@ -5454,19 +5518,19 @@ return x_578; else { uint8_t x_579; -x_579 = !lean_is_exclusive(x_100); +x_579 = !lean_is_exclusive(x_124); if (x_579 == 0) { -return x_100; +return x_124; } else { lean_object* x_580; lean_object* x_581; lean_object* x_582; -x_580 = lean_ctor_get(x_100, 0); -x_581 = lean_ctor_get(x_100, 1); +x_580 = lean_ctor_get(x_124, 0); +x_581 = lean_ctor_get(x_124, 1); lean_inc(x_581); lean_inc(x_580); -lean_dec(x_100); +lean_dec(x_124); x_582 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_582, 0, x_580); lean_ctor_set(x_582, 1, x_581); @@ -5477,19 +5541,19 @@ return x_582; else { uint8_t x_583; -x_583 = !lean_is_exclusive(x_97); +x_583 = !lean_is_exclusive(x_121); if (x_583 == 0) { -return x_97; +return x_121; } else { lean_object* x_584; lean_object* x_585; lean_object* x_586; -x_584 = lean_ctor_get(x_97, 0); -x_585 = lean_ctor_get(x_97, 1); +x_584 = lean_ctor_get(x_121, 0); +x_585 = lean_ctor_get(x_121, 1); lean_inc(x_585); lean_inc(x_584); -lean_dec(x_97); +lean_dec(x_121); x_586 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_586, 0, x_584); lean_ctor_set(x_586, 1, x_585); @@ -5500,19 +5564,19 @@ return x_586; else { uint8_t x_587; -x_587 = !lean_is_exclusive(x_94); +x_587 = !lean_is_exclusive(x_118); if (x_587 == 0) { -return x_94; +return x_118; } else { lean_object* x_588; lean_object* x_589; lean_object* x_590; -x_588 = lean_ctor_get(x_94, 0); -x_589 = lean_ctor_get(x_94, 1); +x_588 = lean_ctor_get(x_118, 0); +x_589 = lean_ctor_get(x_118, 1); lean_inc(x_589); lean_inc(x_588); -lean_dec(x_94); +lean_dec(x_118); x_590 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_590, 0, x_588); lean_ctor_set(x_590, 1, x_589); @@ -5523,19 +5587,19 @@ return x_590; else { uint8_t x_591; -x_591 = !lean_is_exclusive(x_88); +x_591 = !lean_is_exclusive(x_112); if (x_591 == 0) { -return x_88; +return x_112; } else { lean_object* x_592; lean_object* x_593; lean_object* x_594; -x_592 = lean_ctor_get(x_88, 0); -x_593 = lean_ctor_get(x_88, 1); +x_592 = lean_ctor_get(x_112, 0); +x_593 = lean_ctor_get(x_112, 1); lean_inc(x_593); lean_inc(x_592); -lean_dec(x_88); +lean_dec(x_112); x_594 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_594, 0, x_592); lean_ctor_set(x_594, 1, x_593); @@ -5546,19 +5610,19 @@ return x_594; else { uint8_t x_595; -x_595 = !lean_is_exclusive(x_85); +x_595 = !lean_is_exclusive(x_109); if (x_595 == 0) { -return x_85; +return x_109; } else { lean_object* x_596; lean_object* x_597; lean_object* x_598; -x_596 = lean_ctor_get(x_85, 0); -x_597 = lean_ctor_get(x_85, 1); +x_596 = lean_ctor_get(x_109, 0); +x_597 = lean_ctor_get(x_109, 1); lean_inc(x_597); lean_inc(x_596); -lean_dec(x_85); +lean_dec(x_109); x_598 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_598, 0, x_596); lean_ctor_set(x_598, 1, x_597); @@ -5569,19 +5633,19 @@ return x_598; else { uint8_t x_599; -x_599 = !lean_is_exclusive(x_82); +x_599 = !lean_is_exclusive(x_106); if (x_599 == 0) { -return x_82; +return x_106; } else { lean_object* x_600; lean_object* x_601; lean_object* x_602; -x_600 = lean_ctor_get(x_82, 0); -x_601 = lean_ctor_get(x_82, 1); +x_600 = lean_ctor_get(x_106, 0); +x_601 = lean_ctor_get(x_106, 1); lean_inc(x_601); lean_inc(x_600); -lean_dec(x_82); +lean_dec(x_106); x_602 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_602, 0, x_600); lean_ctor_set(x_602, 1, x_601); @@ -5592,19 +5656,19 @@ return x_602; else { uint8_t x_603; -x_603 = !lean_is_exclusive(x_76); +x_603 = !lean_is_exclusive(x_100); if (x_603 == 0) { -return x_76; +return x_100; } else { lean_object* x_604; lean_object* x_605; lean_object* x_606; -x_604 = lean_ctor_get(x_76, 0); -x_605 = lean_ctor_get(x_76, 1); +x_604 = lean_ctor_get(x_100, 0); +x_605 = lean_ctor_get(x_100, 1); lean_inc(x_605); lean_inc(x_604); -lean_dec(x_76); +lean_dec(x_100); x_606 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_606, 0, x_604); lean_ctor_set(x_606, 1, x_605); @@ -5615,19 +5679,19 @@ return x_606; else { uint8_t x_607; -x_607 = !lean_is_exclusive(x_73); +x_607 = !lean_is_exclusive(x_97); if (x_607 == 0) { -return x_73; +return x_97; } else { lean_object* x_608; lean_object* x_609; lean_object* x_610; -x_608 = lean_ctor_get(x_73, 0); -x_609 = lean_ctor_get(x_73, 1); +x_608 = lean_ctor_get(x_97, 0); +x_609 = lean_ctor_get(x_97, 1); lean_inc(x_609); lean_inc(x_608); -lean_dec(x_73); +lean_dec(x_97); x_610 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_610, 0, x_608); lean_ctor_set(x_610, 1, x_609); @@ -5638,19 +5702,19 @@ return x_610; else { uint8_t x_611; -x_611 = !lean_is_exclusive(x_70); +x_611 = !lean_is_exclusive(x_94); if (x_611 == 0) { -return x_70; +return x_94; } else { lean_object* x_612; lean_object* x_613; lean_object* x_614; -x_612 = lean_ctor_get(x_70, 0); -x_613 = lean_ctor_get(x_70, 1); +x_612 = lean_ctor_get(x_94, 0); +x_613 = lean_ctor_get(x_94, 1); lean_inc(x_613); lean_inc(x_612); -lean_dec(x_70); +lean_dec(x_94); x_614 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_614, 0, x_612); lean_ctor_set(x_614, 1, x_613); @@ -5661,19 +5725,19 @@ return x_614; else { uint8_t x_615; -x_615 = !lean_is_exclusive(x_64); +x_615 = !lean_is_exclusive(x_88); if (x_615 == 0) { -return x_64; +return x_88; } else { lean_object* x_616; lean_object* x_617; lean_object* x_618; -x_616 = lean_ctor_get(x_64, 0); -x_617 = lean_ctor_get(x_64, 1); +x_616 = lean_ctor_get(x_88, 0); +x_617 = lean_ctor_get(x_88, 1); lean_inc(x_617); lean_inc(x_616); -lean_dec(x_64); +lean_dec(x_88); x_618 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_618, 0, x_616); lean_ctor_set(x_618, 1, x_617); @@ -5684,19 +5748,19 @@ return x_618; else { uint8_t x_619; -x_619 = !lean_is_exclusive(x_61); +x_619 = !lean_is_exclusive(x_85); if (x_619 == 0) { -return x_61; +return x_85; } else { lean_object* x_620; lean_object* x_621; lean_object* x_622; -x_620 = lean_ctor_get(x_61, 0); -x_621 = lean_ctor_get(x_61, 1); +x_620 = lean_ctor_get(x_85, 0); +x_621 = lean_ctor_get(x_85, 1); lean_inc(x_621); lean_inc(x_620); -lean_dec(x_61); +lean_dec(x_85); x_622 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_622, 0, x_620); lean_ctor_set(x_622, 1, x_621); @@ -5707,19 +5771,19 @@ return x_622; else { uint8_t x_623; -x_623 = !lean_is_exclusive(x_58); +x_623 = !lean_is_exclusive(x_82); if (x_623 == 0) { -return x_58; +return x_82; } else { lean_object* x_624; lean_object* x_625; lean_object* x_626; -x_624 = lean_ctor_get(x_58, 0); -x_625 = lean_ctor_get(x_58, 1); +x_624 = lean_ctor_get(x_82, 0); +x_625 = lean_ctor_get(x_82, 1); lean_inc(x_625); lean_inc(x_624); -lean_dec(x_58); +lean_dec(x_82); x_626 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_626, 0, x_624); lean_ctor_set(x_626, 1, x_625); @@ -5730,19 +5794,19 @@ return x_626; else { uint8_t x_627; -x_627 = !lean_is_exclusive(x_52); +x_627 = !lean_is_exclusive(x_76); if (x_627 == 0) { -return x_52; +return x_76; } else { lean_object* x_628; lean_object* x_629; lean_object* x_630; -x_628 = lean_ctor_get(x_52, 0); -x_629 = lean_ctor_get(x_52, 1); +x_628 = lean_ctor_get(x_76, 0); +x_629 = lean_ctor_get(x_76, 1); lean_inc(x_629); lean_inc(x_628); -lean_dec(x_52); +lean_dec(x_76); x_630 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_630, 0, x_628); lean_ctor_set(x_630, 1, x_629); @@ -5753,19 +5817,19 @@ return x_630; else { uint8_t x_631; -x_631 = !lean_is_exclusive(x_49); +x_631 = !lean_is_exclusive(x_73); if (x_631 == 0) { -return x_49; +return x_73; } else { lean_object* x_632; lean_object* x_633; lean_object* x_634; -x_632 = lean_ctor_get(x_49, 0); -x_633 = lean_ctor_get(x_49, 1); +x_632 = lean_ctor_get(x_73, 0); +x_633 = lean_ctor_get(x_73, 1); lean_inc(x_633); lean_inc(x_632); -lean_dec(x_49); +lean_dec(x_73); x_634 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_634, 0, x_632); lean_ctor_set(x_634, 1, x_633); @@ -5776,19 +5840,19 @@ return x_634; else { uint8_t x_635; -x_635 = !lean_is_exclusive(x_46); +x_635 = !lean_is_exclusive(x_70); if (x_635 == 0) { -return x_46; +return x_70; } else { lean_object* x_636; lean_object* x_637; lean_object* x_638; -x_636 = lean_ctor_get(x_46, 0); -x_637 = lean_ctor_get(x_46, 1); +x_636 = lean_ctor_get(x_70, 0); +x_637 = lean_ctor_get(x_70, 1); lean_inc(x_637); lean_inc(x_636); -lean_dec(x_46); +lean_dec(x_70); x_638 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_638, 0, x_636); lean_ctor_set(x_638, 1, x_637); @@ -5799,19 +5863,19 @@ return x_638; else { uint8_t x_639; -x_639 = !lean_is_exclusive(x_39); +x_639 = !lean_is_exclusive(x_64); if (x_639 == 0) { -return x_39; +return x_64; } else { lean_object* x_640; lean_object* x_641; lean_object* x_642; -x_640 = lean_ctor_get(x_39, 0); -x_641 = lean_ctor_get(x_39, 1); +x_640 = lean_ctor_get(x_64, 0); +x_641 = lean_ctor_get(x_64, 1); lean_inc(x_641); lean_inc(x_640); -lean_dec(x_39); +lean_dec(x_64); x_642 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_642, 0, x_640); lean_ctor_set(x_642, 1, x_641); @@ -5822,19 +5886,19 @@ return x_642; else { uint8_t x_643; -x_643 = !lean_is_exclusive(x_36); +x_643 = !lean_is_exclusive(x_61); if (x_643 == 0) { -return x_36; +return x_61; } else { lean_object* x_644; lean_object* x_645; lean_object* x_646; -x_644 = lean_ctor_get(x_36, 0); -x_645 = lean_ctor_get(x_36, 1); +x_644 = lean_ctor_get(x_61, 0); +x_645 = lean_ctor_get(x_61, 1); lean_inc(x_645); lean_inc(x_644); -lean_dec(x_36); +lean_dec(x_61); x_646 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_646, 0, x_644); lean_ctor_set(x_646, 1, x_645); @@ -5845,19 +5909,19 @@ return x_646; else { uint8_t x_647; -x_647 = !lean_is_exclusive(x_33); +x_647 = !lean_is_exclusive(x_58); if (x_647 == 0) { -return x_33; +return x_58; } else { lean_object* x_648; lean_object* x_649; lean_object* x_650; -x_648 = lean_ctor_get(x_33, 0); -x_649 = lean_ctor_get(x_33, 1); +x_648 = lean_ctor_get(x_58, 0); +x_649 = lean_ctor_get(x_58, 1); lean_inc(x_649); lean_inc(x_648); -lean_dec(x_33); +lean_dec(x_58); x_650 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_650, 0, x_648); lean_ctor_set(x_650, 1, x_649); @@ -5868,19 +5932,19 @@ return x_650; else { uint8_t x_651; -x_651 = !lean_is_exclusive(x_27); +x_651 = !lean_is_exclusive(x_52); if (x_651 == 0) { -return x_27; +return x_52; } else { lean_object* x_652; lean_object* x_653; lean_object* x_654; -x_652 = lean_ctor_get(x_27, 0); -x_653 = lean_ctor_get(x_27, 1); +x_652 = lean_ctor_get(x_52, 0); +x_653 = lean_ctor_get(x_52, 1); lean_inc(x_653); lean_inc(x_652); -lean_dec(x_27); +lean_dec(x_52); x_654 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_654, 0, x_652); lean_ctor_set(x_654, 1, x_653); @@ -5891,19 +5955,19 @@ return x_654; else { uint8_t x_655; -x_655 = !lean_is_exclusive(x_24); +x_655 = !lean_is_exclusive(x_49); if (x_655 == 0) { -return x_24; +return x_49; } else { lean_object* x_656; lean_object* x_657; lean_object* x_658; -x_656 = lean_ctor_get(x_24, 0); -x_657 = lean_ctor_get(x_24, 1); +x_656 = lean_ctor_get(x_49, 0); +x_657 = lean_ctor_get(x_49, 1); lean_inc(x_657); lean_inc(x_656); -lean_dec(x_24); +lean_dec(x_49); x_658 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_658, 0, x_656); lean_ctor_set(x_658, 1, x_657); @@ -5914,19 +5978,19 @@ return x_658; else { uint8_t x_659; -x_659 = !lean_is_exclusive(x_21); +x_659 = !lean_is_exclusive(x_46); if (x_659 == 0) { -return x_21; +return x_46; } else { lean_object* x_660; lean_object* x_661; lean_object* x_662; -x_660 = lean_ctor_get(x_21, 0); -x_661 = lean_ctor_get(x_21, 1); +x_660 = lean_ctor_get(x_46, 0); +x_661 = lean_ctor_get(x_46, 1); lean_inc(x_661); lean_inc(x_660); -lean_dec(x_21); +lean_dec(x_46); x_662 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_662, 0, x_660); lean_ctor_set(x_662, 1, x_661); @@ -5937,19 +6001,19 @@ return x_662; else { uint8_t x_663; -x_663 = !lean_is_exclusive(x_15); +x_663 = !lean_is_exclusive(x_39); if (x_663 == 0) { -return x_15; +return x_39; } else { lean_object* x_664; lean_object* x_665; lean_object* x_666; -x_664 = lean_ctor_get(x_15, 0); -x_665 = lean_ctor_get(x_15, 1); +x_664 = lean_ctor_get(x_39, 0); +x_665 = lean_ctor_get(x_39, 1); lean_inc(x_665); lean_inc(x_664); -lean_dec(x_15); +lean_dec(x_39); x_666 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_666, 0, x_664); lean_ctor_set(x_666, 1, x_665); @@ -5960,19 +6024,19 @@ return x_666; else { uint8_t x_667; -x_667 = !lean_is_exclusive(x_11); +x_667 = !lean_is_exclusive(x_36); if (x_667 == 0) { -return x_11; +return x_36; } else { lean_object* x_668; lean_object* x_669; lean_object* x_670; -x_668 = lean_ctor_get(x_11, 0); -x_669 = lean_ctor_get(x_11, 1); +x_668 = lean_ctor_get(x_36, 0); +x_669 = lean_ctor_get(x_36, 1); lean_inc(x_669); lean_inc(x_668); -lean_dec(x_11); +lean_dec(x_36); x_670 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_670, 0, x_668); lean_ctor_set(x_670, 1, x_669); @@ -5983,23 +6047,161 @@ return x_670; else { uint8_t x_671; -x_671 = !lean_is_exclusive(x_7); +x_671 = !lean_is_exclusive(x_33); if (x_671 == 0) { +return x_33; +} +else +{ +lean_object* x_672; lean_object* x_673; lean_object* x_674; +x_672 = lean_ctor_get(x_33, 0); +x_673 = lean_ctor_get(x_33, 1); +lean_inc(x_673); +lean_inc(x_672); +lean_dec(x_33); +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_672); +lean_ctor_set(x_674, 1, x_673); +return x_674; +} +} +} +else +{ +uint8_t x_675; +x_675 = !lean_is_exclusive(x_27); +if (x_675 == 0) +{ +return x_27; +} +else +{ +lean_object* x_676; lean_object* x_677; lean_object* x_678; +x_676 = lean_ctor_get(x_27, 0); +x_677 = lean_ctor_get(x_27, 1); +lean_inc(x_677); +lean_inc(x_676); +lean_dec(x_27); +x_678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_678, 0, x_676); +lean_ctor_set(x_678, 1, x_677); +return x_678; +} +} +} +else +{ +uint8_t x_679; +x_679 = !lean_is_exclusive(x_24); +if (x_679 == 0) +{ +return x_24; +} +else +{ +lean_object* x_680; lean_object* x_681; lean_object* x_682; +x_680 = lean_ctor_get(x_24, 0); +x_681 = lean_ctor_get(x_24, 1); +lean_inc(x_681); +lean_inc(x_680); +lean_dec(x_24); +x_682 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_682, 0, x_680); +lean_ctor_set(x_682, 1, x_681); +return x_682; +} +} +} +else +{ +uint8_t x_683; +x_683 = !lean_is_exclusive(x_21); +if (x_683 == 0) +{ +return x_21; +} +else +{ +lean_object* x_684; lean_object* x_685; lean_object* x_686; +x_684 = lean_ctor_get(x_21, 0); +x_685 = lean_ctor_get(x_21, 1); +lean_inc(x_685); +lean_inc(x_684); +lean_dec(x_21); +x_686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_686, 0, x_684); +lean_ctor_set(x_686, 1, x_685); +return x_686; +} +} +} +else +{ +uint8_t x_687; +x_687 = !lean_is_exclusive(x_15); +if (x_687 == 0) +{ +return x_15; +} +else +{ +lean_object* x_688; lean_object* x_689; lean_object* x_690; +x_688 = lean_ctor_get(x_15, 0); +x_689 = lean_ctor_get(x_15, 1); +lean_inc(x_689); +lean_inc(x_688); +lean_dec(x_15); +x_690 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_690, 0, x_688); +lean_ctor_set(x_690, 1, x_689); +return x_690; +} +} +} +else +{ +uint8_t x_691; +x_691 = !lean_is_exclusive(x_11); +if (x_691 == 0) +{ +return x_11; +} +else +{ +lean_object* x_692; lean_object* x_693; lean_object* x_694; +x_692 = lean_ctor_get(x_11, 0); +x_693 = lean_ctor_get(x_11, 1); +lean_inc(x_693); +lean_inc(x_692); +lean_dec(x_11); +x_694 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_694, 0, x_692); +lean_ctor_set(x_694, 1, x_693); +return x_694; +} +} +} +else +{ +uint8_t x_695; +x_695 = !lean_is_exclusive(x_7); +if (x_695 == 0) +{ return x_7; } else { -lean_object* x_672; lean_object* x_673; lean_object* x_674; -x_672 = lean_ctor_get(x_7, 0); -x_673 = lean_ctor_get(x_7, 1); -lean_inc(x_673); -lean_inc(x_672); +lean_object* x_696; lean_object* x_697; lean_object* x_698; +x_696 = lean_ctor_get(x_7, 0); +x_697 = lean_ctor_get(x_7, 1); +lean_inc(x_697); +lean_inc(x_696); lean_dec(x_7); -x_674 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_674, 0, x_672); -lean_ctor_set(x_674, 1, x_673); -return x_674; +x_698 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_698, 0, x_696); +lean_ctor_set(x_698, 1, x_697); +return x_698; } } } @@ -9177,6 +9379,26 @@ l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__298 = _init_l_Lean_Pa lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__298); l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299(); lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__299); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__300); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__301); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__302); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__303); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__304); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__305); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__306 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__306(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__306); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__307); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__308 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__308(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__308); +l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309 = _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8____closed__309); if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_8_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Parser/Basic.c b/stage0/stdlib/Lean/Parser/Basic.c index 520d903764..a4fab08741 100644 --- a/stage0/stdlib/Lean/Parser/Basic.c +++ b/stage0/stdlib/Lean/Parser/Basic.c @@ -15,10 +15,11 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__1___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkPrec(lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_binNumberFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkWsBefore___elambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13; LEAN_EXPORT uint8_t l_Lean_Parser_isQuotableCharDefault(uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_keepLatest(lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); @@ -26,29 +27,30 @@ static lean_object* l_Lean_Parser_categoryParserFn___closed__1; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Char_isDigit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_orelseFnCore___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_TokenMap_instEmptyCollectionTokenMap(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedParserCategory; static lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkColEq(lean_object*); static lean_object* l_Lean_Parser_sepByElemParser___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_checkNoImmediateColon___elambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__7(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_OrElseOnAntiquotBehavior_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612_(uint8_t, uint8_t); +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_quotedCharFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_takeUntilFn___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_keepTop(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__4(lean_object*); static lean_object* l_Lean_Parser_nameLitFn___closed__3; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12; uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_identFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_pushNone; LEAN_EXPORT lean_object* l_Lean_Parser_runLongestMatchParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__3; @@ -75,13 +77,14 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_forArgsM___s LEAN_EXPORT lean_object* l_Lean_Parser_checkColGt___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_errorAtSavedPos___elambda__1(lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_withoutInfo___elambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_skip___elambda__1___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_LeadingIdentBehavior_toCtorIdx___boxed(lean_object*); static lean_object* l_Lean_Parser_invalidLongestMatchParser___closed__1; -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11; static lean_object* l_Lean_Parser_strLitFnAux___closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_instBEqRecoveryContext; +static lean_object* l_Lean_Parser_instReprRecoveryContext___closed__1; static lean_object* l_Lean_Parser_mkAntiquot___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_leadingParserAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -89,13 +92,13 @@ LEAN_EXPORT lean_object* l_Lean_Parser_manyAux___lambda__3(lean_object*, lean_ob static lean_object* l_Lean_Parser_stringGapFn___closed__1; LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_isToken(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAtomicInfo___closed__1; -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8; static lean_object* l_Lean_Parser_TokenMap_instForInTokenMapProdNameList___closed__2; static lean_object* l_Lean_Parser_stringGapFn___closed__3; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__7___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_symbolNoAntiquot___boxed(lean_object*); static lean_object* l_Lean_Parser_charLitFnAux___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_LeadingIdentBehavior_toCtorIdx(uint8_t); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10; static lean_object* l_Lean_Parser_dbgTraceStateFn___closed__3; static lean_object* l_Lean_Parser_decimalNumberFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1(lean_object*); @@ -134,10 +137,12 @@ LEAN_EXPORT uint8_t l_Lean_Parser_binNumberFn___lambda__1(uint32_t); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_withPositionAfterLinebreak___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_instBEqRecoveryContext___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_identFnAux_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_quotedStringFn(lean_object*, lean_object*); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__7; +LEAN_EXPORT lean_object* l_Lean_Parser_recover(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__11; @@ -150,11 +155,11 @@ LEAN_EXPORT lean_object* l_Lean_Parser_categoryParser___lambda__1(lean_object*, LEAN_EXPORT lean_object* l_Lean_Parser_mkIdResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_hexDigitFn___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____boxed(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Parser_checkWsBeforeFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_fieldIdx___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1NoAntiquot(lean_object*, lean_object*, uint8_t); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_mkAtomicInfo___elambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkStackTop___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_identFn___closed__2; @@ -167,7 +172,7 @@ static lean_object* l_Lean_Parser_unicodeSymbolFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1NoAntiquot___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__3___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgsM___at_Lean_Syntax_forArgsM___spec__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_epsilonInfo___elambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_fieldIdxFn(lean_object*, lean_object*); @@ -177,10 +182,12 @@ static lean_object* l_Lean_Parser_skip___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgs___spec__2___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_leadingParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_instReprRecoveryContext; static lean_object* l_Lean_Parser_hexNumberFn___closed__1; static lean_object* l_Lean_Parser_finishCommentBlock_eoi___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_LeadingIdentBehavior_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Parser_octalNumberFn___lambda__1(uint32_t); +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_isQuotableCharDefault___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -190,9 +197,10 @@ LEAN_EXPORT lean_object* l_Lean_Parser_mkAtomicInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_checkLinebreakBefore(lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_setLhsPrecFn(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_checkNoWsBefore___elambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_optionalFn___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_manyAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -211,6 +219,7 @@ static lean_object* l_Lean_Parser_unicodeSymbolInfo___closed__1; LEAN_EXPORT uint8_t l_Lean_Parser_isIdCont(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkColGe___elambda__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_instDecidableEqRecoveryContext___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_forArgsM___spec__2(lean_object*); lean_object* l_Lean_Parser_withCacheFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -233,11 +242,11 @@ static lean_object* l_Lean_Parser_decimalNumberFn_parseOptExp___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_checkNoWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchMkResult(lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr___closed__6; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_orelseFnCore___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgsM___at_Lean_Syntax_forArgsM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many1Fn(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_forArgsM___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_skip___elambda__1(lean_object*); @@ -249,6 +258,7 @@ static lean_object* l_Lean_Parser_instBEqLeadingIdentBehavior___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_mkTokenAndFixPos(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__10; static lean_object* l_Lean_Parser_checkNoImmediateColon___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_stackSize(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_satisfySymbolFn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -271,7 +281,6 @@ static lean_object* l_Lean_Parser_whitespace___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_keepLatest___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchFnAux_parse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkNodeToken___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_fieldIdx___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgs___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_binNumberFn___closed__1; @@ -309,16 +318,18 @@ LEAN_EXPORT lean_object* l_Lean_Parser_lookaheadFn(lean_object*, lean_object*, l static lean_object* l_Lean_Parser_eoiFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbolInfo___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_trailingLoop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10; size_t lean_usize_of_nat(lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18; static lean_object* l_Lean_Parser_identFnAux_parse___closed__3; LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__6(lean_object*); static lean_object* l_Lean_Parser_hexDigitFn___closed__1; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_checkTailWs___boxed(lean_object*); static lean_object* l_Lean_Parser_antiquotExpr___closed__2; static lean_object* l_Lean_Parser_strLitFn___closed__1; static lean_object* l_Lean_Parser_antiquotNestedExpr___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_orelse___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266____boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_popSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_hygieneInfoFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_epsilonInfo; @@ -328,6 +339,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_eoi; static lean_object* l_Lean_Parser_quotedCharCoreFn___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_withPosition(lean_object*); static lean_object* l_Lean_Parser_incQuotDepth___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_hygieneInfoNoAntiquot; static lean_object* l_Lean_Parser_errorAtSavedPos___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone(lean_object*); @@ -345,7 +357,6 @@ static lean_object* l_Lean_Parser_categoryParserFn___closed__2; LEAN_EXPORT uint8_t l_Lean_Parser_instInhabitedLeadingIdentBehavior; LEAN_EXPORT lean_object* l_Lean_Parser_decimalNumberFn_parseOptDot(lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_eoiFn___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_rawStrLitFnAux_normalState___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_charLitFnAux(lean_object*, lean_object*, lean_object*); @@ -353,10 +364,13 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_leadingParserAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Char_isWhitespace(uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_checkPrec___elambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_suppressInsideQuot___closed__1; lean_object* l_Lean_Parser_ParserState_next(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbolNoAntiquot(lean_object*, uint8_t); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_checkColGe___elambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_categoryParserFn___lambda__1(lean_object*); @@ -366,7 +380,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_charLitFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__4___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_trailingNodeFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_withoutForbidden___closed__1; -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_leadingParserAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_identEqFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_charLitNoAntiquot; @@ -378,11 +391,12 @@ lean_object* l_Lean_RBNode_setBlack___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__6___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_identNoAntiquot___closed__2; lean_object* lean_nat_to_int(lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20; LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgsM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Subarray_size___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_decimalNumberFn_parseOptDot___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__1(lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbolNoAntiquot___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_adaptCacheableContext(lean_object*, lean_object*); @@ -391,7 +405,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_replaceLongest___boxed(lean_o LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_fieldIdx___closed__3; lean_object* l_Lean_Name_quickCmp___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_numberFnAux(lean_object*, lean_object*); uint8_t l_Substring_contains(lean_object*, uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_dbgTraceStateFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -402,7 +415,6 @@ static lean_object* l_Lean_Parser_mkAntiquot___closed__12; static lean_object* l_Lean_Parser_manyAux___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_identEq___elambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_identNoAntiquot___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_keepTop___boxed(lean_object*, lean_object*); @@ -429,8 +441,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_trailingNode(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_Parser_setLhsPrec___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgsM___at_Lean_Syntax_foldArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice___closed__1; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgsM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_stringGapFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -450,6 +462,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_notFollowedBy(lean_object*, lean_object*) LEAN_EXPORT uint8_t l_Lean_Parser_takeWhileFn___lambda__1(lean_object*, uint32_t); static lean_object* l_Lean_Parser_dbgTraceStateFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1; lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_symbol(lean_object*); @@ -457,6 +470,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_satisfyFn(lean_object*, lean_object*, lea LEAN_EXPORT lean_object* l_Lean_Parser_leadingParserAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optionaInfo(lean_object*); static lean_object* l_Lean_Parser_strLitNoAntiquot___closed__3; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13; static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__3; LEAN_EXPORT uint8_t l_Lean_Parser_checkTailWs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); @@ -488,9 +502,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLitNoAntiquot___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_numLitFn(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_mkAtomicInfo___elambda__1___boxed(lean_object*); static lean_object* l_Lean_Parser_strLitFnAux___closed__4; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14; LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withAntiquot(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_finishCommentBlock(uint8_t, lean_object*, lean_object*, lean_object*); @@ -527,6 +541,7 @@ static lean_object* l_Lean_Parser_skip___closed__2; uint32_t lean_string_utf8_get_fast(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbolFnAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_andthenInfo___elambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_checkLhsPrecFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__7(lean_object*); @@ -537,9 +552,11 @@ LEAN_EXPORT lean_object* l_Lean_Parser_withPosition___elambda__1___lambda__1(lea lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__2; lean_object* l_instOrdNat___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_symbolFnAux___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optionaInfo___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_OrElseOnAntiquotBehavior_toCtorIdx___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_satisfySymbolFn(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_strLitFn(lean_object*, lean_object*); @@ -547,12 +564,12 @@ LEAN_EXPORT lean_object* l_Lean_Parser_PrattParsingTables_leadingTable___default LEAN_EXPORT lean_object* l_Lean_Parser_many1NoAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_node(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_chFn(uint32_t, uint8_t, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_isRawStrLitStart___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_TokenMap_insert___spec__1___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLitNoAntiquot; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__5___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__14; static lean_object* l_Lean_Parser_TokenMap_instForInTokenMapProdNameList___closed__1; @@ -605,7 +622,9 @@ LEAN_EXPORT lean_object* l_Lean_RBNode_insert___at_Lean_Parser_TokenMap_insert__ static lean_object* l_Lean_Parser_binNumberFn___closed__2; static lean_object* l_Lean_Parser_many1Unbox___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_octalNumberFn___lambda__1___boxed(lean_object*); +LEAN_EXPORT uint8_t l_Lean_Parser_instDecidableEqRecoveryContext(lean_object*, lean_object*); static lean_object* l_Lean_Parser_identNoAntiquot___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgs___spec__2(lean_object*); static lean_object* l_Lean_Parser_charLitFnAux___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchMkResult___boxed(lean_object*, lean_object*); @@ -613,11 +632,12 @@ lean_object* l_instInhabitedForAll__1___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_addQuotDepth(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nameLitFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1NoAntiquot___elambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2; uint8_t l_Char_isDigit(uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Info___elambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__6; static lean_object* l_Lean_Parser_dbgTraceStateFn___closed__5; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_withPosition___elambda__1___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_symbolNoAntiquot___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeInfo___elambda__1(lean_object*, lean_object*, lean_object*); @@ -626,7 +646,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbolFn(lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_Parser_PrattParsingTables_trailingTable___default; static lean_object* l_Lean_Parser_checkNoImmediateColon___closed__2; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__7___rarg___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_orelseFnCore___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkTokenAndFixPos___closed__2; static lean_object* l_Lean_Parser_hygieneInfoNoAntiquot___closed__3; @@ -652,24 +671,25 @@ LEAN_EXPORT lean_object* l_Lean_Parser_decimalNumberFn_parseOptExp(lean_object*, LEAN_EXPORT lean_object* l_Lean_Parser_suppressInsideQuot___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_errorAtSavedPos___boxed(lean_object*, lean_object*); lean_object* l_lexOrd___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18; LEAN_EXPORT lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_toOptional(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserCategory_kinds___default; -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13; LEAN_EXPORT lean_object* l_Lean_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withPositionAfterLinebreak___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Parser_hexNumberFn___lambda__1(uint32_t); static lean_object* l_Lean_Parser_decimalNumberFn___closed__2; static lean_object* l_Lean_Parser_numberFnAux___closed__1; +lean_object* lean_string_length(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__4(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667_(lean_object*); static lean_object* l_Lean_Parser_decimalNumberFn___closed__3; lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByFn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLitNoAntiquot___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18; static lean_object* l_Lean_Parser_mkAntiquot___closed__9; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__8(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_replaceLongest(lean_object*, lean_object*); @@ -680,11 +700,12 @@ LEAN_EXPORT lean_object* l_Lean_Parser_tokenWithAntiquot(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__6(lean_object*); lean_object* l_addParenHeuristic(lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_symbolFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByNoAntiquot___elambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkNodeToken___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); lean_object* l_id___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_error___elambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -699,6 +720,8 @@ LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_TokenMap_insert___s LEAN_EXPORT lean_object* l_Lean_Parser_skip; LEAN_EXPORT lean_object* l_Lean_Parser_andthenInfo___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone___spec__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_recoverFn(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_scientificLitNoAntiquot; LEAN_EXPORT lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_TokenMap_insert___spec__1(lean_object*); @@ -707,15 +730,19 @@ LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_isIdFirstO LEAN_EXPORT lean_object* l_Lean_Parser_strLitNoAntiquot; LEAN_EXPORT lean_object* l_Lean_Parser_runLongestMatchParser___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_LeadingIdentBehavior_noConfusion___rarg(uint8_t, uint8_t, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_checkStackTop(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_quotedCharCoreFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_octalNumberFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_foldArgsM___at_Lean_Syntax_foldArgs___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbolInfo(lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__13; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_orelseFnCore___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkLhsPrec(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_pushNone___elambda__1___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_dbgTraceStateFn(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_longestMatchFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -730,14 +757,16 @@ LEAN_EXPORT lean_object* l_Lean_Parser_symbolInfo___elambda__2(lean_object*, lea uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_UInt32_decEq___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_orelseFnCore___lambda__1___closed__2; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_checkColEq___elambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_chFn___closed__1; uint8_t l_Lean_Parser_SyntaxStack_isEmpty(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__2(lean_object*); uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Parser_Types_0__Lean_Parser_beqCacheableParserContext____x40_Lean_Parser_Types___hyg_208____spec__2(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_addQuotDepth___lambda__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_prattParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_next_x27(lean_object*, lean_object*, lean_object*, lean_object*); @@ -753,14 +782,17 @@ LEAN_EXPORT lean_object* l_Lean_Parser_expectTokenFn(lean_object*, lean_object*, static lean_object* l_Lean_Parser_antiquotExpr___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_hygieneInfoFn___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_whitespace___closed__2; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_antiquotExpr; LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedPrattParsingTables; LEAN_EXPORT lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_satisfySymbolFn___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_maxPrec; LEAN_EXPORT lean_object* l_Lean_Parser_withForbidden___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_rawIdentNoAntiquot___closed__2; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_errorAtSavedPosFn(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withResultOfInfo___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_identFn(lean_object*, lean_object*); @@ -768,12 +800,12 @@ static lean_object* l_Lean_Parser_charLitFnAux___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_identNoAntiquot; LEAN_EXPORT lean_object* l_Lean_Parser_error___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14; static lean_object* l_Lean_Parser_pushNone___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_seq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkWsBefore(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1(lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2; lean_object* lean_string_utf8_next_fast(lean_object*, lean_object*); static lean_object* l_Lean_Parser_epsilonInfo___closed__1; static lean_object* l_Lean_Parser_octalNumberFn___closed__2; @@ -783,6 +815,7 @@ static lean_object* l_Lean_Parser_quotedCharCoreFn___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_notFollowedByFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_strAux_parse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_epsilonInfo___elambda__1___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_pushNone___elambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_identEqFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_identFnAux_parse___closed__2; @@ -833,11 +866,12 @@ LEAN_EXPORT lean_object* l_Lean_Parser_many1Unbox(lean_object*); static lean_object* l_Lean_Parser_numLitNoAntiquot___closed__2; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_indexed___spec__5___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_takeWhileFn(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_checkTailLinebreak___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkTailNoWs___boxed(lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_setExpectedFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_rawStrLitFnAux_errorUnterminated___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_forArgsM___spec__2___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -858,7 +892,9 @@ LEAN_EXPORT lean_object* l_Lean_Parser_withoutForbidden___lambda__1(lean_object* static lean_object* l_Lean_Parser_antiquotExpr___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_rawStrLitFnAux_closingState___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_dbgTraceState___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1; static lean_object* l_Lean_Parser_mkAntiquotSplice___closed__2; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11; lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_eoiFn(lean_object*, lean_object*); static lean_object* l_Lean_Parser_ParserCategory_kinds___default___closed__1; @@ -883,6 +919,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_manyNoAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_strAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_instInhabitedParserCategory___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_hexDigitFn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_anyOfFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_rawCh___elambda__1(uint32_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_instInhabitedParserFn___boxed(lean_object*); @@ -894,7 +931,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_TokenMap_insert(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkLinebreakBeforeFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_satisfySymbolFn___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_rawCh___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_tokenWithAntiquot___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkPrec___elambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -908,7 +944,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_pushNone___elambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_skip___elambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkLineEq___elambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__16; -static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_leadingParserAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkNodeToken(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withoutPosition(lean_object*); @@ -923,11 +958,13 @@ lean_object* lean_dbg_trace(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instAndThenParser(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_checkColGt(lean_object*); static lean_object* l_Lean_Parser_identFn___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_SyntaxStack_back(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_octalNumberFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr___closed__9; +static lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_trailingLoop___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_hygieneInfoFn___lambda__1___closed__2; lean_object* l_Nat_repr(lean_object*); @@ -941,6 +978,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_keepNewError___boxed(lean_obj static lean_object* l_Lean_Parser_tokenAntiquotFn___lambda__2___closed__9; LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__3___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot___closed__10; +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_quotedCharFn___closed__1; static lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); @@ -1844,7 +1882,7 @@ return x_4; LEAN_EXPORT lean_object* l_Lean_Parser_setLhsPrecFn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +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_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_ctor_get(x_3, 2); @@ -1853,11 +1891,14 @@ x_6 = lean_ctor_get(x_3, 3); lean_inc(x_6); x_7 = lean_ctor_get(x_3, 4); lean_inc(x_7); -x_8 = lean_box(0); +x_8 = lean_ctor_get(x_3, 5); +lean_inc(x_8); +x_9 = lean_box(0); lean_inc(x_7); -x_9 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); -if (x_9 == 0) +x_10 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_9); +if (x_10 == 0) { +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -1867,35 +1908,38 @@ return x_3; } else { -uint8_t x_10; -x_10 = !lean_is_exclusive(x_3); -if (x_10 == 0) +uint8_t x_11; +x_11 = !lean_is_exclusive(x_3); +if (x_11 == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_11 = lean_ctor_get(x_3, 4); -lean_dec(x_11); -x_12 = lean_ctor_get(x_3, 3); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_12 = lean_ctor_get(x_3, 5); lean_dec(x_12); -x_13 = lean_ctor_get(x_3, 2); +x_13 = lean_ctor_get(x_3, 4); lean_dec(x_13); -x_14 = lean_ctor_get(x_3, 1); +x_14 = lean_ctor_get(x_3, 3); lean_dec(x_14); -x_15 = lean_ctor_get(x_3, 0); +x_15 = lean_ctor_get(x_3, 2); lean_dec(x_15); +x_16 = lean_ctor_get(x_3, 1); +lean_dec(x_16); +x_17 = lean_ctor_get(x_3, 0); +lean_dec(x_17); lean_ctor_set(x_3, 1, x_1); return x_3; } else { -lean_object* x_16; +lean_object* x_18; lean_dec(x_3); -x_16 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_16, 0, x_4); -lean_ctor_set(x_16, 1, x_1); -lean_ctor_set(x_16, 2, x_5); -lean_ctor_set(x_16, 3, x_6); -lean_ctor_set(x_16, 4, x_7); -return x_16; +x_18 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_18, 0, x_4); +lean_ctor_set(x_18, 1, x_1); +lean_ctor_set(x_18, 2, x_5); +lean_ctor_set(x_18, 3, x_6); +lean_ctor_set(x_18, 4, x_7); +lean_ctor_set(x_18, 5, x_8); +return x_18; } } } @@ -2182,7 +2226,7 @@ return x_1; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_6 = lean_ctor_get(x_1, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_1, 1); @@ -2191,16 +2235,19 @@ x_8 = lean_ctor_get(x_1, 2); lean_inc(x_8); x_9 = lean_ctor_get(x_1, 3); lean_inc(x_9); -x_10 = !lean_is_exclusive(x_5); -if (x_10 == 0) +x_10 = lean_ctor_get(x_1, 5); +lean_inc(x_10); +x_11 = !lean_is_exclusive(x_5); +if (x_11 == 0) { -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_5, 0); -x_12 = lean_nat_dec_eq(x_8, x_3); -if (x_12 == 0) +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_5, 0); +x_13 = lean_nat_dec_eq(x_8, x_3); +if (x_13 == 0) { lean_free_object(x_5); -lean_dec(x_11); +lean_dec(x_12); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2210,21 +2257,23 @@ return x_1; } else { -uint8_t x_13; -x_13 = !lean_is_exclusive(x_1); -if (x_13 == 0) +uint8_t x_14; +x_14 = !lean_is_exclusive(x_1); +if (x_14 == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_14 = lean_ctor_get(x_1, 4); -lean_dec(x_14); -x_15 = lean_ctor_get(x_1, 3); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_15 = lean_ctor_get(x_1, 5); lean_dec(x_15); -x_16 = lean_ctor_get(x_1, 2); +x_16 = lean_ctor_get(x_1, 4); lean_dec(x_16); -x_17 = lean_ctor_get(x_1, 1); +x_17 = lean_ctor_get(x_1, 3); lean_dec(x_17); -x_18 = lean_ctor_get(x_1, 0); +x_18 = lean_ctor_get(x_1, 2); lean_dec(x_18); +x_19 = lean_ctor_get(x_1, 1); +lean_dec(x_19); +x_20 = lean_ctor_get(x_1, 0); +lean_dec(x_20); if (x_4 == 0) { lean_dec(x_2); @@ -2232,9 +2281,9 @@ return x_1; } else { -lean_object* x_19; -x_19 = l_Lean_Parser_Error_merge(x_2, x_11); -lean_ctor_set(x_5, 0, x_19); +lean_object* x_21; +x_21 = l_Lean_Parser_Error_merge(x_2, x_12); +lean_ctor_set(x_5, 0, x_21); return x_1; } } @@ -2243,42 +2292,45 @@ else lean_dec(x_1); if (x_4 == 0) { -lean_object* x_20; +lean_object* x_22; lean_dec(x_2); -x_20 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_20, 0, x_6); -lean_ctor_set(x_20, 1, x_7); -lean_ctor_set(x_20, 2, x_8); -lean_ctor_set(x_20, 3, x_9); -lean_ctor_set(x_20, 4, x_5); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; -x_21 = l_Lean_Parser_Error_merge(x_2, x_11); -lean_ctor_set(x_5, 0, x_21); -x_22 = lean_alloc_ctor(0, 5, 0); +x_22 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_22, 0, x_6); lean_ctor_set(x_22, 1, x_7); lean_ctor_set(x_22, 2, x_8); lean_ctor_set(x_22, 3, x_9); lean_ctor_set(x_22, 4, x_5); +lean_ctor_set(x_22, 5, x_10); return x_22; } +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = l_Lean_Parser_Error_merge(x_2, x_12); +lean_ctor_set(x_5, 0, x_23); +x_24 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_24, 0, x_6); +lean_ctor_set(x_24, 1, x_7); +lean_ctor_set(x_24, 2, x_8); +lean_ctor_set(x_24, 3, x_9); +lean_ctor_set(x_24, 4, x_5); +lean_ctor_set(x_24, 5, x_10); +return x_24; +} } } } else { -lean_object* x_23; uint8_t x_24; -x_23 = lean_ctor_get(x_5, 0); -lean_inc(x_23); +lean_object* x_25; uint8_t x_26; +x_25 = lean_ctor_get(x_5, 0); +lean_inc(x_25); lean_dec(x_5); -x_24 = lean_nat_dec_eq(x_8, x_3); -if (x_24 == 0) +x_26 = lean_nat_dec_eq(x_8, x_3); +if (x_26 == 0) { -lean_dec(x_23); +lean_dec(x_25); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2288,53 +2340,56 @@ return x_1; } else { -lean_object* x_25; +lean_object* x_27; if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); lean_ctor_release(x_1, 2); lean_ctor_release(x_1, 3); lean_ctor_release(x_1, 4); - x_25 = x_1; + lean_ctor_release(x_1, 5); + x_27 = x_1; } else { lean_dec_ref(x_1); - x_25 = lean_box(0); + x_27 = lean_box(0); } if (x_4 == 0) { -lean_object* x_26; lean_object* x_27; +lean_object* x_28; lean_object* x_29; lean_dec(x_2); -x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_23); -if (lean_is_scalar(x_25)) { - x_27 = lean_alloc_ctor(0, 5, 0); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_25); +if (lean_is_scalar(x_27)) { + x_29 = lean_alloc_ctor(0, 6, 0); } else { - x_27 = x_25; + x_29 = x_27; } -lean_ctor_set(x_27, 0, x_6); -lean_ctor_set(x_27, 1, x_7); -lean_ctor_set(x_27, 2, x_8); -lean_ctor_set(x_27, 3, x_9); -lean_ctor_set(x_27, 4, x_26); -return x_27; +lean_ctor_set(x_29, 0, x_6); +lean_ctor_set(x_29, 1, x_7); +lean_ctor_set(x_29, 2, x_8); +lean_ctor_set(x_29, 3, x_9); +lean_ctor_set(x_29, 4, x_28); +lean_ctor_set(x_29, 5, x_10); +return x_29; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = l_Lean_Parser_Error_merge(x_2, x_23); -x_29 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_29, 0, x_28); -if (lean_is_scalar(x_25)) { - x_30 = lean_alloc_ctor(0, 5, 0); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = l_Lean_Parser_Error_merge(x_2, x_25); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +if (lean_is_scalar(x_27)) { + x_32 = lean_alloc_ctor(0, 6, 0); } else { - x_30 = x_25; + x_32 = x_27; } -lean_ctor_set(x_30, 0, x_6); -lean_ctor_set(x_30, 1, x_7); -lean_ctor_set(x_30, 2, x_8); -lean_ctor_set(x_30, 3, x_9); -lean_ctor_set(x_30, 4, x_29); -return x_30; +lean_ctor_set(x_32, 0, x_6); +lean_ctor_set(x_32, 1, x_7); +lean_ctor_set(x_32, 2, x_8); +lean_ctor_set(x_32, 3, x_9); +lean_ctor_set(x_32, 4, x_31); +lean_ctor_set(x_32, 5, x_10); +return x_32; } } } @@ -2439,7 +2494,7 @@ x_6 = l_Lean_Parser_OrElseOnAntiquotBehavior_noConfusion___rarg(x_4, x_5, x_3); return x_6; } } -LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -2451,7 +2506,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -2459,7 +2514,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612_(x_3, x_4); +x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -2468,7 +2523,7 @@ static lean_object* _init_l_Lean_Parser_instBEqOrElseOnAntiquotBehavior___closed _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617____boxed), 2, 0); return x_1; } } @@ -2501,7 +2556,7 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Parser_orelseFnCore___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -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_object* x_11; uint8_t x_12; +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_object* x_11; lean_object* x_12; uint8_t x_13; x_5 = lean_ctor_get(x_3, 0); lean_inc(x_5); x_6 = lean_ctor_get(x_3, 1); @@ -2512,276 +2567,285 @@ x_8 = lean_ctor_get(x_3, 3); lean_inc(x_8); x_9 = lean_ctor_get(x_3, 4); lean_inc(x_9); -x_10 = l_Lean_Parser_SyntaxStack_back(x_5); -lean_inc(x_3); -x_11 = l_Lean_Parser_ParserState_popSyntax(x_3); -x_12 = !lean_is_exclusive(x_3); -if (x_12 == 0) -{ -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; uint8_t x_20; -x_13 = lean_ctor_get(x_3, 4); -lean_dec(x_13); -x_14 = lean_ctor_get(x_3, 3); -lean_dec(x_14); -x_15 = lean_ctor_get(x_3, 2); -lean_dec(x_15); -x_16 = lean_ctor_get(x_3, 1); -lean_dec(x_16); -x_17 = lean_ctor_get(x_3, 0); -lean_dec(x_17); -x_18 = l_Lean_Parser_orelseFnCore___lambda__1___closed__2; -lean_inc(x_1); -x_19 = l_Lean_Syntax_isOfKind(x_1, x_18); +x_10 = lean_ctor_get(x_3, 5); lean_inc(x_10); -x_20 = l_Lean_Syntax_isOfKind(x_10, x_18); -if (x_19 == 0) +x_11 = l_Lean_Parser_SyntaxStack_back(x_5); +lean_inc(x_3); +x_12 = l_Lean_Parser_ParserState_popSyntax(x_3); +x_13 = !lean_is_exclusive(x_3); +if (x_13 == 0) { -lean_object* x_21; -x_21 = l_Lean_Parser_ParserState_pushSyntax(x_11, x_1); -if (x_20 == 0) +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; uint8_t x_21; uint8_t x_22; +x_14 = lean_ctor_get(x_3, 5); +lean_dec(x_14); +x_15 = lean_ctor_get(x_3, 4); +lean_dec(x_15); +x_16 = lean_ctor_get(x_3, 3); +lean_dec(x_16); +x_17 = lean_ctor_get(x_3, 2); +lean_dec(x_17); +x_18 = lean_ctor_get(x_3, 1); +lean_dec(x_18); +x_19 = lean_ctor_get(x_3, 0); +lean_dec(x_19); +x_20 = l_Lean_Parser_orelseFnCore___lambda__1___closed__2; +lean_inc(x_1); +x_21 = l_Lean_Syntax_isOfKind(x_1, x_20); +lean_inc(x_11); +x_22 = l_Lean_Syntax_isOfKind(x_11, x_20); +if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; +lean_object* x_23; +x_23 = l_Lean_Parser_ParserState_pushSyntax(x_12, x_1); +if (x_22 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_free_object(x_3); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_22 = l_Lean_Parser_ParserState_pushSyntax(x_21, x_10); -x_23 = l_Lean_Parser_ParserState_mkNode(x_22, x_18, x_2); -return x_23; +x_24 = l_Lean_Parser_ParserState_pushSyntax(x_23, x_11); +x_25 = l_Lean_Parser_ParserState_mkNode(x_24, x_20, x_2); +return x_25; } else { -lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = lean_ctor_get(x_21, 0); -lean_inc(x_24); -lean_dec(x_21); -x_25 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_24, 0); -x_28 = l_Array_append___rarg(x_27, x_25); -lean_ctor_set(x_24, 0, x_28); -lean_ctor_set(x_3, 0, x_24); -x_29 = l_Lean_Parser_ParserState_mkNode(x_3, x_18, x_2); -return x_29; -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_30 = lean_ctor_get(x_24, 0); -x_31 = lean_ctor_get(x_24, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_24); -x_32 = l_Array_append___rarg(x_30, x_25); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_31); -lean_ctor_set(x_3, 0, x_33); -x_34 = l_Lean_Parser_ParserState_mkNode(x_3, x_18, x_2); -return x_34; -} -} -} -else -{ -lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_35 = lean_ctor_get(x_11, 0); -lean_inc(x_35); +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_23, 0); +lean_inc(x_26); +lean_dec(x_23); +x_27 = l_Lean_Syntax_getArgs(x_11); lean_dec(x_11); -x_36 = l_Lean_Syntax_getArgs(x_1); -lean_dec(x_1); -x_37 = !lean_is_exclusive(x_35); -if (x_37 == 0) +x_28 = !lean_is_exclusive(x_26); +if (x_28 == 0) { -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_35, 0); -x_39 = l_Array_append___rarg(x_38, x_36); -if (x_20 == 0) +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_26, 0); +x_30 = l_Array_append___rarg(x_29, x_27); +lean_ctor_set(x_26, 0, x_30); +lean_ctor_set(x_3, 0, x_26); +x_31 = l_Lean_Parser_ParserState_mkNode(x_3, x_20, x_2); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_ctor_get(x_26, 0); +x_33 = lean_ctor_get(x_26, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_26); +x_34 = l_Array_append___rarg(x_32, x_27); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +lean_ctor_set(x_3, 0, x_35); +x_36 = l_Lean_Parser_ParserState_mkNode(x_3, x_20, x_2); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_37 = lean_ctor_get(x_12, 0); +lean_inc(x_37); +lean_dec(x_12); +x_38 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_39 = !lean_is_exclusive(x_37); +if (x_39 == 0) { lean_object* x_40; lean_object* x_41; -lean_ctor_set(x_35, 0, x_39); -lean_ctor_set(x_3, 0, x_35); -x_40 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_10); -x_41 = l_Lean_Parser_ParserState_mkNode(x_40, x_18, x_2); -return x_41; +x_40 = lean_ctor_get(x_37, 0); +x_41 = l_Array_append___rarg(x_40, x_38); +if (x_22 == 0) +{ +lean_object* x_42; lean_object* x_43; +lean_ctor_set(x_37, 0, x_41); +lean_ctor_set(x_3, 0, x_37); +x_42 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_11); +x_43 = l_Lean_Parser_ParserState_mkNode(x_42, x_20, x_2); +return x_43; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_43 = l_Array_append___rarg(x_39, x_42); -lean_ctor_set(x_35, 0, x_43); -lean_ctor_set(x_3, 0, x_35); -x_44 = l_Lean_Parser_ParserState_mkNode(x_3, x_18, x_2); -return x_44; +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = l_Lean_Syntax_getArgs(x_11); +lean_dec(x_11); +x_45 = l_Array_append___rarg(x_41, x_44); +lean_ctor_set(x_37, 0, x_45); +lean_ctor_set(x_3, 0, x_37); +x_46 = l_Lean_Parser_ParserState_mkNode(x_3, x_20, x_2); +return x_46; } } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_35, 0); -x_46 = lean_ctor_get(x_35, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_35); -x_47 = l_Array_append___rarg(x_45, x_36); -if (x_20 == 0) +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_37, 0); +x_48 = lean_ctor_get(x_37, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_37); +x_49 = l_Array_append___rarg(x_47, x_38); +if (x_22 == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -lean_ctor_set(x_3, 0, x_48); -x_49 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_10); -x_50 = l_Lean_Parser_ParserState_mkNode(x_49, x_18, x_2); -return x_50; +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +lean_ctor_set(x_3, 0, x_50); +x_51 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_11); +x_52 = l_Lean_Parser_ParserState_mkNode(x_51, x_20, x_2); +return x_52; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_52 = l_Array_append___rarg(x_47, x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_46); -lean_ctor_set(x_3, 0, x_53); -x_54 = l_Lean_Parser_ParserState_mkNode(x_3, x_18, x_2); -return x_54; +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = l_Lean_Syntax_getArgs(x_11); +lean_dec(x_11); +x_54 = l_Array_append___rarg(x_49, x_53); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_48); +lean_ctor_set(x_3, 0, x_55); +x_56 = l_Lean_Parser_ParserState_mkNode(x_3, x_20, x_2); +return x_56; } } } } else { -lean_object* x_55; uint8_t x_56; uint8_t x_57; +lean_object* x_57; uint8_t x_58; uint8_t x_59; lean_dec(x_3); -x_55 = l_Lean_Parser_orelseFnCore___lambda__1___closed__2; +x_57 = l_Lean_Parser_orelseFnCore___lambda__1___closed__2; lean_inc(x_1); -x_56 = l_Lean_Syntax_isOfKind(x_1, x_55); -lean_inc(x_10); -x_57 = l_Lean_Syntax_isOfKind(x_10, x_55); -if (x_56 == 0) +x_58 = l_Lean_Syntax_isOfKind(x_1, x_57); +lean_inc(x_11); +x_59 = l_Lean_Syntax_isOfKind(x_11, x_57); +if (x_58 == 0) { -lean_object* x_58; -x_58 = l_Lean_Parser_ParserState_pushSyntax(x_11, x_1); -if (x_57 == 0) +lean_object* x_60; +x_60 = l_Lean_Parser_ParserState_pushSyntax(x_12, x_1); +if (x_59 == 0) { -lean_object* x_59; lean_object* x_60; +lean_object* x_61; lean_object* x_62; +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_59 = l_Lean_Parser_ParserState_pushSyntax(x_58, x_10); -x_60 = l_Lean_Parser_ParserState_mkNode(x_59, x_55, x_2); -return x_60; +x_61 = l_Lean_Parser_ParserState_pushSyntax(x_60, x_11); +x_62 = l_Lean_Parser_ParserState_mkNode(x_61, x_57, x_2); +return x_62; } else { -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; -x_61 = lean_ctor_get(x_58, 0); -lean_inc(x_61); -lean_dec(x_58); -x_62 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_63 = lean_ctor_get(x_61, 0); +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; +x_63 = lean_ctor_get(x_60, 0); lean_inc(x_63); -x_64 = lean_ctor_get(x_61, 1); -lean_inc(x_64); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_65 = x_61; -} else { - lean_dec_ref(x_61); - x_65 = lean_box(0); -} -x_66 = l_Array_append___rarg(x_63, x_62); -if (lean_is_scalar(x_65)) { - x_67 = lean_alloc_ctor(0, 2, 0); -} else { - x_67 = x_65; -} -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_64); -x_68 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_6); -lean_ctor_set(x_68, 2, x_7); -lean_ctor_set(x_68, 3, x_8); -lean_ctor_set(x_68, 4, x_9); -x_69 = l_Lean_Parser_ParserState_mkNode(x_68, x_55, x_2); -return x_69; -} -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_70 = lean_ctor_get(x_11, 0); -lean_inc(x_70); +lean_dec(x_60); +x_64 = l_Lean_Syntax_getArgs(x_11); lean_dec(x_11); -x_71 = l_Lean_Syntax_getArgs(x_1); -lean_dec(x_1); -x_72 = lean_ctor_get(x_70, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_70, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_70)) { - lean_ctor_release(x_70, 0); - lean_ctor_release(x_70, 1); - x_74 = x_70; +x_65 = lean_ctor_get(x_63, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + x_67 = x_63; } else { - lean_dec_ref(x_70); - x_74 = lean_box(0); + lean_dec_ref(x_63); + x_67 = lean_box(0); } -x_75 = l_Array_append___rarg(x_72, x_71); -if (x_57 == 0) -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -if (lean_is_scalar(x_74)) { - x_76 = lean_alloc_ctor(0, 2, 0); +x_68 = l_Array_append___rarg(x_65, x_64); +if (lean_is_scalar(x_67)) { + x_69 = lean_alloc_ctor(0, 2, 0); } else { - x_76 = x_74; + x_69 = x_67; +} +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_66); +x_70 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_6); +lean_ctor_set(x_70, 2, x_7); +lean_ctor_set(x_70, 3, x_8); +lean_ctor_set(x_70, 4, x_9); +lean_ctor_set(x_70, 5, x_10); +x_71 = l_Lean_Parser_ParserState_mkNode(x_70, x_57, x_2); +return x_71; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_73); -x_77 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_6); -lean_ctor_set(x_77, 2, x_7); -lean_ctor_set(x_77, 3, x_8); -lean_ctor_set(x_77, 4, x_9); -x_78 = l_Lean_Parser_ParserState_pushSyntax(x_77, x_10); -x_79 = l_Lean_Parser_ParserState_mkNode(x_78, x_55, x_2); -return x_79; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_80 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_81 = l_Array_append___rarg(x_75, x_80); -if (lean_is_scalar(x_74)) { - x_82 = lean_alloc_ctor(0, 2, 0); +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_72 = lean_ctor_get(x_12, 0); +lean_inc(x_72); +lean_dec(x_12); +x_73 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_74 = lean_ctor_get(x_72, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_72, 1); +lean_inc(x_75); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_76 = x_72; } else { - x_82 = x_74; + lean_dec_ref(x_72); + x_76 = lean_box(0); } -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_73); -x_83 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_83, 0, x_82); -lean_ctor_set(x_83, 1, x_6); -lean_ctor_set(x_83, 2, x_7); -lean_ctor_set(x_83, 3, x_8); -lean_ctor_set(x_83, 4, x_9); -x_84 = l_Lean_Parser_ParserState_mkNode(x_83, x_55, x_2); -return x_84; +x_77 = l_Array_append___rarg(x_74, x_73); +if (x_59 == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +if (lean_is_scalar(x_76)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_76; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_75); +x_79 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set(x_79, 1, x_6); +lean_ctor_set(x_79, 2, x_7); +lean_ctor_set(x_79, 3, x_8); +lean_ctor_set(x_79, 4, x_9); +lean_ctor_set(x_79, 5, x_10); +x_80 = l_Lean_Parser_ParserState_pushSyntax(x_79, x_11); +x_81 = l_Lean_Parser_ParserState_mkNode(x_80, x_57, x_2); +return x_81; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_82 = l_Lean_Syntax_getArgs(x_11); +lean_dec(x_11); +x_83 = l_Array_append___rarg(x_77, x_82); +if (lean_is_scalar(x_76)) { + x_84 = lean_alloc_ctor(0, 2, 0); +} else { + x_84 = x_76; +} +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_75); +x_85 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_6); +lean_ctor_set(x_85, 2, x_7); +lean_ctor_set(x_85, 3, x_8); +lean_ctor_set(x_85, 4, x_9); +lean_ctor_set(x_85, 5, x_10); +x_86 = l_Lean_Parser_ParserState_mkNode(x_85, x_57, x_2); +return x_86; } } } @@ -2799,7 +2863,7 @@ if (x_8 == 0) { uint8_t x_9; uint8_t x_10; x_9 = 2; -x_10 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612_(x_4, x_9); +x_10 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617_(x_4, x_9); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; @@ -2929,7 +2993,7 @@ x_10 = lean_ctor_get(x_8, 0); lean_inc(x_10); x_11 = l_Lean_Parser_SyntaxStack_back(x_10); x_12 = 0; -x_13 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_612_(x_3, x_12); +x_13 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqOrElseOnAntiquotBehavior____x40_Lean_Parser_Basic___hyg_617_(x_3, x_12); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -3256,36 +3320,39 @@ return x_5; } 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; lean_object* x_19; +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; x_13 = lean_ctor_get(x_5, 0); x_14 = lean_ctor_get(x_5, 1); x_15 = lean_ctor_get(x_5, 3); +x_16 = lean_ctor_get(x_5, 5); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_dec(x_5); -x_16 = lean_ctor_get(x_6, 0); -lean_inc(x_16); +x_17 = lean_ctor_get(x_6, 0); +lean_inc(x_17); if (lean_is_exclusive(x_6)) { lean_ctor_release(x_6, 0); - x_17 = x_6; + x_18 = x_6; } else { lean_dec_ref(x_6); - x_17 = lean_box(0); + x_18 = lean_box(0); } -if (lean_is_scalar(x_17)) { - x_18 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_18)) { + x_19 = lean_alloc_ctor(1, 1, 0); } else { - x_18 = x_17; + x_19 = x_18; } -lean_ctor_set(x_18, 0, x_16); -x_19 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_19, 0, x_13); -lean_ctor_set(x_19, 1, x_14); -lean_ctor_set(x_19, 2, x_4); -lean_ctor_set(x_19, 3, x_15); -lean_ctor_set(x_19, 4, x_18); -return x_19; +lean_ctor_set(x_19, 0, x_17); +x_20 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_20, 0, x_13); +lean_ctor_set(x_20, 1, x_14); +lean_ctor_set(x_20, 2, x_4); +lean_ctor_set(x_20, 3, x_15); +lean_ctor_set(x_20, 4, x_19); +lean_ctor_set(x_20, 5, x_16); +return x_20; } } } @@ -3329,6 +3396,677 @@ return x_8; } } } +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189_(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 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_nat_dec_eq(x_3, x_5); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = 0; +return x_8; +} +else +{ +uint8_t x_9; +x_9 = lean_nat_dec_eq(x_4, x_6); +return x_9; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189_(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_instBEqRecoveryContext___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_beqRecoveryContext____x40_Lean_Parser_Basic___hyg_1189____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_instBEqRecoveryContext() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_instBEqRecoveryContext___closed__1; +return x_1; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266_(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 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_nat_dec_eq(x_3, x_5); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = 0; +return x_8; +} +else +{ +uint8_t x_9; +x_9 = lean_nat_dec_eq(x_4, x_6); +return x_9; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266_(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT uint8_t l_Lean_Parser_instDecidableEqRecoveryContext(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l___private_Lean_Parser_Basic_0__Lean_Parser_decEqRecoveryContext____x40_Lean_Parser_Basic___hyg_1266_(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_instDecidableEqRecoveryContext___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Parser_instDecidableEqRecoveryContext(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initialPos", 10); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2; +x_3 = lean_alloc_ctor(5, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" := ", 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5; +x_3 = lean_alloc_ctor(5, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(14u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("{ byteIdx := ", 13); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(" }", 2); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(",", 1); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("initialSize", 11); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(15u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("{ ", 2); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17; +x_2 = lean_string_length(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410_(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; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t 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; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = l_Nat_repr(x_3); +x_5 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_5, 0, x_4); +x_6 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9; +x_7 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_5); +x_8 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11; +x_9 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_9, 0, x_7); +lean_ctor_set(x_9, 1, x_8); +x_10 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7; +x_11 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = 0; +x_13 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_12); +x_14 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6; +x_15 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13; +x_17 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_box(1); +x_19 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15; +x_21 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5; +x_23 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +lean_dec(x_1); +x_25 = l_Nat_repr(x_24); +x_26 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16; +x_28 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +x_29 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set_uint8(x_29, sizeof(void*)*1, x_12); +x_30 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_30, 0, x_23); +lean_ctor_set(x_30, 1, x_29); +x_31 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20; +x_32 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +x_33 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_8); +x_34 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19; +x_35 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +x_36 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set_uint8(x_36, sizeof(void*)*1, x_12); +return x_36; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410_(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_instReprRecoveryContext___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_instReprRecoveryContext() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_instReprRecoveryContext___closed__1; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_recoverFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_4, 2); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +x_7 = l_Lean_Parser_SyntaxStack_size(x_6); +lean_dec(x_6); +lean_inc(x_3); +x_8 = lean_apply_2(x_1, x_3, x_4); +x_9 = lean_ctor_get(x_8, 4); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_8); +if (x_10 == 0) +{ +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; uint8_t x_22; +x_11 = lean_ctor_get(x_8, 4); +lean_dec(x_11); +x_12 = lean_ctor_get(x_9, 0); +lean_inc(x_12); +lean_dec(x_9); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_5); +lean_ctor_set(x_13, 1, x_7); +x_14 = lean_box(0); +lean_ctor_set(x_8, 4, x_14); +x_15 = lean_apply_3(x_2, x_13, x_3, x_8); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 2); +lean_inc(x_18); +x_19 = lean_ctor_get(x_15, 3); +lean_inc(x_19); +x_20 = lean_ctor_get(x_15, 4); +lean_inc(x_20); +x_21 = lean_ctor_get(x_15, 5); +lean_inc(x_21); +x_22 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_20, x_14); +if (x_22 == 0) +{ +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_12); +return x_15; +} +else +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_15); +if (x_23 == 0) +{ +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; +x_24 = lean_ctor_get(x_15, 5); +lean_dec(x_24); +x_25 = lean_ctor_get(x_15, 4); +lean_dec(x_25); +x_26 = lean_ctor_get(x_15, 3); +lean_dec(x_26); +x_27 = lean_ctor_get(x_15, 2); +lean_dec(x_27); +x_28 = lean_ctor_get(x_15, 1); +lean_dec(x_28); +x_29 = lean_ctor_get(x_15, 0); +lean_dec(x_29); +lean_inc(x_16); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_16); +lean_ctor_set(x_30, 1, x_12); +lean_inc(x_18); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_18); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_array_push(x_21, x_31); +lean_ctor_set(x_15, 5, x_32); +lean_ctor_set(x_15, 4, x_14); +return x_15; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_15); +lean_inc(x_16); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_16); +lean_ctor_set(x_33, 1, x_12); +lean_inc(x_18); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_18); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_array_push(x_21, x_34); +x_36 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_36, 0, x_16); +lean_ctor_set(x_36, 1, x_17); +lean_ctor_set(x_36, 2, x_18); +lean_ctor_set(x_36, 3, x_19); +lean_ctor_set(x_36, 4, x_14); +lean_ctor_set(x_36, 5, x_35); +return x_36; +} +} +} +else +{ +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; uint8_t x_53; +x_37 = lean_ctor_get(x_8, 0); +x_38 = lean_ctor_get(x_8, 1); +x_39 = lean_ctor_get(x_8, 2); +x_40 = lean_ctor_get(x_8, 3); +x_41 = lean_ctor_get(x_8, 5); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_8); +x_42 = lean_ctor_get(x_9, 0); +lean_inc(x_42); +lean_dec(x_9); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_5); +lean_ctor_set(x_43, 1, x_7); +x_44 = lean_box(0); +x_45 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_45, 0, x_37); +lean_ctor_set(x_45, 1, x_38); +lean_ctor_set(x_45, 2, x_39); +lean_ctor_set(x_45, 3, x_40); +lean_ctor_set(x_45, 4, x_44); +lean_ctor_set(x_45, 5, x_41); +x_46 = lean_apply_3(x_2, x_43, x_3, x_45); +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +x_49 = lean_ctor_get(x_46, 2); +lean_inc(x_49); +x_50 = lean_ctor_get(x_46, 3); +lean_inc(x_50); +x_51 = lean_ctor_get(x_46, 4); +lean_inc(x_51); +x_52 = lean_ctor_get(x_46, 5); +lean_inc(x_52); +x_53 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_51, x_44); +if (x_53 == 0) +{ +lean_dec(x_52); +lean_dec(x_50); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_47); +lean_dec(x_42); +return x_46; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +if (lean_is_exclusive(x_46)) { + lean_ctor_release(x_46, 0); + lean_ctor_release(x_46, 1); + lean_ctor_release(x_46, 2); + lean_ctor_release(x_46, 3); + lean_ctor_release(x_46, 4); + lean_ctor_release(x_46, 5); + x_54 = x_46; +} else { + lean_dec_ref(x_46); + x_54 = lean_box(0); +} +lean_inc(x_47); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_47); +lean_ctor_set(x_55, 1, x_42); +lean_inc(x_49); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_49); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_array_push(x_52, x_56); +if (lean_is_scalar(x_54)) { + x_58 = lean_alloc_ctor(0, 6, 0); +} else { + x_58 = x_54; +} +lean_ctor_set(x_58, 0, x_47); +lean_ctor_set(x_58, 1, x_48); +lean_ctor_set(x_58, 2, x_49); +lean_ctor_set(x_58, 3, x_50); +lean_ctor_set(x_58, 4, x_44); +lean_ctor_set(x_58, 5, x_57); +return x_58; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Parser_recoverFn(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_apply_1(x_1, x_2); +x_6 = lean_ctor_get(x_5, 1); +lean_inc(x_6); +lean_dec(x_5); +x_7 = lean_apply_2(x_6, x_3, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_recover_x27(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_alloc_closure((void*)(l_Lean_Parser_recover_x27___lambda__1), 4, 1); +lean_closure_set(x_5, 0, x_2); +x_6 = lean_alloc_closure((void*)(l_Lean_Parser_recover_x27___elambda__1), 4, 2); +lean_closure_set(x_6, 0, x_4); +lean_closure_set(x_6, 1, x_5); +lean_ctor_set(x_1, 1, x_6); +return x_1; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_7 = lean_ctor_get(x_1, 0); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_inc(x_7); +lean_dec(x_1); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_recover_x27___lambda__1), 4, 1); +lean_closure_set(x_9, 0, x_2); +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_recover_x27___elambda__1), 4, 2); +lean_closure_set(x_10, 0, x_8); +lean_closure_set(x_10, 1, x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_recover(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_dbgTraceStateFn___lambda__1___boxed), 2, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l_Lean_Parser_recover_x27(x_1, x_3); +return x_4; +} +} static lean_object* _init_l_Lean_Parser_optionalFn___closed__1() { _start: { @@ -7992,79 +8730,85 @@ x_4 = lean_ctor_get(x_2, 4); lean_inc(x_4); if (lean_obj_tag(x_4) == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_5 = lean_ctor_get(x_2, 0); lean_inc(x_5); x_6 = lean_ctor_get(x_2, 1); lean_inc(x_6); x_7 = lean_ctor_get(x_2, 2); lean_inc(x_7); -x_8 = !lean_is_exclusive(x_3); -if (x_8 == 0) +x_8 = lean_ctor_get(x_2, 5); +lean_inc(x_8); +x_9 = !lean_is_exclusive(x_3); +if (x_9 == 0) { -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_3, 1); -x_10 = lean_ctor_get(x_3, 0); -lean_dec(x_10); -x_11 = l_Lean_Parser_SyntaxStack_size(x_5); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_nat_dec_eq(x_11, x_12); +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_10 = lean_ctor_get(x_3, 1); +x_11 = lean_ctor_get(x_3, 0); lean_dec(x_11); -if (x_13 == 0) -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_2); +x_12 = l_Lean_Parser_SyntaxStack_size(x_5); +x_13 = lean_unsigned_to_nat(0u); +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; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_15 = lean_ctor_get(x_2, 4); -lean_dec(x_15); -x_16 = lean_ctor_get(x_2, 3); +uint8_t x_15; +x_15 = !lean_is_exclusive(x_2); +if (x_15 == 0) +{ +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; +x_16 = lean_ctor_get(x_2, 5); lean_dec(x_16); -x_17 = lean_ctor_get(x_2, 2); +x_17 = lean_ctor_get(x_2, 4); lean_dec(x_17); -x_18 = lean_ctor_get(x_2, 1); +x_18 = lean_ctor_get(x_2, 3); lean_dec(x_18); -x_19 = lean_ctor_get(x_2, 0); +x_19 = lean_ctor_get(x_2, 2); lean_dec(x_19); +x_20 = lean_ctor_get(x_2, 1); +lean_dec(x_20); +x_21 = lean_ctor_get(x_2, 0); +lean_dec(x_21); lean_inc(x_5); -x_20 = l_Lean_Parser_SyntaxStack_back(x_5); +x_22 = l_Lean_Parser_SyntaxStack_back(x_5); lean_inc(x_7); -x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_7); -lean_ctor_set(x_21, 2, x_20); -lean_ctor_set(x_3, 0, x_21); -x_22 = lean_box(0); -lean_ctor_set(x_2, 4, x_22); +x_23 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_7); +lean_ctor_set(x_23, 2, x_22); +lean_ctor_set(x_3, 0, x_23); +x_24 = lean_box(0); +lean_ctor_set(x_2, 4, x_24); return x_2; } else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_dec(x_2); lean_inc(x_5); -x_23 = l_Lean_Parser_SyntaxStack_back(x_5); +x_25 = l_Lean_Parser_SyntaxStack_back(x_5); lean_inc(x_7); -x_24 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_7); -lean_ctor_set(x_24, 2, x_23); -lean_ctor_set(x_3, 0, x_24); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_26, 0, x_5); -lean_ctor_set(x_26, 1, x_6); -lean_ctor_set(x_26, 2, x_7); -lean_ctor_set(x_26, 3, x_3); -lean_ctor_set(x_26, 4, x_25); -return x_26; +x_26 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_26, 0, x_1); +lean_ctor_set(x_26, 1, x_7); +lean_ctor_set(x_26, 2, x_25); +lean_ctor_set(x_3, 0, x_26); +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_28, 0, x_5); +lean_ctor_set(x_28, 1, x_6); +lean_ctor_set(x_28, 2, x_7); +lean_ctor_set(x_28, 3, x_3); +lean_ctor_set(x_28, 4, x_27); +lean_ctor_set(x_28, 5, x_8); +return x_28; } } else { lean_free_object(x_3); -lean_dec(x_9); +lean_dec(x_10); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -8074,54 +8818,57 @@ return x_2; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_27 = lean_ctor_get(x_3, 1); -lean_inc(x_27); +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_ctor_get(x_3, 1); +lean_inc(x_29); lean_dec(x_3); -x_28 = l_Lean_Parser_SyntaxStack_size(x_5); -x_29 = lean_unsigned_to_nat(0u); -x_30 = lean_nat_dec_eq(x_28, x_29); -lean_dec(x_28); -if (x_30 == 0) +x_30 = l_Lean_Parser_SyntaxStack_size(x_5); +x_31 = lean_unsigned_to_nat(0u); +x_32 = lean_nat_dec_eq(x_30, x_31); +lean_dec(x_30); +if (x_32 == 0) { -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_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; if (lean_is_exclusive(x_2)) { lean_ctor_release(x_2, 0); lean_ctor_release(x_2, 1); lean_ctor_release(x_2, 2); lean_ctor_release(x_2, 3); lean_ctor_release(x_2, 4); - x_31 = x_2; + lean_ctor_release(x_2, 5); + x_33 = x_2; } else { lean_dec_ref(x_2); - x_31 = lean_box(0); + x_33 = lean_box(0); } lean_inc(x_5); -x_32 = l_Lean_Parser_SyntaxStack_back(x_5); +x_34 = l_Lean_Parser_SyntaxStack_back(x_5); lean_inc(x_7); -x_33 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_33, 0, x_1); -lean_ctor_set(x_33, 1, x_7); -lean_ctor_set(x_33, 2, x_32); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_27); -x_35 = lean_box(0); -if (lean_is_scalar(x_31)) { - x_36 = lean_alloc_ctor(0, 5, 0); +x_35 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_35, 0, x_1); +lean_ctor_set(x_35, 1, x_7); +lean_ctor_set(x_35, 2, x_34); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_29); +x_37 = lean_box(0); +if (lean_is_scalar(x_33)) { + x_38 = lean_alloc_ctor(0, 6, 0); } else { - x_36 = x_31; + x_38 = x_33; } -lean_ctor_set(x_36, 0, x_5); -lean_ctor_set(x_36, 1, x_6); -lean_ctor_set(x_36, 2, x_7); -lean_ctor_set(x_36, 3, x_34); -lean_ctor_set(x_36, 4, x_35); -return x_36; +lean_ctor_set(x_38, 0, x_5); +lean_ctor_set(x_38, 1, x_6); +lean_ctor_set(x_38, 2, x_7); +lean_ctor_set(x_38, 3, x_36); +lean_ctor_set(x_38, 4, x_37); +lean_ctor_set(x_38, 5, x_8); +return x_38; } else { -lean_dec(x_27); +lean_dec(x_29); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -10341,26 +11088,29 @@ return x_1; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_ctor_get(x_1, 1); x_8 = lean_ctor_get(x_1, 2); x_9 = lean_ctor_get(x_1, 3); x_10 = lean_ctor_get(x_1, 4); +x_11 = lean_ctor_get(x_1, 5); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_dec(x_1); -x_11 = l_Lean_Parser_ParserState_keepTop(x_6, x_2); -x_12 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_7); -lean_ctor_set(x_12, 2, x_8); -lean_ctor_set(x_12, 3, x_9); -lean_ctor_set(x_12, 4, x_10); -return x_12; +x_12 = l_Lean_Parser_ParserState_keepTop(x_6, x_2); +x_13 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +lean_ctor_set(x_13, 2, x_8); +lean_ctor_set(x_13, 3, x_9); +lean_ctor_set(x_13, 4, x_10); +lean_ctor_set(x_13, 5, x_11); +return x_13; } } } @@ -10397,20 +11147,23 @@ return x_1; } else { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_12 = lean_ctor_get(x_1, 0); x_13 = lean_ctor_get(x_1, 3); +x_14 = lean_ctor_get(x_1, 5); +lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_dec(x_1); -x_14 = l_Lean_Parser_SyntaxStack_shrink(x_12, x_2); -x_15 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_5); -lean_ctor_set(x_15, 2, x_3); -lean_ctor_set(x_15, 3, x_13); -lean_ctor_set(x_15, 4, x_4); -return x_15; +x_15 = l_Lean_Parser_SyntaxStack_shrink(x_12, x_2); +x_16 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_5); +lean_ctor_set(x_16, 2, x_3); +lean_ctor_set(x_16, 3, x_13); +lean_ctor_set(x_16, 4, x_4); +lean_ctor_set(x_16, 5, x_14); +return x_16; } } } @@ -10447,45 +11200,45 @@ lean_dec(x_7); x_8 = !lean_is_exclusive(x_4); if (x_8 == 0) { -lean_object* x_9; lean_object* x_10; uint8_t x_11; +lean_object* x_9; uint8_t x_10; lean_object* x_11; x_9 = lean_ctor_get(x_4, 0); -x_10 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); lean_inc(x_9); lean_inc(x_3); -x_11 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_9); -if (x_11 == 0) +x_10 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_9); +x_11 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); +if (x_10 == 0) { lean_object* x_12; x_12 = l_Lean_Parser_Error_merge(x_3, x_9); lean_ctor_set(x_4, 0, x_12); -lean_ctor_set(x_1, 0, x_10); +lean_ctor_set(x_1, 0, x_11); return x_1; } else { lean_dec(x_3); -lean_ctor_set(x_1, 0, x_10); +lean_ctor_set(x_1, 0, x_11); return x_1; } } else { -lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_object* x_13; uint8_t x_14; lean_object* x_15; x_13 = lean_ctor_get(x_4, 0); lean_inc(x_13); lean_dec(x_4); -x_14 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); lean_inc(x_13); lean_inc(x_3); -x_15 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_13); -if (x_15 == 0) +x_14 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_13); +x_15 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); +if (x_14 == 0) { lean_object* x_16; lean_object* x_17; x_16 = l_Lean_Parser_Error_merge(x_3, x_13); x_17 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_1, 4, x_17); -lean_ctor_set(x_1, 0, x_14); +lean_ctor_set(x_1, 0, x_15); return x_1; } else @@ -10495,71 +11248,75 @@ lean_dec(x_3); x_18 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_18, 0, x_13); lean_ctor_set(x_1, 4, x_18); -lean_ctor_set(x_1, 0, x_14); +lean_ctor_set(x_1, 0, x_15); return x_1; } } } else { -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; uint8_t x_26; +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; uint8_t x_26; lean_object* x_27; x_19 = lean_ctor_get(x_1, 0); x_20 = lean_ctor_get(x_1, 1); x_21 = lean_ctor_get(x_1, 2); x_22 = lean_ctor_get(x_1, 3); +x_23 = lean_ctor_get(x_1, 5); +lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); lean_inc(x_20); lean_inc(x_19); lean_dec(x_1); -x_23 = lean_ctor_get(x_4, 0); -lean_inc(x_23); +x_24 = lean_ctor_get(x_4, 0); +lean_inc(x_24); if (lean_is_exclusive(x_4)) { lean_ctor_release(x_4, 0); - x_24 = x_4; + x_25 = x_4; } else { lean_dec_ref(x_4); - x_24 = lean_box(0); + x_25 = lean_box(0); } -x_25 = l_Lean_Parser_SyntaxStack_shrink(x_19, x_2); -lean_inc(x_23); +lean_inc(x_24); lean_inc(x_3); -x_26 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_23); +x_26 = l___private_Lean_Parser_Types_0__Lean_Parser_beqError____x40_Lean_Parser_Types___hyg_423_(x_3, x_24); +x_27 = l_Lean_Parser_SyntaxStack_shrink(x_19, x_2); if (x_26 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = l_Lean_Parser_Error_merge(x_3, x_23); -if (lean_is_scalar(x_24)) { - x_28 = lean_alloc_ctor(1, 1, 0); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = l_Lean_Parser_Error_merge(x_3, x_24); +if (lean_is_scalar(x_25)) { + x_29 = lean_alloc_ctor(1, 1, 0); } else { - x_28 = x_24; + x_29 = x_25; } -lean_ctor_set(x_28, 0, x_27); -x_29 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_20); -lean_ctor_set(x_29, 2, x_21); -lean_ctor_set(x_29, 3, x_22); -lean_ctor_set(x_29, 4, x_28); -return x_29; +lean_ctor_set(x_29, 0, x_28); +x_30 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_30, 0, x_27); +lean_ctor_set(x_30, 1, x_20); +lean_ctor_set(x_30, 2, x_21); +lean_ctor_set(x_30, 3, x_22); +lean_ctor_set(x_30, 4, x_29); +lean_ctor_set(x_30, 5, x_23); +return x_30; } else { -lean_object* x_30; lean_object* x_31; +lean_object* x_31; lean_object* x_32; lean_dec(x_3); -if (lean_is_scalar(x_24)) { - x_30 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_25)) { + x_31 = lean_alloc_ctor(1, 1, 0); } else { - x_30 = x_24; + x_31 = x_25; } -lean_ctor_set(x_30, 0, x_23); -x_31 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_31, 0, x_25); -lean_ctor_set(x_31, 1, x_20); -lean_ctor_set(x_31, 2, x_21); -lean_ctor_set(x_31, 3, x_22); -lean_ctor_set(x_31, 4, x_30); -return x_31; +lean_ctor_set(x_31, 0, x_24); +x_32 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_20); +lean_ctor_set(x_32, 2, x_21); +lean_ctor_set(x_32, 3, x_22); +lean_ctor_set(x_32, 4, x_31); +lean_ctor_set(x_32, 5, x_23); +return x_32; } } } @@ -10593,25 +11350,28 @@ return x_1; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_8 = lean_ctor_get(x_1, 0); x_9 = lean_ctor_get(x_1, 1); x_10 = lean_ctor_get(x_1, 2); x_11 = lean_ctor_get(x_1, 3); +x_12 = lean_ctor_get(x_1, 5); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_12 = l_Lean_Parser_ParserState_keepTop(x_8, x_2); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set(x_14, 1, x_9); -lean_ctor_set(x_14, 2, x_10); -lean_ctor_set(x_14, 3, x_11); -lean_ctor_set(x_14, 4, x_13); -return x_14; +x_13 = l_Lean_Parser_ParserState_keepTop(x_8, x_2); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_9); +lean_ctor_set(x_15, 2, x_10); +lean_ctor_set(x_15, 3, x_11); +lean_ctor_set(x_15, 4, x_14); +lean_ctor_set(x_15, 5, x_12); +return x_15; } } } @@ -10721,77 +11481,83 @@ return x_11; } else { -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_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; x_12 = lean_ctor_get(x_5, 0); x_13 = lean_ctor_get(x_5, 2); x_14 = lean_ctor_get(x_5, 3); x_15 = lean_ctor_get(x_5, 4); +x_16 = lean_ctor_get(x_5, 5); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_dec(x_5); -x_16 = l_Lean_Parser_maxPrec; -x_17 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_17, 0, x_12); -lean_ctor_set(x_17, 1, x_16); -lean_ctor_set(x_17, 2, x_13); -lean_ctor_set(x_17, 3, x_14); -lean_ctor_set(x_17, 4, x_15); -x_18 = l_Lean_Parser_ParserState_stackSize(x_17); -x_19 = lean_box(0); -x_20 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_18, x_17, x_19); -lean_dec(x_18); -return x_20; +x_17 = l_Lean_Parser_maxPrec; +x_18 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_18, 0, x_12); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set(x_18, 2, x_13); +lean_ctor_set(x_18, 3, x_14); +lean_ctor_set(x_18, 4, x_15); +lean_ctor_set(x_18, 5, x_16); +x_19 = l_Lean_Parser_ParserState_stackSize(x_18); +x_20 = lean_box(0); +x_21 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_19, x_18, x_20); +lean_dec(x_19); +return x_21; } } else { -uint8_t x_21; -x_21 = !lean_is_exclusive(x_5); -if (x_21 == 0) +uint8_t x_22; +x_22 = !lean_is_exclusive(x_5); +if (x_22 == 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; -x_22 = lean_ctor_get(x_5, 1); -lean_dec(x_22); -x_23 = lean_ctor_get(x_1, 0); -lean_inc(x_23); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_23 = lean_ctor_get(x_5, 1); +lean_dec(x_23); +x_24 = lean_ctor_get(x_1, 0); +lean_inc(x_24); lean_dec(x_1); lean_ctor_set(x_5, 1, x_2); -x_24 = l_Lean_Parser_ParserState_stackSize(x_5); -x_25 = l_Lean_Parser_ParserState_pushSyntax(x_5, x_23); -x_26 = lean_box(0); -x_27 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_24, x_25, x_26); -lean_dec(x_24); -return x_27; +x_25 = l_Lean_Parser_ParserState_stackSize(x_5); +x_26 = l_Lean_Parser_ParserState_pushSyntax(x_5, x_24); +x_27 = lean_box(0); +x_28 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_25, x_26, x_27); +lean_dec(x_25); +return x_28; } else { -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_28 = lean_ctor_get(x_5, 0); -x_29 = lean_ctor_get(x_5, 2); -x_30 = lean_ctor_get(x_5, 3); -x_31 = lean_ctor_get(x_5, 4); +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; +x_29 = lean_ctor_get(x_5, 0); +x_30 = lean_ctor_get(x_5, 2); +x_31 = lean_ctor_get(x_5, 3); +x_32 = lean_ctor_get(x_5, 4); +x_33 = lean_ctor_get(x_5, 5); +lean_inc(x_33); +lean_inc(x_32); lean_inc(x_31); lean_inc(x_30); lean_inc(x_29); -lean_inc(x_28); lean_dec(x_5); -x_32 = lean_ctor_get(x_1, 0); -lean_inc(x_32); +x_34 = lean_ctor_get(x_1, 0); +lean_inc(x_34); lean_dec(x_1); -x_33 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_33, 0, x_28); -lean_ctor_set(x_33, 1, x_2); -lean_ctor_set(x_33, 2, x_29); -lean_ctor_set(x_33, 3, x_30); -lean_ctor_set(x_33, 4, x_31); -x_34 = l_Lean_Parser_ParserState_stackSize(x_33); -x_35 = l_Lean_Parser_ParserState_pushSyntax(x_33, x_32); -x_36 = lean_box(0); -x_37 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_34, x_35, x_36); -lean_dec(x_34); -return x_37; +x_35 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_35, 0, x_29); +lean_ctor_set(x_35, 1, x_2); +lean_ctor_set(x_35, 2, x_30); +lean_ctor_set(x_35, 3, x_31); +lean_ctor_set(x_35, 4, x_32); +lean_ctor_set(x_35, 5, x_33); +x_36 = l_Lean_Parser_ParserState_stackSize(x_35); +x_37 = l_Lean_Parser_ParserState_pushSyntax(x_35, x_34); +x_38 = lean_box(0); +x_39 = l_Lean_Parser_runLongestMatchParser___lambda__1(x_3, x_4, x_36, x_37, x_38); +lean_dec(x_36); +return x_39; } } } @@ -10844,19 +11610,19 @@ x_17 = lean_ctor_get(x_15, 4); lean_inc(x_17); if (lean_obj_tag(x_12) == 0) { -lean_object* x_60; -x_60 = lean_unsigned_to_nat(1u); -x_18 = x_60; -goto block_59; +lean_object* x_62; +x_62 = lean_unsigned_to_nat(1u); +x_18 = x_62; +goto block_61; } else { -lean_object* x_61; -x_61 = lean_unsigned_to_nat(0u); -x_18 = x_61; -goto block_59; +lean_object* x_63; +x_63 = lean_unsigned_to_nat(0u); +x_18 = x_63; +goto block_61; } -block_59: +block_61: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_inc(x_5); @@ -10869,19 +11635,19 @@ lean_ctor_set(x_20, 0, x_11); lean_ctor_set(x_20, 1, x_19); if (lean_obj_tag(x_17) == 0) { -lean_object* x_57; -x_57 = lean_unsigned_to_nat(1u); -x_21 = x_57; -goto block_56; +lean_object* x_59; +x_59 = lean_unsigned_to_nat(1u); +x_21 = x_59; +goto block_58; } else { -lean_object* x_58; -x_58 = lean_unsigned_to_nat(0u); -x_21 = x_58; -goto block_56; +lean_object* x_60; +x_60 = lean_unsigned_to_nat(0u); +x_21 = x_60; +goto block_58; } -block_56: +block_58: { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_inc(x_6); @@ -10951,91 +11717,97 @@ return x_38; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_39 = lean_ctor_get(x_15, 3); +x_40 = lean_ctor_get(x_15, 5); +lean_inc(x_40); lean_inc(x_39); lean_dec(x_15); -x_40 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_40, 0, x_30); -lean_ctor_set(x_40, 1, x_10); -lean_ctor_set(x_40, 2, x_16); -lean_ctor_set(x_40, 3, x_39); -lean_ctor_set(x_40, 4, x_17); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_6); -return x_41; +x_41 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_41, 0, x_30); +lean_ctor_set(x_41, 1, x_10); +lean_ctor_set(x_41, 2, x_16); +lean_ctor_set(x_41, 3, x_39); +lean_ctor_set(x_41, 4, x_17); +lean_ctor_set(x_41, 5, x_40); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_6); +return x_42; } } else { -uint8_t x_42; +uint8_t x_43; lean_dec(x_10); -x_42 = !lean_is_exclusive(x_15); -if (x_42 == 0) +x_43 = !lean_is_exclusive(x_15); +if (x_43 == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_43 = lean_ctor_get(x_15, 4); -lean_dec(x_43); -x_44 = lean_ctor_get(x_15, 2); +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = lean_ctor_get(x_15, 4); lean_dec(x_44); -x_45 = lean_ctor_get(x_15, 1); +x_45 = lean_ctor_get(x_15, 2); lean_dec(x_45); -x_46 = lean_ctor_get(x_15, 0); +x_46 = lean_ctor_get(x_15, 1); lean_dec(x_46); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_15); -lean_ctor_set(x_47, 1, x_6); -return x_47; +x_47 = lean_ctor_get(x_15, 0); +lean_dec(x_47); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_15); +lean_ctor_set(x_48, 1, x_6); +return x_48; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_15, 3); -lean_inc(x_48); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_15, 3); +x_50 = lean_ctor_get(x_15, 5); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_15); -x_49 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_49, 0, x_30); -lean_ctor_set(x_49, 1, x_31); -lean_ctor_set(x_49, 2, x_16); -lean_ctor_set(x_49, 3, x_48); -lean_ctor_set(x_49, 4, x_17); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_6); -return x_50; +x_51 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_51, 0, x_30); +lean_ctor_set(x_51, 1, x_31); +lean_ctor_set(x_51, 2, x_16); +lean_ctor_set(x_51, 3, x_49); +lean_ctor_set(x_51, 4, x_17); +lean_ctor_set(x_51, 5, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_6); +return x_52; } } } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_dec(x_17); lean_dec(x_16); lean_dec(x_10); -x_51 = lean_ctor_get(x_12, 0); -lean_inc(x_51); +x_53 = lean_ctor_get(x_12, 0); +lean_inc(x_53); lean_dec(x_12); -x_52 = l_Lean_Parser_ParserState_mergeErrors(x_15, x_13, x_51); +x_54 = l_Lean_Parser_ParserState_mergeErrors(x_15, x_13, x_53); lean_dec(x_13); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_6); -return x_53; +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_6); +return x_55; } } default: { -lean_object* x_54; lean_object* x_55; +lean_object* x_56; lean_object* x_57; lean_dec(x_17); lean_dec(x_16); lean_dec(x_6); -x_54 = l_Lean_Parser_ParserState_keepPrevError(x_15, x_13, x_11, x_12, x_10); +x_56 = l_Lean_Parser_ParserState_keepPrevError(x_15, x_13, x_11, x_12, x_10); lean_dec(x_13); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_5); -return x_55; +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_5); +return x_57; } } } @@ -21905,7 +22677,7 @@ x_1 = 0; return x_1; } } -LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -21917,7 +22689,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -21925,7 +22697,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168_(x_3, x_4); +x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -21934,7 +22706,7 @@ static lean_object* _init_l_Lean_Parser_instBEqLeadingIdentBehavior___closed__1( _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8168____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_beqLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8605____boxed), 2, 0); return x_1; } } @@ -21946,7 +22718,7 @@ x_1 = l_Lean_Parser_instBEqLeadingIdentBehavior___closed__1; return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1() { _start: { lean_object* x_1; @@ -21954,17 +22726,17 @@ x_1 = lean_mk_string_from_bytes("Lean.Parser.LeadingIdentBehavior.default", 40); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -21973,23 +22745,23 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -21997,23 +22769,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_incQuotDepth___closed__1; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -22021,7 +22793,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8() { _start: { lean_object* x_1; @@ -22029,33 +22801,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Parser.LeadingIdentBehavior.symbol", 39); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -22063,23 +22835,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_incQuotDepth___closed__1; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -22087,7 +22859,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14() { _start: { lean_object* x_1; @@ -22095,33 +22867,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Parser.LeadingIdentBehavior.both", 37); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -22129,23 +22901,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_incQuotDepth___closed__1; -x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15; +x_2 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15; x_3 = lean_alloc_ctor(4, 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___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19() { +static lean_object* _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18; +x_1 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -22153,7 +22925,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -22165,14 +22937,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5; +x_5 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7; +x_7 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -22185,14 +22957,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11; +x_11 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13; +x_13 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -22205,14 +22977,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17; +x_17 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19; +x_19 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -22220,13 +22992,13 @@ return x_20; } } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184_(x_3, x_2); +x_4 = l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -22235,7 +23007,7 @@ static lean_object* _init_l_Lean_Parser_instReprLeadingIdentBehavior___closed__1 _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____boxed), 2, 0); return x_1; } } @@ -23323,7 +24095,7 @@ lean_dec(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -23331,19 +24103,19 @@ x_4 = l_Lean_Parser_whitespace(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1___boxed), 3, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1; x_3 = lean_st_mk_ref(x_2, x_1); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) @@ -23365,16 +24137,16 @@ return x_7; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____lambda__1(x_1, x_2, x_3); +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____lambda__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1() { _start: { lean_object* x_1; @@ -23382,11 +24154,11 @@ x_1 = l_Lean_Parser_categoryParserFnRef; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1; x_3 = lean_st_ref_get(x_2, x_1); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) @@ -23408,19 +24180,19 @@ return x_7; } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1), 1, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } @@ -23732,107 +24504,114 @@ return x_5; } else { -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_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; x_16 = lean_ctor_get(x_6, 0); x_17 = lean_ctor_get(x_5, 0); x_18 = lean_ctor_get(x_5, 1); x_19 = lean_ctor_get(x_5, 2); x_20 = lean_ctor_get(x_5, 3); +x_21 = lean_ctor_get(x_5, 5); +lean_inc(x_21); lean_inc(x_20); lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_dec(x_5); -x_21 = lean_ctor_get(x_16, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_16, 1); +x_22 = lean_ctor_get(x_16, 0); lean_inc(x_22); +x_23 = lean_ctor_get(x_16, 1); +lean_inc(x_23); if (lean_is_exclusive(x_16)) { lean_ctor_release(x_16, 0); lean_ctor_release(x_16, 1); lean_ctor_release(x_16, 2); - x_23 = x_16; + x_24 = x_16; } else { lean_dec_ref(x_16); - x_23 = lean_box(0); + x_24 = lean_box(0); } -if (lean_is_scalar(x_23)) { - x_24 = lean_alloc_ctor(0, 3, 0); +if (lean_is_scalar(x_24)) { + x_25 = lean_alloc_ctor(0, 3, 0); } else { - x_24 = x_23; + x_25 = x_24; } -lean_ctor_set(x_24, 0, x_21); -lean_ctor_set(x_24, 1, x_22); -lean_ctor_set(x_24, 2, x_1); -lean_ctor_set(x_6, 0, x_24); -x_25 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_25, 0, x_17); -lean_ctor_set(x_25, 1, x_18); -lean_ctor_set(x_25, 2, x_19); -lean_ctor_set(x_25, 3, x_20); -lean_ctor_set(x_25, 4, x_6); -return x_25; +lean_ctor_set(x_25, 0, x_22); +lean_ctor_set(x_25, 1, x_23); +lean_ctor_set(x_25, 2, x_1); +lean_ctor_set(x_6, 0, x_25); +x_26 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_26, 0, x_17); +lean_ctor_set(x_26, 1, x_18); +lean_ctor_set(x_26, 2, x_19); +lean_ctor_set(x_26, 3, x_20); +lean_ctor_set(x_26, 4, x_6); +lean_ctor_set(x_26, 5, x_21); +return x_26; } } 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_36; lean_object* x_37; -x_26 = lean_ctor_get(x_6, 0); -lean_inc(x_26); -lean_dec(x_6); -x_27 = lean_ctor_get(x_5, 0); +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; +x_27 = lean_ctor_get(x_6, 0); lean_inc(x_27); -x_28 = lean_ctor_get(x_5, 1); +lean_dec(x_6); +x_28 = lean_ctor_get(x_5, 0); lean_inc(x_28); -x_29 = lean_ctor_get(x_5, 2); +x_29 = lean_ctor_get(x_5, 1); lean_inc(x_29); -x_30 = lean_ctor_get(x_5, 3); +x_30 = lean_ctor_get(x_5, 2); lean_inc(x_30); +x_31 = lean_ctor_get(x_5, 3); +lean_inc(x_31); +x_32 = lean_ctor_get(x_5, 5); +lean_inc(x_32); if (lean_is_exclusive(x_5)) { lean_ctor_release(x_5, 0); lean_ctor_release(x_5, 1); lean_ctor_release(x_5, 2); lean_ctor_release(x_5, 3); lean_ctor_release(x_5, 4); - x_31 = x_5; + lean_ctor_release(x_5, 5); + x_33 = x_5; } else { lean_dec_ref(x_5); - x_31 = lean_box(0); + x_33 = lean_box(0); } -x_32 = lean_ctor_get(x_26, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_26, 1); -lean_inc(x_33); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_34 = x_26; +x_34 = lean_ctor_get(x_27, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_27, 1); +lean_inc(x_35); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + lean_ctor_release(x_27, 1); + lean_ctor_release(x_27, 2); + x_36 = x_27; } else { - lean_dec_ref(x_26); - x_34 = lean_box(0); + lean_dec_ref(x_27); + x_36 = lean_box(0); } -if (lean_is_scalar(x_34)) { - x_35 = lean_alloc_ctor(0, 3, 0); +if (lean_is_scalar(x_36)) { + x_37 = lean_alloc_ctor(0, 3, 0); } else { - x_35 = x_34; + x_37 = x_36; } -lean_ctor_set(x_35, 0, x_32); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set(x_35, 2, x_1); -x_36 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_36, 0, x_35); -if (lean_is_scalar(x_31)) { - x_37 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_35); +lean_ctor_set(x_37, 2, x_1); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +if (lean_is_scalar(x_33)) { + x_39 = lean_alloc_ctor(0, 6, 0); } else { - x_37 = x_31; + x_39 = x_33; } -lean_ctor_set(x_37, 0, x_27); -lean_ctor_set(x_37, 1, x_28); -lean_ctor_set(x_37, 2, x_29); -lean_ctor_set(x_37, 3, x_30); -lean_ctor_set(x_37, 4, x_36); -return x_37; +lean_ctor_set(x_39, 0, x_28); +lean_ctor_set(x_39, 1, x_29); +lean_ctor_set(x_39, 2, x_30); +lean_ctor_set(x_39, 3, x_31); +lean_ctor_set(x_39, 4, x_38); +lean_ctor_set(x_39, 5, x_32); +return x_39; } } } @@ -26233,6 +27012,54 @@ l_Lean_Parser_orelseFnCore___lambda__1___closed__1 = _init_l_Lean_Parser_orelseF lean_mark_persistent(l_Lean_Parser_orelseFnCore___lambda__1___closed__1); l_Lean_Parser_orelseFnCore___lambda__1___closed__2 = _init_l_Lean_Parser_orelseFnCore___lambda__1___closed__2(); lean_mark_persistent(l_Lean_Parser_orelseFnCore___lambda__1___closed__2); +l_Lean_Parser_instBEqRecoveryContext___closed__1 = _init_l_Lean_Parser_instBEqRecoveryContext___closed__1(); +lean_mark_persistent(l_Lean_Parser_instBEqRecoveryContext___closed__1); +l_Lean_Parser_instBEqRecoveryContext = _init_l_Lean_Parser_instBEqRecoveryContext(); +lean_mark_persistent(l_Lean_Parser_instBEqRecoveryContext); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__1); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__2); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__3); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__4); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__5); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__6); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__7); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__8); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__9); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__10); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__11); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__12); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__13); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__14); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__15); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__16); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__17); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__18); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__19); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprRecoveryContext____x40_Lean_Parser_Basic___hyg_1410____closed__20); +l_Lean_Parser_instReprRecoveryContext___closed__1 = _init_l_Lean_Parser_instReprRecoveryContext___closed__1(); +lean_mark_persistent(l_Lean_Parser_instReprRecoveryContext___closed__1); +l_Lean_Parser_instReprRecoveryContext = _init_l_Lean_Parser_instReprRecoveryContext(); +lean_mark_persistent(l_Lean_Parser_instReprRecoveryContext); l_Lean_Parser_optionalFn___closed__1 = _init_l_Lean_Parser_optionalFn___closed__1(); lean_mark_persistent(l_Lean_Parser_optionalFn___closed__1); l_Lean_Parser_optionalFn___closed__2 = _init_l_Lean_Parser_optionalFn___closed__2(); @@ -26480,44 +27307,44 @@ l_Lean_Parser_instBEqLeadingIdentBehavior___closed__1 = _init_l_Lean_Parser_inst lean_mark_persistent(l_Lean_Parser_instBEqLeadingIdentBehavior___closed__1); l_Lean_Parser_instBEqLeadingIdentBehavior = _init_l_Lean_Parser_instBEqLeadingIdentBehavior(); lean_mark_persistent(l_Lean_Parser_instBEqLeadingIdentBehavior); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__1); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__2); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__3); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__4); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__5); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__6); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__7); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__8); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__9); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__10); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__11); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__12); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__13); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__14); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__15); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__16); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__17); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__18); -l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19(); -lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8184____closed__19); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__1); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__2); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__3); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__4); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__5); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__6); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__7); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__8); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__9); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__10); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__11); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__12); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__13); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__14); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__15); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__16); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__17); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__18); +l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19 = _init_l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19(); +lean_mark_persistent(l___private_Lean_Parser_Basic_0__Lean_Parser_reprLeadingIdentBehavior____x40_Lean_Parser_Basic___hyg_8621____closed__19); l_Lean_Parser_instReprLeadingIdentBehavior___closed__1 = _init_l_Lean_Parser_instReprLeadingIdentBehavior___closed__1(); lean_mark_persistent(l_Lean_Parser_instReprLeadingIdentBehavior___closed__1); l_Lean_Parser_instReprLeadingIdentBehavior = _init_l_Lean_Parser_instReprLeadingIdentBehavior(); @@ -26536,18 +27363,18 @@ l_Lean_Parser_instInhabitedParserCategory___closed__1 = _init_l_Lean_Parser_inst lean_mark_persistent(l_Lean_Parser_instInhabitedParserCategory___closed__1); l_Lean_Parser_instInhabitedParserCategory = _init_l_Lean_Parser_instInhabitedParserCategory(); lean_mark_persistent(l_Lean_Parser_instInhabitedParserCategory); -l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642____closed__1); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8642_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079____closed__1); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9079_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Parser_categoryParserFnRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_categoryParserFnRef); lean_dec_ref(res); -}l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____lambda__1___closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667____closed__1); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_8667_(lean_io_mk_world()); +}l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____lambda__1___closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104____closed__1); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_9104_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Parser_categoryParserFnExtension = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_categoryParserFnExtension); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index c90b223169..a525f9d628 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -32,6 +32,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthes LEAN_EXPORT lean_object* l_Lean_Parser_Command_mutual; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__10; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_open___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_formatter(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersT_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -54,6 +55,7 @@ static lean_object* l_Lean_Parser_Command_declSig_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_end_declRange___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_check_formatter___closed__1; static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_Command_extends_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_example___closed__4; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__11; @@ -76,6 +78,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_eoi_formatter___closed__2 static lean_object* l_Lean_Parser_Command_example_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structCtor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_moduleDoc_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim; static lean_object* l_Lean_Parser_Command_ctor___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_formatter___closed__2; static lean_object* l_Lean_Parser_Command_namespace___closed__3; @@ -90,13 +93,13 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openSimple_parenthesizer(lean_obj static lean_object* l_Lean_Parser_Command_unsafe___closed__1; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_formatter___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29; static lean_object* l_Lean_Parser_Command_attribute___closed__3; lean_object* l_Lean_Parser_rawIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_partial_formatter___closed__3; static lean_object* l_Lean_Parser_Command_protected___closed__1; static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__6; static lean_object* l_Lean_Parser_Command_declSig___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_partial_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -114,6 +117,7 @@ static lean_object* l_Lean_Parser_Term_set__option_formatter___closed__6; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_open_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_takeUntilFn___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_synth___closed__1; static lean_object* l_Lean_Parser_Command_set__option___closed__10; static lean_object* l_Lean_Parser_Command_open___closed__7; @@ -143,12 +147,12 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_formatter___closed static lean_object* l_Lean_Parser_Command_declVal_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__5; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__9; +static lean_object* l_Lean_Parser_Command_deriving___closed__16; static lean_object* l_Lean_Parser_Command_printAxioms_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openHiding___closed__11; static lean_object* l_Lean_Parser_Command_end_formatter___closed__2; extern lean_object* l_Lean_Parser_pushNone; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__43; static lean_object* l_Lean_Parser_Command_extends_formatter___closed__1; lean_object* l_Lean_Parser_rawIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__7; @@ -199,7 +203,6 @@ static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__16; static lean_object* l_Lean_Parser_Command_check_formatter___closed__1; 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_whereStructInst___closed__17; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641_(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_docString___closed__1; static lean_object* l_Lean_Parser_Command_openScoped_formatter___closed__1; static lean_object* l_Lean_Parser_Tactic_open_parenthesizer___closed__1; @@ -218,6 +221,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__7; static lean_object* l_Lean_Parser_Command_declModifiers___closed__14; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_private_formatter(lean_object*); static lean_object* l_Lean_Parser_Tactic_open___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__2; @@ -232,7 +236,6 @@ static lean_object* l_Lean_Parser_Command_universe_formatter___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_set__option_formatter(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eoi_parenthesizer___closed__1; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2619_(lean_object*); static lean_object* l_Lean_Parser_Command_openSimple___closed__2; lean_object* l_Lean_Parser_Term_whereDecls_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_example_parenthesizer___closed__1; @@ -252,7 +255,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRang static lean_object* l_Lean_Parser_Command_set__option___closed__4; static lean_object* l_Lean_Parser_Command_print___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_quot_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_partial_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__13; @@ -337,9 +339,7 @@ static lean_object* l_Lean_Parser_Command_declValSimple___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_quot_docString(lean_object*); static lean_object* l_Lean_Parser_Command_declVal___closed__6; static lean_object* l_Lean_Parser_Command_def___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__33; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__17; static lean_object* l_Lean_Parser_Term_quot___closed__10; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__15; @@ -374,6 +374,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_exit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_declRange___closed__7; extern lean_object* l_Lean_Parser_Term_structInst; @@ -427,6 +428,7 @@ extern lean_object* l_Lean_Parser_Term_binderDefault; static lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_import_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optNamedPrio_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_quot_formatter___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_in_parenthesizer___closed__1; @@ -463,8 +465,10 @@ static lean_object* l_Lean_Parser_Command_eraseAttr___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_check__failure___closed__1; static lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_check___closed__2; +lean_object* l_Lean_Parser_recover(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_protected_formatter___closed__2; static lean_object* l_Lean_Parser_Command_def_formatter___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Term_open; @@ -491,6 +495,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValEqns; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__1; static lean_object* l_Lean_Parser_Command_synth___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1Unbox_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_open___closed__1; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__4; @@ -505,6 +510,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange(le static lean_object* l_Lean_Parser_Command_example_formatter___closed__4; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__9; static lean_object* l_Lean_Parser_Command_deriving___closed__6; +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1___boxed(lean_object*); static lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__1; static lean_object* l_Lean_Parser_Command_print___closed__1; @@ -528,11 +534,11 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange___c static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_quot___closed__12; static lean_object* l_Lean_Parser_Term_precheckedQuot_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__10; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structFields_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_opaque___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35; static lean_object* l_Lean_Parser_Command_opaque___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_declRange___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_extends_formatter(lean_object*); @@ -570,7 +576,6 @@ static lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___close static lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_deriving___closed__14; static lean_object* l_Lean_Parser_Command_theorem___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__28; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot(lean_object*); static lean_object* l_Lean_Parser_Command_extends_formatter___closed__5; @@ -578,7 +583,6 @@ lean_object* l_Lean_Parser_nonReservedSymbol(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_print; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__4; @@ -607,10 +611,12 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_structureTk_parenthesizer(lean_ob LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__8; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__5; +static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_strLit; static lean_object* l_Lean_Parser_Command_openHiding___closed__5; static lean_object* l_Lean_Parser_Tactic_set__option___closed__1; +lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__2; static lean_object* l_Lean_Parser_Command_classInductive___closed__11; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__4; @@ -633,6 +639,7 @@ static lean_object* l_Lean_Parser_Command_abbrev___closed__8; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__2; lean_object* l_Lean_Parser_checkLinebreakBefore(lean_object*); lean_object* l_Lean_Parser_withOpenDecl_parenthesizer(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_2759____closed__39; LEAN_EXPORT lean_object* l_Lean_Parser_Command_init__quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__9; static lean_object* l_Lean_Parser_Command_extends___closed__4; @@ -713,17 +720,17 @@ static lean_object* l_Lean_Parser_Command_openScoped___closed__5; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declValSimple___closed__9; static lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openScoped_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_noncomputable___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving; static lean_object* l_Lean_Parser_Command_optionValue___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_declRange___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__31; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection; +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1; static lean_object* l_Lean_Parser_Term_quot___closed__15; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__9; 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_2641____closed__27; static lean_object* l_Lean_Parser_Command_declId___closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_nonrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -770,7 +777,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter(lean_obj static lean_object* l_Lean_Parser_Command_instance_formatter___closed__11; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_set__option___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44; LEAN_EXPORT lean_object* l_Lean_Parser_Command_print_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange___closed__5; @@ -792,7 +798,6 @@ static lean_object* l_Lean_Parser_Command_mutual___closed__5; static lean_object* l_Lean_Parser_Tactic_set__option___closed__7; lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__6; static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_computedFields_formatter(lean_object*); @@ -845,6 +850,7 @@ lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter(lean_object*, lean static lean_object* l_Lean_Parser_Command_reduce_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_init__quot___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_inductive; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__1; @@ -858,6 +864,7 @@ static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__3 static lean_object* l_Lean_Parser_Command_exit___closed__7; static lean_object* l_Lean_Parser_Command_check__failure___closed__5; static lean_object* l_Lean_Parser_Command_initializeKeyword_formatter___closed__2; +static lean_object* l_Lean_Parser_Command_declId_formatter___closed__12; static lean_object* l_Lean_Parser_Command_eoi___closed__5; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__10; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__9; @@ -875,7 +882,7 @@ extern lean_object* l_Lean_Parser_Term_whereDecls; static lean_object* l_Lean_Parser_Command_openOnly___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_printAxioms_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2; +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_open_formatter___closed__5; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__7; static lean_object* l_Lean_Parser_Command_quot___closed__11; @@ -919,7 +926,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_import_parenthesizer(lean_object* static lean_object* l___regBuiltin_Lean_Parser_Command_private_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_initialize___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_nonrec_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__30; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange___closed__2; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_export_formatter___closed__2; @@ -973,7 +979,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding_parenthesizer(lean_obj static lean_object* l_Lean_Parser_Term_set__option_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_universe___closed__7; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__22; static lean_object* l___regBuiltin_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__1; static lean_object* l_Lean_Parser_Command_eval___closed__1; @@ -1003,7 +1008,6 @@ static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_instance_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_axiom___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_init__quot; @@ -1011,6 +1015,7 @@ static lean_object* l_Lean_Parser_Term_set__option___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_nonrec___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_in_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eval(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_openRenamingItem_formatter___closed__1; static lean_object* l_Lean_Parser_Command_protected___closed__6; @@ -1030,13 +1035,13 @@ static lean_object* l_Lean_Parser_Command_namedPrio___closed__16; static lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structInstBinder; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46; static lean_object* l_Lean_Parser_Command_openRenaming___closed__7; static lean_object* l_Lean_Parser_Command_classTk_formatter___closed__1; static lean_object* l_Lean_Parser_Term_set__option___closed__1; static lean_object* l_Lean_Parser_Command_universe___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Command_set__option_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_universe___closed__8; @@ -1049,6 +1054,7 @@ lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_objec static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_openScoped___closed__4; static lean_object* l_Lean_Parser_Command_open___closed__4; +static lean_object* l_Lean_Parser_Command_def___closed__13; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__7; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__6; @@ -1067,10 +1073,12 @@ static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange___closed__1; static lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__23; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30; static lean_object* l___regBuiltin_Lean_Parser_Command_inductive_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_unsafe_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__7; static lean_object* l_Lean_Parser_Term_quot___closed__17; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_docComment_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optionValue___closed__1; @@ -1179,6 +1187,7 @@ static lean_object* l_Lean_Parser_Command_attribute___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_formatter___closed__2; static lean_object* l_Lean_Parser_Command_check___closed__8; static lean_object* l_Lean_Parser_Command_extends___closed__1; +static lean_object* l_Lean_Parser_Command_declId___closed__19; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__9; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__5; @@ -1211,6 +1220,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_synth_parenthesizer( static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__6; +uint8_t l_Char_isWhitespace(uint32_t); static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__4; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_openHiding___closed__7; @@ -1221,12 +1231,14 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_axiom_formatter(lean static lean_object* l_Lean_Parser_Command_in_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__17; static lean_object* l___regBuiltin_Lean_Parser_Command_quot_declRange___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_export_declRange___closed__4; static lean_object* l_Lean_Parser_Command_openDecl___closed__6; static lean_object* l_Lean_Parser_Command_partial___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_eval_declRange___closed__4; static lean_object* l_Lean_Parser_Term_precheckedQuot_parenthesizer___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2737_(lean_object*); static lean_object* l_Lean_Parser_Command_abbrev___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance_formatter___closed__6; @@ -1234,7 +1246,6 @@ lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structInstBinder___closed__6; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__10; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__47; static lean_object* l_Lean_Parser_Command_eoi___closed__1; static lean_object* l_Lean_Parser_Term_set__option___closed__3; static lean_object* l_Lean_Parser_Command_nonrec___closed__4; @@ -1249,7 +1260,6 @@ static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_computedField_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_import_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_classTk_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__40; static lean_object* l_Lean_Parser_Command_protected___closed__2; static lean_object* l_Lean_Parser_Command_addDocString_formatter___closed__3; static lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__3; @@ -1270,6 +1280,7 @@ static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___close static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange___closed__3; static lean_object* l_Lean_Parser_Term_set__option_formatter___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__5; static lean_object* l_Lean_Parser_Command_quot___closed__14; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__18; @@ -1403,6 +1414,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed__1; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersF_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_in_formatter(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_openSimple_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1449,7 +1461,6 @@ static lean_object* l_Lean_Parser_Command_theorem___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_printAxioms; static lean_object* l_Lean_Parser_Command_inductive___closed__14; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__32; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17; static lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange(lean_object*); @@ -1457,6 +1468,7 @@ static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__3; static lean_object* l_Lean_Parser_Command_openSimple___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange___closed__4; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13; static lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_theorem___closed__11; @@ -1477,7 +1489,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__ static lean_object* l_Lean_Parser_Command_namedPrio___closed__3; static lean_object* l_Lean_Parser_Command_export___closed__12; static lean_object* l_Lean_Parser_Command_moduleDoc___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__20; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__14; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__8; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__9; @@ -1489,6 +1500,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_computedField_format static lean_object* l_Lean_Parser_Command_opaque___closed__1; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__2; static lean_object* l_Lean_Parser_Command_namespace___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27; static lean_object* l_Lean_Parser_Command_check___closed__1; lean_object* l_Lean_Parser_trailingNode(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_nonrec___closed__2; @@ -1500,6 +1512,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_export_formatter(lea static lean_object* l___regBuiltin_Lean_Parser_Term_open_docString___closed__1; static lean_object* l_Lean_Parser_Term_open_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_extends_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_declRange___closed__6; static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1558,6 +1571,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_formatter___c static lean_object* l_Lean_Parser_Command_declaration___closed__14; static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Command_example_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Char_isWhitespace___boxed(lean_object*); static lean_object* l_Lean_Parser_Command_universe___closed__2; static lean_object* l_Lean_Parser_Command_end_formatter___closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1570,15 +1584,18 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_eraseAttr_formatter___clo static lean_object* l_Lean_Parser_Command_mutual___closed__2; static lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__5; +LEAN_EXPORT uint8_t l_Lean_Parser_Command_declId___lambda__1(uint32_t); static lean_object* l_Lean_Parser_Command_printAxioms___closed__7; static lean_object* l_Lean_Parser_Command_addDocString___closed__4; static lean_object* l_Lean_Parser_Tactic_set__option___closed__9; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___lambda__1___boxed(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_computedFields_formatter___closed__3; static lean_object* l_Lean_Parser_Command_export_formatter___closed__2; lean_object* l_Lean_Parser_ppHardLineUnlessUngrouped_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_computedFields_formatter___closed__2; lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT uint8_t l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1(uint32_t); lean_object* l_Lean_Parser_notFollowedBy(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__2; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__1; @@ -1586,7 +1603,9 @@ static lean_object* l_Lean_Parser_Command_structureTk_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_abbrev___closed__6; static lean_object* l_Lean_Parser_Command_noncomputable___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33; static lean_object* l_Lean_Parser_Command_attribute___closed__7; +lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_parenthesizer(lean_object*); @@ -1599,8 +1618,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_whereStructField_for static lean_object* l_Lean_Parser_Command_namedPrio___closed__18; static lean_object* l_Lean_Parser_Command_declVal___closed__5; static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__45; lean_object* l_Lean_Parser_symbol(lean_object*); static lean_object* l_Lean_Parser_Command_printAxioms_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_structFields_parenthesizer___closed__2; @@ -1625,6 +1642,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_check_declRange(lean static lean_object* l_Lean_Parser_Command_declValSimple___closed__5; static lean_object* l_Lean_Parser_Command_axiom___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_declRange___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11; static lean_object* l_Lean_Parser_Command_protected___closed__3; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_set__option_formatter___closed__2; @@ -1641,13 +1659,13 @@ static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openSimple_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_check_formatter___closed__4; static lean_object* l_Lean_Parser_Command_printAxioms___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_axiom_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__7; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structSimpleBinder_parenthesizer(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValEqns_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16; static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange___closed__2; static lean_object* l_Lean_Parser_Term_set__option_formatter___closed__5; static lean_object* l_Lean_Parser_Command_classInductive___closed__14; @@ -1682,10 +1700,9 @@ static lean_object* l_Lean_Parser_Command_openHiding___closed__10; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__4; extern lean_object* l_Lean_Parser_Termination_suffix; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot_docString(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__26; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__12; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__1; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initializeKeyword_parenthesizer___closed__4; @@ -1699,6 +1716,7 @@ static lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_optDeclSig___closed__4; static lean_object* l_Lean_Parser_Tactic_open___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52; static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__10; static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_protected_parenthesizer___closed__2; @@ -1723,6 +1741,7 @@ static lean_object* l_Lean_Parser_Command_variable___closed__2; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__11; static lean_object* l_Lean_Parser_Command_openRenamingItem_formatter___closed__2; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43; LEAN_EXPORT lean_object* l_Lean_Parser_Command_variable_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_reduce_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1763,6 +1782,7 @@ static lean_object* l_Lean_Parser_Command_declSig_formatter___closed__4; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__7; static lean_object* l_Lean_Parser_Command_ctor___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_openSimple_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange___closed__7; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__8; @@ -1775,7 +1795,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_eval_declRange___closed__ static lean_object* l_Lean_Parser_Command_synth_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__48; static lean_object* l_Lean_Parser_Command_eoi_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_section_formatter(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_formatter___closed__2; @@ -1804,15 +1823,15 @@ static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_classInductive___closed__3; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__19; static lean_object* l_Lean_Parser_Command_structure___closed__18; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34; LEAN_EXPORT lean_object* l_Lean_Parser_Command_inductive_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__21; +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1; static lean_object* l_Lean_Parser_Command_synth___closed__9; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__9; static lean_object* l_Lean_Parser_Command_structFields___closed__11; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersF; +static lean_object* l_Lean_Parser_Command_deriving___closed__15; static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange___closed__1; @@ -1946,6 +1965,7 @@ lean_object* l_Lean_Parser_node(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_optDeriving_formatter___closed__1; static lean_object* l_Lean_Parser_Command_classInductive___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_partial_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42; 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_deriving_declRange___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__13; @@ -1960,6 +1980,7 @@ static lean_object* l_Lean_Parser_Command_computedFields___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_formatter___closed__2; static lean_object* l_Lean_Parser_Command_protected_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_synth___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_quot___closed__4; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__8; @@ -1973,6 +1994,7 @@ static lean_object* l_Lean_Parser_Command_noncomputable_formatter___closed__2; static lean_object* l_Lean_Parser_Command_declValSimple___closed__3; static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openOnly_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_elem___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_addDocString___closed__9; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__6; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__3; @@ -1984,7 +2006,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__15; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_initialize_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_whereStructField___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__1; static lean_object* l_Lean_Parser_Command_eval_formatter___closed__2; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__18; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__4; @@ -2015,6 +2036,7 @@ static lean_object* l_Lean_Parser_Command_moduleDoc___closed__10; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__5; static lean_object* l_Lean_Parser_Command_check__failure___closed__6; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__9; +static lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__1; static lean_object* l_Lean_Parser_Command_declaration___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_set__option___closed__9; @@ -2027,9 +2049,11 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange___clos static lean_object* l_Lean_Parser_Command_def_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openHiding___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_classInductive_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1; static lean_object* l_Lean_Parser_Command_declModifiers___closed__10; static lean_object* l_Lean_Parser_Command_open___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__8; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__2; @@ -2046,9 +2070,9 @@ static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__6; static lean_object* l_Lean_Parser_Command_reduce_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_nonrec_parenthesizer(lean_object*); lean_object* l_Lean_Parser_andthen(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_docString(lean_object*); static lean_object* l_Lean_Parser_Command_declVal___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eoi_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_parenthesizer___closed__1; @@ -2065,10 +2089,12 @@ static lean_object* l_Lean_Parser_Command_opaque___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputable; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__4; static lean_object* l_Lean_Parser_Term_open_formatter___closed__2; +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_structImplicitBinder_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_formatter___closed__2; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__5; +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_universe; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange___closed__7; @@ -2077,10 +2103,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_check__failure_parenthesizer(lean static lean_object* l_Lean_Parser_Command_declaration___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__23; static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Term_quot___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declaration_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2128,7 +2152,6 @@ lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_obje static lean_object* l_Lean_Parser_Command_abbrev___closed__5; static lean_object* l_Lean_Parser_Command_namespace___closed__1; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_export_declRange___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_instance_parenthesizer(lean_object*); @@ -2140,6 +2163,7 @@ static lean_object* l_Lean_Parser_Command_init__quot___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_declValEqns_formatter___closed__2; static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__4; extern lean_object* l_Lean_Parser_rawIdent; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_openSimple_formatter___closed__2; static lean_object* l_Lean_Parser_Command_declModifiers___closed__3; static lean_object* l_Lean_Parser_Command_init__quot_formatter___closed__1; @@ -2165,7 +2189,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_inductive_formatter___clo static lean_object* l___regBuiltin_Lean_Parser_Command_check_declRange___closed__6; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__5; static lean_object* l_Lean_Parser_Command_printAxioms_parenthesizer___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__42; LEAN_EXPORT lean_object* l_Lean_Parser_Command_open; static lean_object* l_Lean_Parser_Command_def___closed__2; static lean_object* l_Lean_Parser_Command_computedFields_parenthesizer___closed__1; @@ -2231,6 +2254,7 @@ static lean_object* l_Lean_Parser_Command_init__quot_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_formatter___closed__1; static lean_object* l_Lean_Parser_Command_opaque___closed__12; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__3; static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__4; static lean_object* l_Lean_Parser_Command_openOnly___closed__4; @@ -2252,13 +2276,15 @@ static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__11; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_axiom___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_import_formatter(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24; +static lean_object* l_Lean_Parser_Command_def_formatter___closed__9; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__7; static lean_object* l_Lean_Parser_Command_unsafe___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_variable; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_Command_nonrec; static lean_object* l_Lean_Parser_Command_declValEqns___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__13; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_initialize_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_def___closed__8; @@ -2294,6 +2320,7 @@ static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___c static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_inductive___closed__7; static lean_object* l_Lean_Parser_Command_computedField___closed__13; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__7; static lean_object* l_Lean_Parser_Command_structCtor___closed__9; static lean_object* l_Lean_Parser_Command_optDeclSig___closed__3; @@ -2330,6 +2357,7 @@ static lean_object* l_Lean_Parser_Term_quot___closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_Command_universe_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_whereStructField_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Tactic_open_parenthesizer___closed__8; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759_(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_inductive___closed__4; @@ -2341,7 +2369,6 @@ static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___close static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__52; static lean_object* l_Lean_Parser_Command_private___closed__1; extern lean_object* l_Lean_Parser_ident; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eoi_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2358,6 +2385,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_formatter___c static lean_object* l_Lean_Parser_Command_classInductive___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Command_namespace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17; static lean_object* l_Lean_Parser_Command_def___closed__9; static lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__1; @@ -2391,6 +2419,7 @@ static lean_object* l_Lean_Parser_Command_eval_formatter___closed__4; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50; static lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_unsafe_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__1; @@ -2398,7 +2427,6 @@ static lean_object* l_Lean_Parser_Command_openRenaming___closed__8; static lean_object* l_Lean_Parser_Command_namespace___closed__8; static lean_object* l_Lean_Parser_Command_namespace_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__25; static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__1; static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__2; @@ -2426,10 +2454,12 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_eval; static lean_object* l_Lean_Parser_Command_whereStructField___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_moduleDoc_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structImplicitBinder_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_openDecl_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Command_declId___closed__20; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__1; static lean_object* l_Lean_Parser_Command_nonrec_parenthesizer___closed__1; @@ -2487,6 +2517,7 @@ static lean_object* l_Lean_Parser_Command_axiom___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__1; +uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed__7; static lean_object* l_Lean_Parser_Command_computedFields___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_unsafe_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2497,8 +2528,10 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_parenthesizer___cl lean_object* l_Lean_Parser_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__2; +lean_object* l_id___rarg___boxed(lean_object*); static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_addDocString___closed__8; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__4; @@ -2510,6 +2543,7 @@ lean_object* l_Lean_Parser_incQuotDepth(lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange___closed__4; lean_object* l_Lean_Parser_Term_matchAlts(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__7; lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix(lean_object*, lean_object*, lean_object*); @@ -2525,6 +2559,7 @@ lean_object* l_Lean_Parser_ppIndent_parenthesizer(lean_object*, lean_object*, le static lean_object* l_Lean_Parser_Command_noncomputable___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_declRange___closed__3; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26; LEAN_EXPORT lean_object* l_Lean_Parser_Command_namedPrio; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__6; @@ -2558,6 +2593,7 @@ static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__1; static lean_object* l_Lean_Parser_Term_open_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declValSimple___closed__11; static lean_object* l_Lean_Parser_Command_structInstBinder___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14; static lean_object* l_Lean_Parser_Command_ctor___closed__7; static lean_object* l_Lean_Parser_Command_declaration___closed__15; static lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthesizer___closed__2; @@ -2593,6 +2629,7 @@ lean_object* l_Lean_Parser_Term_doSeq_formatter(lean_object*, lean_object*, lean lean_object* l_Lean_Parser_registerAlias(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optionValue_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2; static lean_object* l_Lean_Parser_Command_def___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_formatter___closed__1; static lean_object* l_Lean_Parser_Command_initializeKeyword_parenthesizer___closed__5; @@ -2605,7 +2642,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__54; static lean_object* l_Lean_Parser_Command_example___closed__8; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__14; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__1; @@ -2614,6 +2650,7 @@ static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___close static lean_object* l_Lean_Parser_Command_instance___closed__5; static lean_object* l_Lean_Parser_Command_quot_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declId_formatter(lean_object*); +static lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer___closed__6; @@ -2650,6 +2687,7 @@ static lean_object* l_Lean_Parser_Command_declId_formatter___closed__8; lean_object* l_Lean_Parser_Term_leftArrow_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__12; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__1; +lean_object* l_UInt32_decEq___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__7; static lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__1; @@ -2679,7 +2717,6 @@ static lean_object* l_Lean_Parser_Command_eoi_formatter___closed__6; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openSimple___closed__5; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24; static lean_object* l_Lean_Parser_Command_computedField_parenthesizer___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_namespace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__16; @@ -2697,7 +2734,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_namedPrio_parenthesi static lean_object* l_Lean_Parser_Command_unsafe___closed__6; static lean_object* l_Lean_Parser_Command_declId___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_nonrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11; extern lean_object* l_Lean_Parser_Command_commentBody; static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange___closed__4; @@ -2754,7 +2790,6 @@ static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_commentBody_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__38; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__8; @@ -2763,7 +2798,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesize static lean_object* l_Lean_Parser_Command_print___closed__10; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__8; static lean_object* l_Lean_Parser_Command_namespace_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__35; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGe_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_universe___closed__3; lean_object* l_Lean_Parser_withOpenDeclFn(lean_object*, lean_object*, lean_object*); @@ -2774,6 +2808,7 @@ static lean_object* l_Lean_Parser_Command_declValSimple___closed__10; static lean_object* l_Lean_Parser_Command_deriving___closed__9; static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiers(uint8_t); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36; static lean_object* l_Lean_Parser_Command_instance___closed__3; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_universe_formatter(lean_object*); @@ -2800,7 +2835,6 @@ static lean_object* l_Lean_Parser_Command_eval_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initialize___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__46; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_addDocString(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange___closed__3; static lean_object* l_Lean_Parser_Command_open_formatter___closed__6; @@ -2814,6 +2848,7 @@ static lean_object* l_Lean_Parser_Command_synth_formatter___closed__3; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_print_formatter___closed__6; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31; static lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__8; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__5; @@ -2836,9 +2871,9 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_quot; static lean_object* l_Lean_Parser_Command_partial___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_eval_formatter___closed__1; static lean_object* l_Lean_Parser_Command_declId___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__41; static lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange___closed__3; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_axiom_parenthesizer(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Term_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__3; @@ -2876,7 +2911,6 @@ static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__5; static lean_object* l_Lean_Parser_Command_print___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declaration_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declaration___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__37; static lean_object* l_Lean_Parser_Command_mutual___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_def___closed__11; @@ -2885,6 +2919,7 @@ static lean_object* l_Lean_Parser_Command_def___closed__12; static lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange___closed__7; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_declRange___closed__2; lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_computedFields___closed__7; @@ -2896,7 +2931,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange___close static lean_object* l_Lean_Parser_Command_check__failure___closed__3; static lean_object* l_Lean_Parser_Command_classTk___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_protected_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50; static lean_object* l_Lean_Parser_Command_axiom___closed__5; static lean_object* l_Lean_Parser_Term_open_formatter___closed__5; static lean_object* l_Lean_Parser_Command_declModifiers___closed__1; @@ -2907,12 +2941,13 @@ lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_objec static lean_object* l___regBuiltin_Lean_Parser_Command_variable_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__2; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange___closed__5; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_openDecl_formatter___closed__1; +lean_object* l_Lean_PrettyPrinter_Formatter_recover_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_synth___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18; static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_initializeKeyword_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Term_quot___closed__9; @@ -2924,6 +2959,7 @@ static lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_inductive_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_initializeKeyword_formatter___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__4; +static lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__3; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__12; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__10; static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__3; @@ -2960,6 +2996,7 @@ static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__1; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__2; static lean_object* l_Lean_Parser_Command_in_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__2; +static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_formatter___closed__2; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__8; static lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__9; @@ -3000,7 +3037,6 @@ static lean_object* l_Lean_Parser_Term_quot___closed__14; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_nonrec_formatter___closed__2; static lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openSimple_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eval_formatter___closed__1; @@ -3035,6 +3071,7 @@ static lean_object* l_Lean_Parser_Command_unsafe_formatter___closed__1; static lean_object* l_Lean_Parser_Command_end_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structureTk___closed__1; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__10; static lean_object* l_Lean_Parser_Command_declId___closed__16; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__1; @@ -3058,15 +3095,16 @@ static lean_object* l_Lean_Parser_Command_universe___closed__5; static lean_object* l_Lean_Parser_Command_def_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_universe_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__7; +lean_object* l_instBEq___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export_formatter___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_computedField_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_ctor___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__36; static lean_object* l_Lean_Parser_Command_declModifiers___closed__6; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__8; static lean_object* l_Lean_Parser_Command_optionValue___closed__4; @@ -3081,7 +3119,10 @@ static lean_object* l_Lean_Parser_Command_addDocString___closed__7; static lean_object* l_Lean_Parser_Tactic_set__option___closed__3; static lean_object* l_Lean_Parser_Command_namedPrio___closed__12; static lean_object* l_Lean_Parser_Command_instance___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32; +static lean_object* l_Lean_Parser_Command_declId___closed__18; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_addDocString_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange___closed__2; @@ -3114,6 +3155,7 @@ static lean_object* l_Lean_Parser_Command_instance_formatter___closed__5; static lean_object* l_Lean_Parser_Command_open___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_ctor_parenthesizer(lean_object*); lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_declId___lambda__1___closed__4; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_check_declRange___closed__3; @@ -3122,6 +3164,7 @@ static lean_object* l_Lean_Parser_Command_structFields___closed__15; static lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_inductive___closed__19; static lean_object* l_Lean_Parser_Command_printAxioms___closed__9; +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_quot___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_parenthesizer___closed__2; @@ -3140,6 +3183,7 @@ static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_import___closed__7; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__6; static lean_object* l_Lean_Parser_Command_declValEqns___closed__3; +static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__11; static lean_object* l_Lean_Parser_Command_classInductive___closed__4; static lean_object* l_Lean_Parser_Command_noncomputable___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_ctor_parenthesizer___closed__1; @@ -3208,12 +3252,12 @@ static lean_object* l_Lean_Parser_Term_open_formatter___closed__1; lean_object* l_Lean_Parser_withOpenDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange___closed__7; static lean_object* l_Lean_Parser_Command_declValSimple___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__14; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__20; static lean_object* l___regBuiltin_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_deriving; static lean_object* l_Lean_Parser_Command_reduce_formatter___closed__1; static lean_object* l_Lean_Parser_Command_openDecl_formatter___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18; static lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__5; 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_openSimple___closed__3; @@ -3234,6 +3278,7 @@ static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_end_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_print_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__29; static lean_object* l_Lean_Parser_Command_quot___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange___closed__1; @@ -3268,6 +3313,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthes static lean_object* l_Lean_Parser_Command_structCtor___closed__3; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structExplicitBinder_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48; LEAN_EXPORT lean_object* l_Lean_Parser_Command_visibility_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openHiding___closed__3; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__5; @@ -3317,6 +3363,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__ static lean_object* l_Lean_Parser_Command_initialize___closed__8; static lean_object* l_Lean_Parser_Command_declaration___closed__4; static lean_object* l_Lean_Parser_Term_quot_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__25; @@ -3337,8 +3384,8 @@ static lean_object* l_Lean_Parser_Term_quot___closed__8; static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structure___closed__6; static lean_object* l_Lean_Parser_Command_inductive_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41; static lean_object* l_Lean_Parser_Command_inductive___closed__20; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_Command_namespace; static lean_object* l___regBuiltin_Lean_Parser_Command_print_formatter___closed__1; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__1; @@ -3369,7 +3416,6 @@ static lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___clo LEAN_EXPORT lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53; static lean_object* l_Lean_Parser_Command_addDocString_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc___closed__5; @@ -3425,6 +3471,7 @@ static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__8 static lean_object* l_Lean_Parser_Command_export___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_formatter___closed__2; static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersT_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_open_formatter___closed__3; static lean_object* l_Lean_Parser_Command_declSig___closed__4; @@ -3432,6 +3479,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding; LEAN_EXPORT lean_object* l_Lean_Parser_Command_reduce_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange___closed__7; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_optDefDeriving_formatter___closed__7; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structFields___closed__9; static lean_object* l_Lean_Parser_Command_nonrec___closed__3; @@ -3458,7 +3506,6 @@ static lean_object* l_Lean_Parser_Command_printAxioms_formatter___closed__4; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__9; static lean_object* l_Lean_Parser_Command_computedFields_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__5; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter___closed__2; static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__1; @@ -4557,6 +4604,202 @@ 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___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Char_isWhitespace___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_takeWhileFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2; +x_5 = l_Lean_Parser_andthenFn(x_1, x_4, x_2, x_3); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_id___rarg___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1; +x_2 = lean_box(1); +x_3 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set(x_3, 2, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_takeUntilFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +x_3 = lean_alloc_closure((void*)(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1), 3, 1); +lean_closure_set(x_3, 0, x_2); +x_4 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1; +x_2 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1; +return x_1; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1(uint32_t x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Char_isWhitespace(x_1); +if (x_2 == 0) +{ +uint32_t x_3; uint8_t x_4; +x_3 = 40; +x_4 = lean_uint32_dec_eq(x_1, x_3); +if (x_4 == 0) +{ +uint32_t x_5; uint8_t x_6; +x_5 = 41; +x_6 = lean_uint32_dec_eq(x_1, x_5); +if (x_6 == 0) +{ +uint32_t x_7; uint8_t x_8; +x_7 = 58; +x_8 = lean_uint32_dec_eq(x_1, x_7); +if (x_8 == 0) +{ +uint32_t x_9; uint8_t x_10; +x_9 = 123; +x_10 = lean_uint32_dec_eq(x_1, x_9); +if (x_10 == 0) +{ +uint32_t x_11; uint8_t x_12; +x_11 = 125; +x_12 = lean_uint32_dec_eq(x_1, x_11); +if (x_12 == 0) +{ +uint32_t x_13; uint8_t x_14; +x_13 = 124; +x_14 = lean_uint32_dec_eq(x_1, x_13); +return x_14; +} +else +{ +uint8_t x_15; +x_15 = 1; +return x_15; +} +} +else +{ +uint8_t x_16; +x_16 = 1; +return x_16; +} +} +else +{ +uint8_t x_17; +x_17 = 1; +return x_17; +} +} +else +{ +uint8_t x_18; +x_18 = 1; +return x_18; +} +} +else +{ +uint8_t x_19; +x_19 = 1; +return x_19; +} +} +else +{ +uint8_t x_20; +x_20 = 1; +return x_20; +} +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1; +x_2 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim() { +_start: +{ +lean_object* x_1; +x_1 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2; +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint32_t x_2; uint8_t x_3; lean_object* x_4; +x_2 = lean_unbox_uint32(x_1); +lean_dec(x_1); +x_3 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___lambda__1(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} static lean_object* _init_l_Lean_Parser_Command_quot___closed__1() { _start: { @@ -4739,7 +4982,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_quot_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(29u); +x_1 = lean_unsigned_to_nat(44u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4751,7 +4994,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_quot_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(30u); +x_1 = lean_unsigned_to_nat(45u); x_2 = lean_unsigned_to_nat(74u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4779,7 +5022,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_quot_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(29u); +x_1 = lean_unsigned_to_nat(44u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4791,7 +5034,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_quot_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(29u); +x_1 = lean_unsigned_to_nat(44u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5238,7 +5481,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(34u); +x_1 = lean_unsigned_to_nat(49u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5250,7 +5493,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(35u); +x_1 = lean_unsigned_to_nat(50u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5278,7 +5521,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(34u); +x_1 = lean_unsigned_to_nat(49u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5290,7 +5533,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(34u); +x_1 = lean_unsigned_to_nat(49u); x_2 = lean_unsigned_to_nat(13u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6574,6 +6817,88 @@ x_3 = l_Lean_Parser_Command_declModifiers(x_2); return x_3; } } +static lean_object* _init_l_Lean_Parser_Command_declId___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_UInt32_decEq___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___lambda__1___closed__1; +x_2 = lean_alloc_closure((void*)(l_instBEq___rarg), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1() { +_start: +{ +uint32_t x_1; lean_object* x_2; +x_1 = 125; +x_2 = lean_box_uint32(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1; +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_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1() { +_start: +{ +uint32_t x_1; lean_object* x_2; +x_1 = 44; +x_2 = lean_box_uint32(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId___lambda__1___closed__3; +x_2 = l_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1; +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 uint8_t l_Lean_Parser_Command_declId___lambda__1(uint32_t x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Char_isWhitespace(x_1); +if (x_2 == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = l_Lean_Parser_Command_declId___lambda__1___closed__2; +x_4 = l_Lean_Parser_Command_declId___lambda__1___closed__4; +x_5 = lean_box_uint32(x_1); +x_6 = l_List_elem___rarg(x_3, x_5, x_4); +return x_6; +} +else +{ +uint8_t x_7; +x_7 = 1; +return x_7; +} +} +} static lean_object* _init_l_Lean_Parser_Command_declId___closed__1() { _start: { @@ -6627,7 +6952,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId___closed__6() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes(", ", 2); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declId___lambda__1___boxed), 1, 0); return x_1; } } @@ -6636,27 +6961,25 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Command_declId___closed__6; -x_2 = l_Lean_Parser_symbol(x_1); +x_2 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_ident; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId___closed__7; -x_4 = 0; -x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); -return x_5; +x_2 = l_Lean_Parser_Command_declId___closed__7; +x_3 = l_Lean_Parser_recover(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__9() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("}", 1); +x_1 = lean_mk_string_from_bytes(", ", 2); return x_1; } } @@ -6672,21 +6995,21 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_declId___closed__11() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Command_declId___closed__8; -x_2 = l_Lean_Parser_Command_declId___closed__10; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; +x_4 = 0; +x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId___closed__5; -x_2 = l_Lean_Parser_Command_declId___closed__11; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("}", 1); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__13() { @@ -6694,7 +7017,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Command_declId___closed__12; -x_2 = l_Lean_Parser_optional(x_1); +x_2 = l_Lean_Parser_symbol(x_1); return x_2; } } @@ -6702,7 +7025,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_ident; +x_1 = l_Lean_Parser_Command_declId___closed__11; x_2 = l_Lean_Parser_Command_declId___closed__13; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -6711,30 +7034,59 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declId___closed__15() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_declId___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declId___closed__14; -x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId___closed__5; +x_2 = l_Lean_Parser_Command_declId___closed__14; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__16() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId___closed__3; -x_2 = l_Lean_Parser_Command_declId___closed__15; -x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___closed__15; +x_2 = l_Lean_Parser_optional(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_declId___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId___closed__2; +x_1 = l_Lean_Parser_ident; x_2 = l_Lean_Parser_Command_declId___closed__16; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declId___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_declId___closed__17; +x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__18; +x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_declId___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId___closed__2; +x_2 = l_Lean_Parser_Command_declId___closed__19; x_3 = l_Lean_Parser_withCache(x_1, x_2); return x_3; } @@ -6743,10 +7095,21 @@ static lean_object* _init_l_Lean_Parser_Command_declId() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_declId___closed__17; +x_1 = l_Lean_Parser_Command_declId___closed__20; return x_1; } } +LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___lambda__1___boxed(lean_object* x_1) { +_start: +{ +uint32_t x_2; uint8_t x_3; lean_object* x_4; +x_2 = lean_unbox_uint32(x_1); +lean_dec(x_1); +x_3 = l_Lean_Parser_Command_declId___lambda__1(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} static lean_object* _init_l_Lean_Parser_Command_declSig___closed__1() { _start: { @@ -7764,18 +8127,20 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_optDefDeriving___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDefDeriving___closed__7; -x_2 = l_Lean_Parser_Command_declId___closed__8; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_ident; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; +x_4 = 0; +x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Parser_Command_optDefDeriving___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_skip; +x_1 = l_Lean_Parser_Command_optDefDeriving___closed__7; x_2 = l_Lean_Parser_Command_optDefDeriving___closed__8; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -7784,8 +8149,18 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_optDefDeriving___closed__10() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_skip; +x_2 = l_Lean_Parser_Command_optDefDeriving___closed__9; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_optDefDeriving___closed__11() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_optDefDeriving___closed__9; +x_1 = l_Lean_Parser_Command_optDefDeriving___closed__10; x_2 = l_Lean_Parser_optional(x_1); return x_2; } @@ -7794,7 +8169,7 @@ static lean_object* _init_l_Lean_Parser_Command_optDefDeriving() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_optDefDeriving___closed__10; +x_1 = l_Lean_Parser_Command_optDefDeriving___closed__11; return x_1; } } @@ -7851,9 +8226,9 @@ static lean_object* _init_l_Lean_Parser_Command_def___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declVal; -x_2 = l_Lean_Parser_Command_optDefDeriving; -x_3 = l_Lean_Parser_andthen(x_1, x_2); +x_1 = l_Lean_Parser_Command_declId; +x_2 = l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim; +x_3 = l_Lean_Parser_recover(x_1, x_2); return x_3; } } @@ -7861,8 +8236,8 @@ static lean_object* _init_l_Lean_Parser_Command_def___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDeclSig; -x_2 = l_Lean_Parser_Command_def___closed__6; +x_1 = l_Lean_Parser_Command_declVal; +x_2 = l_Lean_Parser_Command_optDefDeriving; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; } @@ -7871,7 +8246,7 @@ static lean_object* _init_l_Lean_Parser_Command_def___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_optDeclSig; x_2 = l_Lean_Parser_Command_def___closed__7; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -7881,7 +8256,7 @@ static lean_object* _init_l_Lean_Parser_Command_def___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def___closed__5; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_def___closed__8; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -7890,30 +8265,40 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_def___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_def___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_def___closed__9; -x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_def___closed__5; +x_2 = l_Lean_Parser_Command_def___closed__9; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_def___closed__11() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def___closed__3; -x_2 = l_Lean_Parser_Command_def___closed__10; -x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_def___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_def___closed__10; +x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Parser_Command_def___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def___closed__2; +x_1 = l_Lean_Parser_Command_def___closed__3; x_2 = l_Lean_Parser_Command_def___closed__11; +x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_def___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_def___closed__2; +x_2 = l_Lean_Parser_Command_def___closed__12; x_3 = l_Lean_Parser_withCache(x_1, x_2); return x_3; } @@ -7922,7 +8307,7 @@ static lean_object* _init_l_Lean_Parser_Command_def() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_def___closed__12; +x_1 = l_Lean_Parser_Command_def___closed__13; return x_1; } } @@ -7989,7 +8374,7 @@ static lean_object* _init_l_Lean_Parser_Command_theorem___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_theorem___closed__6; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -8116,7 +8501,7 @@ static lean_object* _init_l_Lean_Parser_Command_opaque___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_opaque___closed__7; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -8346,7 +8731,7 @@ static lean_object* _init_l_Lean_Parser_Command_axiom___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_declSig; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -8716,8 +9101,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Command_derivingClasses___closed__8; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId___closed__7; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; x_4 = 0; x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); return x_5; @@ -9261,7 +9646,7 @@ static lean_object* _init_l_Lean_Parser_Command_inductive___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_inductive___closed__16; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -9428,7 +9813,7 @@ static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId; +x_1 = l_Lean_Parser_Command_def___closed__6; x_2 = l_Lean_Parser_Command_classInductive___closed__11; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -9761,7 +10146,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_structImplicitBinder___closed__9; -x_2 = l_Lean_Parser_Command_declId___closed__10; +x_2 = l_Lean_Parser_Command_declId___closed__13; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; } @@ -10555,8 +10940,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_quot___closed__9; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId___closed__7; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; x_4 = 0; x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); return x_5; @@ -11042,7 +11427,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(182u); +x_1 = lean_unsigned_to_nat(199u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11054,7 +11439,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(185u); +x_1 = lean_unsigned_to_nat(202u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11082,7 +11467,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(182u); +x_1 = lean_unsigned_to_nat(199u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11094,7 +11479,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(182u); +x_1 = lean_unsigned_to_nat(199u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -12000,28 +12385,38 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId___closed__6; -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_declId_formatter___closed__4() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ident_formatter), 5, 0); return x_1; } } +static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_recover_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__5() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___closed__9; +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_declId_formatter___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_formatter___boxed), 9, 4); @@ -12032,33 +12427,21 @@ lean_closure_set(x_6, 3, x_5); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId___closed__9; -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_declId_formatter___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__5; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__6; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___closed__12; +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_declId_formatter___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__6; x_2 = l_Lean_Parser_Command_declId_formatter___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -12069,32 +12452,44 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__8; -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_declId_formatter___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__9; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__2; +x_2 = l_Lean_Parser_Command_declId_formatter___closed__8; 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_declId_formatter___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__9; +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_declId_formatter___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId_formatter___closed__10; +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_declId_formatter___closed__12() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declId___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declId_formatter___closed__10; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__11; 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); @@ -12107,7 +12502,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declId_formatter___closed__1; -x_7 = l_Lean_Parser_Command_declId_formatter___closed__11; +x_7 = l_Lean_Parser_Command_declId_formatter___closed__12; 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; } @@ -13034,20 +13429,25 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_formatter___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__4; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__5; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__5; +x_4 = 0; +x_5 = lean_box(x_4); +x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_formatter___boxed), 9, 4); +lean_closure_set(x_6, 0, x_1); +lean_closure_set(x_6, 1, x_2); +lean_closure_set(x_6, 2, x_3); +lean_closure_set(x_6, 3, x_5); +return x_6; } } static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declModifiers_formatter___closed__13; +x_1 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__4; x_2 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13055,11 +13455,23 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_formatter___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_formatter___closed__13; +x_2 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__6; +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; +} +} LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving_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; -x_6 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__6; +x_6 = l_Lean_Parser_Command_optDefDeriving_formatter___closed__7; x_7 = l_Lean_Parser_optional_formatter(x_6, x_1, x_2, x_3, x_4, x_5); return x_7; } @@ -13095,28 +13507,26 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optDefDeriving_formatter), 5, 0); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_recover_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_abbrev_formatter___closed__4; -x_2 = l_Lean_Parser_Command_def_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; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optDefDeriving_formatter), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_abbrev_formatter___closed__3; +x_1 = l_Lean_Parser_Command_abbrev_formatter___closed__4; x_2 = l_Lean_Parser_Command_def_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13128,7 +13538,7 @@ static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_abbrev_formatter___closed__3; x_2 = l_Lean_Parser_Command_def_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13140,7 +13550,7 @@ static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_def_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13151,10 +13561,22 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_def_formatter___closed__8() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_def_formatter___closed__2; +x_2 = l_Lean_Parser_Command_def_formatter___closed__7; +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_def_formatter___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_def___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_def_formatter___closed__7; +x_3 = l_Lean_Parser_Command_def_formatter___closed__8; 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); @@ -13167,7 +13589,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_def_formatter___closed__1; -x_7 = l_Lean_Parser_Command_def_formatter___closed__8; +x_7 = l_Lean_Parser_Command_def_formatter___closed__9; 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; } @@ -13354,7 +13776,7 @@ static lean_object* _init_l_Lean_Parser_Command_theorem_formatter___closed__5() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_theorem_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13485,7 +13907,7 @@ static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_opaque_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13958,7 +14380,7 @@ static lean_object* _init_l_Lean_Parser_Command_axiom_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_theorem_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); @@ -14370,7 +14792,7 @@ static lean_object* _init_l_Lean_Parser_Command_computedField_formatter___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_computedField_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14630,7 +15052,7 @@ static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_derivingClasses_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14653,8 +15075,8 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_6 = l_Lean_Parser_Command_derivingClasses_formatter___closed__7; -x_7 = l_Lean_Parser_Command_declId___closed__6; -x_8 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_7 = l_Lean_Parser_Command_declId___closed__9; +x_8 = l_Lean_Parser_Command_declId_formatter___closed__5; x_9 = 0; x_10 = l_Lean_Parser_sepBy1_formatter(x_6, x_7, x_8, x_9, x_1, x_2, x_3, x_4, x_5); return x_10; @@ -14921,7 +15343,7 @@ static lean_object* _init_l_Lean_Parser_Command_inductive_formatter___closed__13 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_inductive_formatter___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15098,7 +15520,7 @@ static lean_object* _init_l_Lean_Parser_Command_classInductive_formatter___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_1 = l_Lean_Parser_Command_def_formatter___closed__3; x_2 = l_Lean_Parser_Command_classInductive_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15368,8 +15790,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Term_quot_formatter___closed__3; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_formatter___boxed), 9, 4); @@ -15481,7 +15903,7 @@ static lean_object* _init_l_Lean_Parser_Command_structCtor_formatter___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_structCtor_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15632,7 +16054,7 @@ static lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_formatter__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -15868,7 +16290,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_structImplicitBinder_formatter___closed__6; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__6; +x_2 = l_Lean_Parser_Command_declId_formatter___closed__7; 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); @@ -16108,7 +16530,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_ctor_formatter___closed__5; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -17702,28 +18124,38 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId___closed__6; -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_declId_parenthesizer___closed__4() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ident_parenthesizer), 5, 0); return x_1; } } +static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__5() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___closed__9; +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_declId_parenthesizer___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_parenthesizer___boxed), 9, 4); @@ -17734,33 +18166,21 @@ lean_closure_set(x_6, 3, x_5); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId___closed__9; -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_declId_parenthesizer___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__6; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId___closed__12; +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_declId_parenthesizer___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__6; x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -17771,32 +18191,44 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__8; -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_declId_parenthesizer___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__9; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__8; 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_declId_parenthesizer___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__9; +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_declId_parenthesizer___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__10; +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_declId_parenthesizer___closed__12() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declId___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__10; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__11; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -17809,7 +18241,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declId_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_declId_parenthesizer___closed__11; +x_7 = l_Lean_Parser_Command_declId_parenthesizer___closed__12; x_8 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -18739,20 +19171,25 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; -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; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; +x_4 = 0; +x_5 = lean_box(x_4); +x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_parenthesizer___boxed), 9, 4); +lean_closure_set(x_6, 0, x_1); +lean_closure_set(x_6, 1, x_2); +lean_closure_set(x_6, 2, x_3); +lean_closure_set(x_6, 3, x_5); +return x_6; } } static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13; +x_1 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__4; x_2 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18760,11 +19197,23 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declModifiers_parenthesizer___closed__13; +x_2 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6; +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; +} +} LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving_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; -x_6 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6; +x_6 = l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7; x_7 = l_Lean_Parser_optional_parenthesizer(x_6, x_1, x_2, x_3, x_4, x_5); return x_7; } @@ -18800,28 +19249,26 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optDefDeriving_parenthesizer), 5, 0); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_def_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; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optDefDeriving_parenthesizer), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; x_2 = l_Lean_Parser_Command_def_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18833,7 +19280,7 @@ static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__6() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_abbrev_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_def_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18845,7 +19292,7 @@ static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__7() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_def_parenthesizer___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18856,10 +19303,22 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_def_parenthesizer___closed__8() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_def_parenthesizer___closed__7; +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_def_parenthesizer___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_def___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_def_parenthesizer___closed__7; +x_3 = l_Lean_Parser_Command_def_parenthesizer___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -18872,7 +19331,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_def_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_def_parenthesizer___closed__8; +x_7 = l_Lean_Parser_Command_def_parenthesizer___closed__9; x_8 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -19059,7 +19518,7 @@ static lean_object* _init_l_Lean_Parser_Command_theorem_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_theorem_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -19190,7 +19649,7 @@ static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_opaque_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -19665,7 +20124,7 @@ static lean_object* _init_l_Lean_Parser_Command_axiom_parenthesizer___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_theorem_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); @@ -20077,7 +20536,7 @@ static lean_object* _init_l_Lean_Parser_Command_computedField_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_computedField_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20337,7 +20796,7 @@ static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20360,8 +20819,8 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_6 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7; -x_7 = l_Lean_Parser_Command_declId___closed__6; -x_8 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_7 = l_Lean_Parser_Command_declId___closed__9; +x_8 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_9 = 0; x_10 = l_Lean_Parser_sepBy1_parenthesizer(x_6, x_7, x_8, x_9, x_1, x_2, x_3, x_4, x_5); return x_10; @@ -20628,7 +21087,7 @@ static lean_object* _init_l_Lean_Parser_Command_inductive_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_inductive_parenthesizer___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20805,7 +21264,7 @@ static lean_object* _init_l_Lean_Parser_Command_classInductive_parenthesizer___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_def_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_classInductive_parenthesizer___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21075,8 +21534,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Term_quot_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_parenthesizer___boxed), 9, 4); @@ -21188,7 +21647,7 @@ static lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21339,7 +21798,7 @@ static lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesiz _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -21575,7 +22034,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__6; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__6; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__7; 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); @@ -21815,7 +22274,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_ctor_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -22619,27 +23078,29 @@ static lean_object* _init_l_Lean_Parser_Command_deriving___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_deriving___closed__7; -x_2 = l_Lean_Parser_Command_declId___closed__8; -x_3 = l_Lean_Parser_andthen(x_1, x_2); +x_1 = l_Lean_Parser_ident; +x_2 = l_Lean_Parser_skip; +x_3 = l_Lean_Parser_recover(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_deriving___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses; -x_2 = l_Lean_Parser_Command_deriving___closed__8; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Command_deriving___closed__8; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; +x_4 = 0; +x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Parser_Command_deriving___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_deriving___closed__5; +x_1 = l_Lean_Parser_Command_deriving___closed__7; x_2 = l_Lean_Parser_Command_deriving___closed__9; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -22649,7 +23110,7 @@ static lean_object* _init_l_Lean_Parser_Command_deriving___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDefDeriving___closed__2; +x_1 = l_Lean_Parser_Command_derivingClasses; x_2 = l_Lean_Parser_Command_deriving___closed__10; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -22658,30 +23119,50 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_deriving___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_deriving___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_deriving___closed__11; -x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_deriving___closed__5; +x_2 = l_Lean_Parser_Command_deriving___closed__11; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_deriving___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_deriving___closed__3; +x_1 = l_Lean_Parser_Command_optDefDeriving___closed__2; x_2 = l_Lean_Parser_Command_deriving___closed__12; -x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_deriving___closed__14() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_deriving___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_deriving___closed__13; +x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_deriving___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_deriving___closed__3; +x_2 = l_Lean_Parser_Command_deriving___closed__14; +x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_deriving___closed__16() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_deriving___closed__2; -x_2 = l_Lean_Parser_Command_deriving___closed__13; +x_2 = l_Lean_Parser_Command_deriving___closed__15; x_3 = l_Lean_Parser_withCache(x_1, x_2); return x_3; } @@ -22690,7 +23171,7 @@ static lean_object* _init_l_Lean_Parser_Command_deriving() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_deriving___closed__14; +x_1 = l_Lean_Parser_Command_deriving___closed__16; return x_1; } } @@ -22711,7 +23192,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(186u); +x_1 = lean_unsigned_to_nat(203u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22723,8 +23204,8 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(187u); -x_2 = lean_unsigned_to_nat(79u); +x_1 = lean_unsigned_to_nat(204u); +x_2 = lean_unsigned_to_nat(94u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -22738,7 +23219,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l___regBuiltin_Lean_Parser_Command_deriving_declRange___closed__1; x_2 = lean_unsigned_to_nat(26u); x_3 = l___regBuiltin_Lean_Parser_Command_deriving_declRange___closed__2; -x_4 = lean_unsigned_to_nat(79u); +x_4 = lean_unsigned_to_nat(94u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -22751,7 +23232,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(186u); +x_1 = lean_unsigned_to_nat(203u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22763,7 +23244,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(186u); +x_1 = lean_unsigned_to_nat(203u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22852,7 +23333,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_deriving_formatter___closed__3; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__5; +x_2 = l_Lean_Parser_Command_declId_formatter___closed__6; 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); @@ -22995,7 +23476,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_deriving_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; +x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__6; 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); @@ -23239,7 +23720,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(188u); +x_1 = lean_unsigned_to_nat(205u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23251,7 +23732,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(189u); +x_1 = lean_unsigned_to_nat(206u); x_2 = lean_unsigned_to_nat(62u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23279,7 +23760,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(188u); +x_1 = lean_unsigned_to_nat(205u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23291,7 +23772,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(188u); +x_1 = lean_unsigned_to_nat(205u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23370,7 +23851,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_optDeclSig_formatter___closed__5; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -23501,7 +23982,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -23679,7 +24160,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(190u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23691,7 +24172,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(191u); +x_1 = lean_unsigned_to_nat(208u); x_2 = lean_unsigned_to_nat(42u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23719,7 +24200,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(190u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23731,7 +24212,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(190u); +x_1 = lean_unsigned_to_nat(207u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24042,7 +24523,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(192u); +x_1 = lean_unsigned_to_nat(209u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24054,7 +24535,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(193u); +x_1 = lean_unsigned_to_nat(210u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24082,7 +24563,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(192u); +x_1 = lean_unsigned_to_nat(209u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24094,7 +24575,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(192u); +x_1 = lean_unsigned_to_nat(209u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24173,7 +24654,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_namespace_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -24270,7 +24751,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_namespace_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -24441,7 +24922,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(194u); +x_1 = lean_unsigned_to_nat(211u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24453,7 +24934,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(195u); +x_1 = lean_unsigned_to_nat(212u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24481,7 +24962,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(194u); +x_1 = lean_unsigned_to_nat(211u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24493,7 +24974,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(194u); +x_1 = lean_unsigned_to_nat(211u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24849,7 +25330,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(196u); +x_1 = lean_unsigned_to_nat(213u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24861,7 +25342,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(197u); +x_1 = lean_unsigned_to_nat(214u); x_2 = lean_unsigned_to_nat(55u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24889,7 +25370,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(196u); +x_1 = lean_unsigned_to_nat(213u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24901,7 +25382,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(196u); +x_1 = lean_unsigned_to_nat(213u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25277,7 +25758,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(198u); +x_1 = lean_unsigned_to_nat(215u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25289,7 +25770,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(199u); +x_1 = lean_unsigned_to_nat(216u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25317,7 +25798,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(198u); +x_1 = lean_unsigned_to_nat(215u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25329,7 +25810,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(198u); +x_1 = lean_unsigned_to_nat(215u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25704,7 +26185,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(200u); +x_1 = lean_unsigned_to_nat(217u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25716,7 +26197,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(201u); +x_1 = lean_unsigned_to_nat(218u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25744,7 +26225,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(200u); +x_1 = lean_unsigned_to_nat(217u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -25756,7 +26237,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(200u); +x_1 = lean_unsigned_to_nat(217u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26111,7 +26592,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(202u); +x_1 = lean_unsigned_to_nat(219u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26123,7 +26604,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(203u); +x_1 = lean_unsigned_to_nat(220u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26151,7 +26632,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(202u); +x_1 = lean_unsigned_to_nat(219u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26163,7 +26644,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(202u); +x_1 = lean_unsigned_to_nat(219u); x_2 = lean_unsigned_to_nat(43u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26518,7 +26999,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(204u); +x_1 = lean_unsigned_to_nat(221u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26530,7 +27011,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(205u); +x_1 = lean_unsigned_to_nat(222u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26557,7 +27038,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(204u); +x_1 = lean_unsigned_to_nat(221u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26569,7 +27050,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(204u); +x_1 = lean_unsigned_to_nat(221u); x_2 = lean_unsigned_to_nat(36u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26924,7 +27405,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(223u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26936,7 +27417,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(207u); +x_1 = lean_unsigned_to_nat(224u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26964,7 +27445,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(223u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26976,7 +27457,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(206u); +x_1 = lean_unsigned_to_nat(223u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27331,7 +27812,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(208u); +x_1 = lean_unsigned_to_nat(225u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27343,7 +27824,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(209u); +x_1 = lean_unsigned_to_nat(226u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27371,7 +27852,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(208u); +x_1 = lean_unsigned_to_nat(225u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27383,7 +27864,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(208u); +x_1 = lean_unsigned_to_nat(225u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27728,7 +28209,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(210u); +x_1 = lean_unsigned_to_nat(227u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27740,7 +28221,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(211u); +x_1 = lean_unsigned_to_nat(228u); x_2 = lean_unsigned_to_nat(9u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27768,7 +28249,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(210u); +x_1 = lean_unsigned_to_nat(227u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27780,7 +28261,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(210u); +x_1 = lean_unsigned_to_nat(227u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28121,7 +28602,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(212u); +x_1 = lean_unsigned_to_nat(229u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28133,7 +28614,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(213u); +x_1 = lean_unsigned_to_nat(230u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28161,7 +28642,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(212u); +x_1 = lean_unsigned_to_nat(229u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28173,7 +28654,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(212u); +x_1 = lean_unsigned_to_nat(229u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28259,7 +28740,7 @@ static lean_object* _init_l_Lean_Parser_Command_print_formatter___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_print_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28376,7 +28857,7 @@ static lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__4( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_print_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28579,7 +29060,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(214u); +x_1 = lean_unsigned_to_nat(231u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28591,7 +29072,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(215u); +x_1 = lean_unsigned_to_nat(232u); x_2 = lean_unsigned_to_nat(51u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28619,7 +29100,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(214u); +x_1 = lean_unsigned_to_nat(231u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28631,7 +29112,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(214u); +x_1 = lean_unsigned_to_nat(231u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28713,7 +29194,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_printAxioms_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -28825,7 +29306,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_printAxioms_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -28998,7 +29479,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(216u); +x_1 = lean_unsigned_to_nat(233u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29010,7 +29491,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(217u); +x_1 = lean_unsigned_to_nat(234u); x_2 = lean_unsigned_to_nat(13u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29038,7 +29519,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(216u); +x_1 = lean_unsigned_to_nat(233u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29050,7 +29531,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(216u); +x_1 = lean_unsigned_to_nat(233u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29475,7 +29956,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(219u); +x_1 = lean_unsigned_to_nat(236u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29487,7 +29968,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(220u); +x_1 = lean_unsigned_to_nat(237u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29515,7 +29996,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(219u); +x_1 = lean_unsigned_to_nat(236u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29527,7 +30008,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(219u); +x_1 = lean_unsigned_to_nat(236u); x_2 = lean_unsigned_to_nat(42u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29693,7 +30174,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_set__option_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -29890,7 +30371,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -30129,8 +30610,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Command_attribute___closed__6; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId___closed__7; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; x_4 = 0; x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); return x_5; @@ -30242,7 +30723,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(223u); +x_1 = lean_unsigned_to_nat(240u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30254,7 +30735,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(226u); +x_1 = lean_unsigned_to_nat(243u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30282,7 +30763,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(223u); +x_1 = lean_unsigned_to_nat(240u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30294,7 +30775,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(223u); +x_1 = lean_unsigned_to_nat(240u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30490,8 +30971,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Command_attribute_formatter___closed__4; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_formatter___boxed), 9, 4); @@ -30767,8 +31248,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Command_attribute_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_parenthesizer___boxed), 9, 4); @@ -31039,7 +31520,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(227u); +x_1 = lean_unsigned_to_nat(244u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31051,7 +31532,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(228u); +x_1 = lean_unsigned_to_nat(245u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31079,7 +31560,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(227u); +x_1 = lean_unsigned_to_nat(244u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31091,7 +31572,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(227u); +x_1 = lean_unsigned_to_nat(244u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31193,7 +31674,7 @@ static lean_object* _init_l_Lean_Parser_Command_export_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_export_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -31326,7 +31807,7 @@ static lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -31500,7 +31981,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_import_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(229u); +x_1 = lean_unsigned_to_nat(246u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31512,7 +31993,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_import_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(230u); +x_1 = lean_unsigned_to_nat(247u); x_2 = lean_unsigned_to_nat(10u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31540,7 +32021,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_import_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(229u); +x_1 = lean_unsigned_to_nat(246u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31552,7 +32033,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_import_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(229u); +x_1 = lean_unsigned_to_nat(246u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32131,8 +32612,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Command_openRenamingItem; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId___closed__7; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId___closed__10; x_4 = 0; x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); return x_5; @@ -32681,7 +33162,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(247u); +x_1 = lean_unsigned_to_nat(264u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32693,7 +33174,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(248u); +x_1 = lean_unsigned_to_nat(265u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32721,7 +33202,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(247u); +x_1 = lean_unsigned_to_nat(264u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32733,7 +33214,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(247u); +x_1 = lean_unsigned_to_nat(264u); x_2 = lean_unsigned_to_nat(36u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -32811,7 +33292,7 @@ static lean_object* _init_l_Lean_Parser_Command_openHiding_formatter___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_openHiding_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -32842,7 +33323,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_openHiding_formatter___closed__5; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -32998,7 +33479,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenamingItem_formatter___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_openRenamingItem_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); @@ -33095,7 +33576,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenaming_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_openRenaming_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33118,8 +33599,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l___regBuiltin_Lean_Parser_Command_openRenamingItem_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_formatter___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_formatter___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_formatter___boxed), 9, 4); @@ -33233,7 +33714,7 @@ static lean_object* _init_l_Lean_Parser_Command_openOnly_formatter___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_namedPrio_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33726,7 +34207,7 @@ static lean_object* _init_l_Lean_Parser_Command_openHiding_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33757,7 +34238,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -33913,7 +34394,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_openRenamingItem_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); @@ -34010,7 +34491,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenaming_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -34033,8 +34514,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; x_1 = l___regBuiltin_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declId___closed__6; -x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_declId___closed__9; +x_3 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_4 = 0; x_5 = lean_box(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_sepBy1_parenthesizer___boxed), 9, 4); @@ -34148,7 +34629,7 @@ static lean_object* _init_l_Lean_Parser_Command_openOnly_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_namedPrio_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -34775,7 +35256,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(250u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34787,7 +35268,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(252u); +x_1 = lean_unsigned_to_nat(269u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34815,7 +35296,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(250u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34827,7 +35308,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(250u); +x_1 = lean_unsigned_to_nat(267u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35504,7 +35985,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(255u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35516,7 +35997,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(257u); +x_1 = lean_unsigned_to_nat(274u); x_2 = lean_unsigned_to_nat(87u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35544,7 +36025,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(255u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35556,7 +36037,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(255u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(42u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35763,7 +36244,7 @@ static lean_object* _init_l_Lean_Parser_Command_initialize_formatter___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Command_initialize_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36053,7 +36534,7 @@ static lean_object* _init_l_Lean_Parser_Command_initialize_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Command_initialize_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36294,7 +36775,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(259u); +x_1 = lean_unsigned_to_nat(276u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36306,7 +36787,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(260u); +x_1 = lean_unsigned_to_nat(277u); x_2 = lean_unsigned_to_nat(47u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36334,7 +36815,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(259u); +x_1 = lean_unsigned_to_nat(276u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36346,7 +36827,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(259u); +x_1 = lean_unsigned_to_nat(276u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36691,7 +37172,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_addDocString_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(262u); +x_1 = lean_unsigned_to_nat(279u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36703,7 +37184,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_addDocString_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(263u); +x_1 = lean_unsigned_to_nat(280u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36731,7 +37212,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_addDocString_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(262u); +x_1 = lean_unsigned_to_nat(279u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36743,7 +37224,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_addDocString_declRa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(262u); +x_1 = lean_unsigned_to_nat(279u); x_2 = lean_unsigned_to_nat(42u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -36822,7 +37303,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_addDocString_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -36931,7 +37412,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_addDocString_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -37140,7 +37621,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(269u); +x_1 = lean_unsigned_to_nat(286u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -37152,7 +37633,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(270u); +x_1 = lean_unsigned_to_nat(287u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -37180,7 +37661,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(269u); +x_1 = lean_unsigned_to_nat(286u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -37192,7 +37673,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(269u); +x_1 = lean_unsigned_to_nat(286u); x_2 = lean_unsigned_to_nat(50u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -37271,7 +37752,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_genInjectiveTheorems_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -37368,7 +37849,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_2 = l_Lean_Parser_Command_declId_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); @@ -37690,7 +38171,7 @@ x_1 = l_Lean_Parser_Command_eoi___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2619_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2737_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -37751,7 +38232,7 @@ x_1 = l_Lean_Parser_Command_ctor___closed__8; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__1() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -37761,7 +38242,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2() { _start: { lean_object* x_1; @@ -37769,19 +38250,19 @@ x_1 = lean_mk_string_from_bytes("declModifiersF", 14); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3() { _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_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -37791,7 +38272,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_2641____closed__5() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -37801,7 +38282,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_2641____closed__6() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -37811,12 +38292,12 @@ 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_2641____closed__7() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__6; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6; x_3 = 1; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_1); @@ -37825,7 +38306,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8() { _start: { lean_object* x_1; @@ -37833,17 +38314,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_2641____closed__9() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8; 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_2641____closed__10() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10() { _start: { lean_object* x_1; @@ -37851,7 +38332,7 @@ x_1 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11() { _start: { lean_object* x_1; @@ -37859,17 +38340,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_2641____closed__12() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11; 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_2641____closed__13() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13() { _start: { lean_object* x_1; @@ -37877,7 +38358,7 @@ x_1 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__14() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14() { _start: { lean_object* x_1; @@ -37885,17 +38366,17 @@ x_1 = lean_mk_string_from_bytes("nestedDeclModifiers", 19); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15() { _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_2641____closed__14; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16() { _start: { lean_object* x_1; @@ -37903,19 +38384,19 @@ x_1 = lean_mk_string_from_bytes("declModifiersT", 14); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17() { _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_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -37925,7 +38406,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_2641____closed__19() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19() { _start: { lean_object* x_1; @@ -37933,17 +38414,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_2641____closed__20() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__19; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19; 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_2641____closed__21() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21() { _start: { lean_object* x_1; @@ -37951,17 +38432,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_2641____closed__22() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__21; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21; 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_2641____closed__23() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -37971,7 +38452,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -37981,7 +38462,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_2641____closed__25() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -37991,7 +38472,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_2641____closed__26() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -38001,7 +38482,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_2641____closed__27() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -38011,7 +38492,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_2641____closed__28() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -38021,7 +38502,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -38031,7 +38512,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_2641____closed__30() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -38041,7 +38522,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_2641____closed__31() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31() { _start: { lean_object* x_1; lean_object* x_2; @@ -38051,7 +38532,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_2641____closed__32() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32() { _start: { lean_object* x_1; lean_object* x_2; @@ -38061,7 +38542,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_2641____closed__33() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -38071,7 +38552,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -38081,7 +38562,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_2641____closed__35() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -38091,7 +38572,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_2641____closed__36() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36() { _start: { lean_object* x_1; lean_object* x_2; @@ -38101,7 +38582,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_2641____closed__37() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37() { _start: { lean_object* x_1; lean_object* x_2; @@ -38111,7 +38592,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_2641____closed__38() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -38121,7 +38602,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -38131,7 +38612,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_2641____closed__40() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40() { _start: { lean_object* x_1; lean_object* x_2; @@ -38141,7 +38622,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_2641____closed__41() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41() { _start: { lean_object* x_1; lean_object* x_2; @@ -38151,7 +38632,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_2641____closed__42() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42() { _start: { lean_object* x_1; lean_object* x_2; @@ -38161,7 +38642,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_2641____closed__43() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -38171,7 +38652,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44() { _start: { lean_object* x_1; lean_object* x_2; @@ -38181,7 +38662,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_2641____closed__45() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45() { _start: { lean_object* x_1; lean_object* x_2; @@ -38191,7 +38672,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_2641____closed__46() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46() { _start: { lean_object* x_1; lean_object* x_2; @@ -38201,7 +38682,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_2641____closed__47() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47() { _start: { lean_object* x_1; lean_object* x_2; @@ -38211,7 +38692,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_2641____closed__48() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48() { _start: { lean_object* x_1; @@ -38219,29 +38700,29 @@ x_1 = lean_mk_string_from_bytes("docComment", 10); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49() { _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_2641____closed__48; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50() { _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_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__48; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51() { _start: { lean_object* x_1; lean_object* x_2; @@ -38251,17 +38732,17 @@ 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_2641____closed__52() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50; 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_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53() { _start: { lean_object* x_1; lean_object* x_2; @@ -38271,7 +38752,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_2641____closed__54() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54() { _start: { lean_object* x_1; lean_object* x_2; @@ -38281,15 +38762,15 @@ 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_2641_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759_(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; lean_object* x_7; -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__1; -x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4; -x_5 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__5; -x_6 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__7; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1; +x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4; +x_5 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5; +x_6 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7; x_7 = l_Lean_Parser_registerAlias(x_2, x_3, x_4, x_5, x_6, x_1); if (lean_obj_tag(x_7) == 0) { @@ -38297,8 +38778,8 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__10; -x_10 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__9; +x_9 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10; +x_10 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9; x_11 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_2, x_10, x_8); if (lean_obj_tag(x_11) == 0) { @@ -38306,8 +38787,8 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec(x_11); -x_13 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__13; -x_14 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__12; +x_13 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13; +x_14 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12; x_15 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_2, x_14, x_12); if (lean_obj_tag(x_15) == 0) { @@ -38315,9 +38796,9 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); lean_dec(x_15); -x_17 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15; -x_18 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17; -x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18; +x_17 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15; +x_18 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17; +x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18; x_20 = l_Lean_Parser_registerAlias(x_17, x_18, x_19, x_5, x_6, x_16); if (lean_obj_tag(x_20) == 0) { @@ -38325,7 +38806,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_2641____closed__20; +x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_17, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -38333,7 +38814,7 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; 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_2641____closed__22; +x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22; x_26 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_17, x_25, x_24); if (lean_obj_tag(x_26) == 0) { @@ -38341,10 +38822,10 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); -x_28 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__23; +x_28 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23; x_29 = l_Lean_Parser_Command_declId___closed__2; -x_30 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24; -x_31 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__25; +x_30 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24; +x_31 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25; x_32 = l_Lean_Parser_registerAlias(x_28, x_29, x_30, x_31, x_6, x_27); if (lean_obj_tag(x_32) == 0) { @@ -38352,7 +38833,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__26; +x_34 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26; x_35 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_28, x_34, x_33); if (lean_obj_tag(x_35) == 0) { @@ -38360,7 +38841,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__27; +x_37 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27; x_38 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_28, x_37, x_36); if (lean_obj_tag(x_38) == 0) { @@ -38368,10 +38849,10 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); lean_dec(x_38); -x_40 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__28; +x_40 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28; x_41 = l_Lean_Parser_Command_declSig___closed__2; -x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29; -x_43 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__30; +x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29; +x_43 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30; x_44 = l_Lean_Parser_registerAlias(x_40, x_41, x_42, x_43, x_6, x_39); if (lean_obj_tag(x_44) == 0) { @@ -38379,7 +38860,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__31; +x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_40, x_46, x_45); if (lean_obj_tag(x_47) == 0) { @@ -38387,7 +38868,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_2641____closed__32; +x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_40, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -38395,10 +38876,10 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean 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_2641____closed__33; +x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33; x_53 = l_Lean_Parser_Command_declVal___closed__2; -x_54 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34; -x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__35; +x_54 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34; +x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35; x_56 = l_Lean_Parser_registerAlias(x_52, x_53, x_54, x_55, x_6, x_51); if (lean_obj_tag(x_56) == 0) { @@ -38406,7 +38887,7 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); lean_dec(x_56); -x_58 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__36; +x_58 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36; x_59 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_52, x_58, x_57); if (lean_obj_tag(x_59) == 0) { @@ -38414,7 +38895,7 @@ lean_object* x_60; lean_object* x_61; lean_object* x_62; x_60 = lean_ctor_get(x_59, 1); lean_inc(x_60); lean_dec(x_59); -x_61 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__37; +x_61 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37; x_62 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_52, x_61, x_60); if (lean_obj_tag(x_62) == 0) { @@ -38422,10 +38903,10 @@ lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean x_63 = lean_ctor_get(x_62, 1); lean_inc(x_63); lean_dec(x_62); -x_64 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__38; +x_64 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38; x_65 = l_Lean_Parser_Command_optDeclSig___closed__2; -x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39; -x_67 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__40; +x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__39; +x_67 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40; x_68 = l_Lean_Parser_registerAlias(x_64, x_65, x_66, x_67, x_6, x_63); if (lean_obj_tag(x_68) == 0) { @@ -38433,7 +38914,7 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; x_69 = lean_ctor_get(x_68, 1); lean_inc(x_69); lean_dec(x_68); -x_70 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__41; +x_70 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41; x_71 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_64, x_70, x_69); if (lean_obj_tag(x_71) == 0) { @@ -38441,7 +38922,7 @@ lean_object* x_72; lean_object* x_73; lean_object* x_74; x_72 = lean_ctor_get(x_71, 1); lean_inc(x_72); lean_dec(x_71); -x_73 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__42; +x_73 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42; x_74 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_64, x_73, x_72); if (lean_obj_tag(x_74) == 0) { @@ -38449,10 +38930,10 @@ lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean x_75 = lean_ctor_get(x_74, 1); lean_inc(x_75); lean_dec(x_74); -x_76 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__43; +x_76 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43; x_77 = l_Lean_Parser_Command_openDecl___closed__2; -x_78 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44; -x_79 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__45; +x_78 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44; +x_79 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45; x_80 = l_Lean_Parser_registerAlias(x_76, x_77, x_78, x_79, x_6, x_75); if (lean_obj_tag(x_80) == 0) { @@ -38460,7 +38941,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__46; +x_82 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_76, x_82, x_81); if (lean_obj_tag(x_83) == 0) { @@ -38468,7 +38949,7 @@ lean_object* x_84; lean_object* x_85; lean_object* x_86; x_84 = lean_ctor_get(x_83, 1); lean_inc(x_84); lean_dec(x_83); -x_85 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__47; +x_85 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47; x_86 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_76, x_85, x_84); if (lean_obj_tag(x_86) == 0) { @@ -38476,10 +38957,10 @@ lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean x_87 = lean_ctor_get(x_86, 1); lean_inc(x_87); lean_dec(x_86); -x_88 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49; -x_89 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50; -x_90 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51; -x_91 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__52; +x_88 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49; +x_89 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50; +x_90 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51; +x_91 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52; x_92 = l_Lean_Parser_registerAlias(x_88, x_89, x_90, x_91, x_6, x_87); if (lean_obj_tag(x_92) == 0) { @@ -38487,7 +38968,7 @@ lean_object* x_93; lean_object* x_94; lean_object* x_95; x_93 = lean_ctor_get(x_92, 1); lean_inc(x_93); lean_dec(x_92); -x_94 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53; +x_94 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53; x_95 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_88, x_94, x_93); if (lean_obj_tag(x_95) == 0) { @@ -38495,7 +38976,7 @@ lean_object* x_96; lean_object* x_97; lean_object* x_98; x_96 = lean_ctor_get(x_95, 1); lean_inc(x_96); lean_dec(x_95); -x_97 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__54; +x_97 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54; x_98 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_88, x_97, x_96); return x_98; } @@ -39158,7 +39639,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(300u); +x_1 = lean_unsigned_to_nat(317u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39170,7 +39651,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(301u); +x_1 = lean_unsigned_to_nat(318u); x_2 = lean_unsigned_to_nat(67u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39198,7 +39679,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(300u); +x_1 = lean_unsigned_to_nat(317u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39210,7 +39691,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(300u); +x_1 = lean_unsigned_to_nat(317u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39636,7 +40117,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(307u); +x_1 = lean_unsigned_to_nat(324u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39648,7 +40129,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(308u); +x_1 = lean_unsigned_to_nat(325u); x_2 = lean_unsigned_to_nat(82u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39676,7 +40157,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(307u); +x_1 = lean_unsigned_to_nat(324u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39688,7 +40169,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(307u); +x_1 = lean_unsigned_to_nat(324u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40168,7 +40649,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(314u); +x_1 = lean_unsigned_to_nat(331u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40180,7 +40661,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(315u); +x_1 = lean_unsigned_to_nat(332u); x_2 = lean_unsigned_to_nat(67u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40208,7 +40689,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(314u); +x_1 = lean_unsigned_to_nat(331u); x_2 = lean_unsigned_to_nat(29u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40220,7 +40701,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(314u); +x_1 = lean_unsigned_to_nat(331u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40682,7 +41163,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(319u); +x_1 = lean_unsigned_to_nat(336u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40694,7 +41175,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(320u); +x_1 = lean_unsigned_to_nat(337u); x_2 = lean_unsigned_to_nat(81u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40722,7 +41203,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(319u); +x_1 = lean_unsigned_to_nat(336u); x_2 = lean_unsigned_to_nat(29u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40734,7 +41215,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(319u); +x_1 = lean_unsigned_to_nat(336u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40826,7 +41307,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__4; +x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; x_2 = l_Lean_Parser_Tactic_set__option_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); @@ -40949,7 +41430,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__4; +x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_2 = l_Lean_Parser_Tactic_set__option_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); @@ -41236,7 +41717,25 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesize if (builtin) {res = l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_Command_quot___closed__1 = _init_l_Lean_Parser_Command_quot___closed__1(); +}l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__1); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___elambda__1___closed__2); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__1); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil___closed__2); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2 = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__2); +l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim = _init_l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim(); +lean_mark_persistent(l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim); +l_Lean_Parser_Command_quot___closed__1 = _init_l_Lean_Parser_Command_quot___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_quot___closed__1); l_Lean_Parser_Command_quot___closed__2 = _init_l_Lean_Parser_Command_quot___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_quot___closed__2); @@ -41621,6 +42120,18 @@ l_Lean_Parser_Command_declModifiers___closed__17 = _init_l_Lean_Parser_Command_d lean_mark_persistent(l_Lean_Parser_Command_declModifiers___closed__17); l_Lean_Parser_Command_declModifiers___closed__18 = _init_l_Lean_Parser_Command_declModifiers___closed__18(); lean_mark_persistent(l_Lean_Parser_Command_declModifiers___closed__18); +l_Lean_Parser_Command_declId___lambda__1___closed__1 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__1); +l_Lean_Parser_Command_declId___lambda__1___closed__2 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__2); +l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__3___boxed__const__1); +l_Lean_Parser_Command_declId___lambda__1___closed__3 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__3); +l_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__4___boxed__const__1); +l_Lean_Parser_Command_declId___lambda__1___closed__4 = _init_l_Lean_Parser_Command_declId___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_declId___lambda__1___closed__4); l_Lean_Parser_Command_declId___closed__1 = _init_l_Lean_Parser_Command_declId___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_declId___closed__1); l_Lean_Parser_Command_declId___closed__2 = _init_l_Lean_Parser_Command_declId___closed__2(); @@ -41655,6 +42166,12 @@ l_Lean_Parser_Command_declId___closed__16 = _init_l_Lean_Parser_Command_declId__ lean_mark_persistent(l_Lean_Parser_Command_declId___closed__16); l_Lean_Parser_Command_declId___closed__17 = _init_l_Lean_Parser_Command_declId___closed__17(); lean_mark_persistent(l_Lean_Parser_Command_declId___closed__17); +l_Lean_Parser_Command_declId___closed__18 = _init_l_Lean_Parser_Command_declId___closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_declId___closed__18); +l_Lean_Parser_Command_declId___closed__19 = _init_l_Lean_Parser_Command_declId___closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_declId___closed__19); +l_Lean_Parser_Command_declId___closed__20 = _init_l_Lean_Parser_Command_declId___closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_declId___closed__20); l_Lean_Parser_Command_declId = _init_l_Lean_Parser_Command_declId(); lean_mark_persistent(l_Lean_Parser_Command_declId); l_Lean_Parser_Command_declSig___closed__1 = _init_l_Lean_Parser_Command_declSig___closed__1(); @@ -41871,6 +42388,8 @@ l_Lean_Parser_Command_optDefDeriving___closed__9 = _init_l_Lean_Parser_Command_o lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving___closed__9); l_Lean_Parser_Command_optDefDeriving___closed__10 = _init_l_Lean_Parser_Command_optDefDeriving___closed__10(); lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving___closed__10); +l_Lean_Parser_Command_optDefDeriving___closed__11 = _init_l_Lean_Parser_Command_optDefDeriving___closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving___closed__11); l_Lean_Parser_Command_optDefDeriving = _init_l_Lean_Parser_Command_optDefDeriving(); lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving); l_Lean_Parser_Command_def___closed__1 = _init_l_Lean_Parser_Command_def___closed__1(); @@ -41897,6 +42416,8 @@ l_Lean_Parser_Command_def___closed__11 = _init_l_Lean_Parser_Command_def___close lean_mark_persistent(l_Lean_Parser_Command_def___closed__11); l_Lean_Parser_Command_def___closed__12 = _init_l_Lean_Parser_Command_def___closed__12(); lean_mark_persistent(l_Lean_Parser_Command_def___closed__12); +l_Lean_Parser_Command_def___closed__13 = _init_l_Lean_Parser_Command_def___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_def___closed__13); l_Lean_Parser_Command_def = _init_l_Lean_Parser_Command_def(); lean_mark_persistent(l_Lean_Parser_Command_def); l_Lean_Parser_Command_theorem___closed__1 = _init_l_Lean_Parser_Command_theorem___closed__1(); @@ -42701,6 +43222,8 @@ l_Lean_Parser_Command_declId_formatter___closed__10 = _init_l_Lean_Parser_Comman lean_mark_persistent(l_Lean_Parser_Command_declId_formatter___closed__10); l_Lean_Parser_Command_declId_formatter___closed__11 = _init_l_Lean_Parser_Command_declId_formatter___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_declId_formatter___closed__11); +l_Lean_Parser_Command_declId_formatter___closed__12 = _init_l_Lean_Parser_Command_declId_formatter___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_declId_formatter___closed__12); l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__1); l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2(); @@ -42858,6 +43381,8 @@ l_Lean_Parser_Command_optDefDeriving_formatter___closed__5 = _init_l_Lean_Parser lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_formatter___closed__5); l_Lean_Parser_Command_optDefDeriving_formatter___closed__6 = _init_l_Lean_Parser_Command_optDefDeriving_formatter___closed__6(); lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_formatter___closed__6); +l_Lean_Parser_Command_optDefDeriving_formatter___closed__7 = _init_l_Lean_Parser_Command_optDefDeriving_formatter___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_formatter___closed__7); 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(); @@ -42874,6 +43399,8 @@ l_Lean_Parser_Command_def_formatter___closed__7 = _init_l_Lean_Parser_Command_de lean_mark_persistent(l_Lean_Parser_Command_def_formatter___closed__7); l_Lean_Parser_Command_def_formatter___closed__8 = _init_l_Lean_Parser_Command_def_formatter___closed__8(); lean_mark_persistent(l_Lean_Parser_Command_def_formatter___closed__8); +l_Lean_Parser_Command_def_formatter___closed__9 = _init_l_Lean_Parser_Command_def_formatter___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_def_formatter___closed__9); l___regBuiltin_Lean_Parser_Command_def_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_def_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_def_formatter___closed__1); l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2(); @@ -43623,6 +44150,8 @@ l_Lean_Parser_Command_declId_parenthesizer___closed__10 = _init_l_Lean_Parser_Co lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__10); l_Lean_Parser_Command_declId_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__11); +l_Lean_Parser_Command_declId_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_declId_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_declId_parenthesizer___closed__12); l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__1); l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2(); @@ -43780,6 +44309,8 @@ l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__5 = _init_l_Lean_Pa lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__5); l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6(); lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__6); +l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7); 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(); @@ -43796,6 +44327,8 @@ l_Lean_Parser_Command_def_parenthesizer___closed__7 = _init_l_Lean_Parser_Comman lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__7); l_Lean_Parser_Command_def_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__8(); lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__8); +l_Lean_Parser_Command_def_parenthesizer___closed__9 = _init_l_Lean_Parser_Command_def_parenthesizer___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_def_parenthesizer___closed__9); l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__1); l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__2(); @@ -44423,6 +44956,10 @@ l_Lean_Parser_Command_deriving___closed__13 = _init_l_Lean_Parser_Command_derivi lean_mark_persistent(l_Lean_Parser_Command_deriving___closed__13); l_Lean_Parser_Command_deriving___closed__14 = _init_l_Lean_Parser_Command_deriving___closed__14(); lean_mark_persistent(l_Lean_Parser_Command_deriving___closed__14); +l_Lean_Parser_Command_deriving___closed__15 = _init_l_Lean_Parser_Command_deriving___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_deriving___closed__15); +l_Lean_Parser_Command_deriving___closed__16 = _init_l_Lean_Parser_Command_deriving___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_deriving___closed__16); l_Lean_Parser_Command_deriving = _init_l_Lean_Parser_Command_deriving(); lean_mark_persistent(l_Lean_Parser_Command_deriving); if (builtin) {res = l___regBuiltin_Lean_Parser_Command_deriving(lean_io_mk_world()); @@ -47008,122 +47545,122 @@ l_Lean_Parser_Command_eoi___closed__5 = _init_l_Lean_Parser_Command_eoi___closed lean_mark_persistent(l_Lean_Parser_Command_eoi___closed__5); l_Lean_Parser_Command_eoi = _init_l_Lean_Parser_Command_eoi(); lean_mark_persistent(l_Lean_Parser_Command_eoi); -if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2619_(lean_io_mk_world()); +if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2737_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_Parser_Command_declModifiersF = _init_l_Lean_Parser_Command_declModifiersF(); 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_2641____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__1); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__2); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__3); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__4); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__5); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__6); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__7); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__8); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__9); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__10); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__11); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__12(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__12); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__13(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__13); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__14); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__15); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__16); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__17); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__18); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__19(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__19); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__20(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__20); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__21(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__21); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__22(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__22); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__23(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__23); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__24); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__25(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__25); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__26(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__26); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__27(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__27); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__28(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__28); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__29); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__30(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__30); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__31(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__31); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__32(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__32); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__33(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__33); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__34); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__35(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__35); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__36(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__36); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__37(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__37); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__38(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__38); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__39); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__40 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__40(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__40); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__41 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__41(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__41); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__42 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__42(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__42); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__43 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__43(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__43); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__44); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__45 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__45(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__45); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__46 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__46(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__46); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__47 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__47(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__47); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__48 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__48(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__48); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__49); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__50); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__51); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__52 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__52(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__52); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__53); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__54 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__54(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641____closed__54); -if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2641_(lean_io_mk_world()); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__1); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__2); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__3); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__4); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__5); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__6); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__7); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__8); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__9); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__10); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__11); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__12); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__13); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__14); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__15); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__16); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__17); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__18); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__19); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__20); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__21); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__22); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__23); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__24); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__25); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__26); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__27); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__28); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__29); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__30); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__31); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__32); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__33); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__34); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__35); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__36); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__37); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__38); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__39 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__39(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__39); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__40); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__41); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__42); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__43); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__44); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__45); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__46); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__47); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__48); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__49); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__50); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__51); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__52); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__53); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759____closed__54); +if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2759_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_Parser_Term_open___closed__1 = _init_l_Lean_Parser_Term_open___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index 1fd448745f..a331288290 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -22,28 +22,31 @@ LEAN_EXPORT lean_object* l_Lean_Parser_evalInsideQuot(lean_object*, lean_object* lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__17; -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addBuiltinParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__3; static lean_object* l_Lean_Parser_getParserPriority___closed__1; static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_evalInsideQuot___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_State_kinds___default; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); lean_object* l_Lean_ScopedEnvExtension_activateScoped___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_Entry_toOLeanEntry(lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_registerAlias___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828_; static lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_getUnaryAlias(lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1; extern lean_object* l_Lean_Parser_SyntaxStack_empty; LEAN_EXPORT lean_object* l_Lean_findDeclarationRanges_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_40____closed__3; @@ -55,7 +58,6 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698 extern lean_object* l_Lean_declRangeExt; static lean_object* l_Lean_Parser_withOpenDeclFnCore___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getParserAliasInfo___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); @@ -63,27 +65,31 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229 LEAN_EXPORT lean_object* l_Lean_Parser_instCoeForAllParserParserAliasValue__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4516____closed__2; LEAN_EXPORT uint8_t l_Lean_Parser_ParserAliasInfo_autoGroupArgs___default(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_194_(lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__1; static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__8; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935_(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___spec__2(uint8_t, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__4___closed__2; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Parser_getCategory___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_getCategory(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102_(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4; static lean_object* l_Lean_Parser_ParserExtension_instInhabitedEntry___closed__1; static lean_object* l_Lean_Parser_parserOfStackFn___lambda__2___closed__2; LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_Parser_mkParserOfConstantUnsafe___spec__2___boxed(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__9; size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Parser_getCategory___spec__2(lean_object*, size_t, lean_object*); @@ -92,7 +98,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux_traverse___at___priv static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__2; lean_object* l_Lean_Data_Trie_empty(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__11; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__7; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_findDocString_x3f(lean_object*, lean_object*, uint8_t, lean_object*); @@ -100,13 +105,13 @@ lean_object* l_Lean_Name_toString(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_builtinTokenTable; lean_object* l_Lean_Parser_adaptCacheableContextFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingNode(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__8; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_addBuiltinTrailingParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1(lean_object*); static lean_object* l_Lean_Parser_getUnaryAlias___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -114,6 +119,7 @@ size_t lean_usize_mul(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Parser_addToken(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_SyntaxStack_size(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_mkParserOfConstantUnsafe(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4516_(lean_object*); @@ -123,7 +129,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_instInhabitedState; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_throwParserCategoryAlreadyDefined(lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_registerParserAttributeHook(lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbol(lean_object*, uint8_t); @@ -132,6 +137,7 @@ lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_parserOfStack___lambda__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__12; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_getParserAliasInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__2; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -147,24 +153,24 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698 lean_object* lean_environment_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_getConstAlias___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2; LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_Parser_mkParserOfConstantUnsafe___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4; static lean_object* l_Lean_Parser_getParserPriority___closed__4; static lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Parser_addToken___spec__3___closed__1; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__15; lean_object* l_Lean_PersistentHashMap_foldlMAux___at_Lean_mkModuleData___spec__3___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_findDeclarationRanges_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__1___lambda__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addTrailingParserAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Parser_evalParserConstUnsafe___spec__1(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_parserOfStackFn___closed__1; LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Parser_addToken___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_ParserExtension_instInhabitedState___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Parser_getParserPriority___closed__3; LEAN_EXPORT lean_object* l_Lean_findDeclarationRanges_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_isValidSyntaxNodeKind___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_getSyntaxKindOfParserAlias_x3f___boxed(lean_object*, lean_object*); @@ -179,10 +185,13 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ static lean_object* l_Lean_Parser_isParserCategory___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__3; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3; lean_object* l_Lean_Parser_ParserFn_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156_(lean_object*); static lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25; LEAN_EXPORT lean_object* l_Lean_Parser_getSyntaxNodeKinds___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserName(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__2; @@ -192,28 +201,26 @@ static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinPars static lean_object* l_Lean_Parser_registerParserAttributeHook___closed__1; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Parser_addLeadingParser___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_runParserAttributeHooks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserNameCore___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initializing(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_getAlias___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_swap(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__2(lean_object*, size_t, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2; -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4; static lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__1; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__4___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__6; static lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__2___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229____closed__1; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993____closed__3; lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__6; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserContext_resolveParserName(lean_object*, lean_object*); uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_builtinParserCategoriesRef; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1; static lean_object* l_Lean_Parser_withOpenDeclFnCore___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_mkParserState___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instCoeForAllParserParserAliasValue(lean_object*); @@ -224,9 +231,9 @@ LEAN_EXPORT lean_object* l_Lean_Parser_registerBuiltinNodeKind(lean_object*, lea static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11; lean_object* l_Lean_ScopedEnvExtension_addScopedEntry___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_throwUnknownParserCategory(lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getParserAliasInfo___spec__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__3___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__7; @@ -234,7 +241,6 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229 lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Parser_withOpenDeclFnCore___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_ParserAliasInfo_stackSz_x3f___default; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2; static lean_object* l_Lean_Parser_getBinaryAlias___rarg___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993____closed__2; @@ -244,8 +250,8 @@ static lean_object* l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Par LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_getParserPriority___boxed(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8; uint8_t lean_is_aux_recursor(lean_object*, lean_object*); lean_object* l_List_eraseDups___at_Lean_ResolveName_resolveGlobalName_loop___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Parser_getCategory___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -253,7 +259,6 @@ lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_getAlias___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Parser_addParserTokens___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_withOpenFn___closed__1; static lean_object* l_Lean_Parser_getParserAliasInfo___closed__1; static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__7; @@ -262,11 +267,10 @@ lean_object* l_Lean_Data_Trie_insert___rarg(lean_object*, lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_Parser_getParserAliasInfo___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12; LEAN_EXPORT lean_object* l_Lean_isRec___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1; static lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; extern lean_object* l_Lean_builtinDeclRanges; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__5___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_runParserCategory___closed__1; @@ -282,23 +286,22 @@ lean_object* l_Lean_Parser_ParserState_toErrorMsg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_ParserAliasInfo_stackSz_x3f___default___closed__1; lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3; uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_mkParserState(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_getSyntaxNodeKinds___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_State_categories___default; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__15; -LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_6009_; lean_object* l_Lean_registerAttributeOfBuilder(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_throwParserCategoryAlreadyDefined___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Parser_addToken___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_trailingNode(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserNameCore___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_parserAlias2kindRef; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__12; @@ -306,12 +309,13 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_40__ static lean_object* l_Lean_Parser_registerBuiltinNodeKind___closed__1; static lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg___closed__2; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__3___closed__3; +lean_object* l_Lean_Parser_ParserState_allErrors(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090_(lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Parser_registerAliasCore___rarg___closed__2; lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_SyntaxStack_get_x21(lean_object*, lean_object*); static lean_object* l_Lean_Parser_getConstAlias___rarg___closed__2; -LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825_; LEAN_EXPORT lean_object* l_Lean_Parser_parserExtension; LEAN_EXPORT lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__2___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -327,25 +331,19 @@ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_addParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterMap___at_Lean_Parser_resolveParserNameCore___spec__2(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19; uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_updateBuiltinTokens___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add(lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993____closed__7; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_declareTrailingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ensureConstantParserAlias(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getSyntaxKindOfParserAlias_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2; static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__4; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20; -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141_(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1; +static lean_object* l_Lean_Parser_mkParserState___closed__1; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__4___closed__3; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addTokenConfig___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserName___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -355,10 +353,10 @@ lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_find_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_runParserCategory___closed__2; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__10; uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_Parser_mkParserOfConstantUnsafe___spec__1(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2; lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_parserOfStackFn___lambda__2___closed__5; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__9; @@ -368,7 +366,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_parserOfStackFn___lambda__2___boxed(lean_ LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Parser_Extension_0__Lean_Parser_addTrailingParserAux___spec__1(lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_withOpenDeclFnCore___closed__1; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7; uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserAliasInfo_declName___default; static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__2; @@ -376,9 +373,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_getBinaryAlias(lean_object*); static lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Parser_getCategory___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addTokenConfig(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24; static lean_object* l_Lean_Parser_getParserAliasInfo___closed__2; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_getBinaryAlias___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__6; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1___boxed(lean_object*, lean_object*); @@ -388,7 +383,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at_Lean_Parser_i LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Parser_resolveParserNameCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__6; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4; lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserExtension_OLeanEntry_toEntry(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getAlias___spec__1___rarg___boxed(lean_object*, lean_object*); @@ -399,7 +393,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_instInhabitedOLeanEntry; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11; LEAN_EXPORT lean_object* l_panic___at_Lean_Parser_ParserExtension_addEntryImpl___spec__1(lean_object*); static lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); @@ -408,20 +401,20 @@ LEAN_EXPORT lean_object* l_Lean_Parser_parserAliases2infoRef; static lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__3; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__8; lean_object* l_Lean_Data_Trie_find_x3f_loop___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_6012_; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__7; lean_object* lean_usize_to_nat(size_t); static lean_object* l_Lean_Parser_ParserExtension_instInhabitedOLeanEntry___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__13; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___boxed(lean_object*); static lean_object* l_Lean_Parser_registerAlias___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_addParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); static lean_object* l_Lean_Parser_resolveParserNameCore_isParser___closed__2; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8; static lean_object* l_Lean_Parser_parserOfStack___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__2; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserNameCore(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__16; LEAN_EXPORT lean_object* l_List_forM___at_Lean_Parser_runParserAttributeHooks___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -441,6 +434,7 @@ static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229 LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addBuiltinParserCategory(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__4; static lean_object* l_Lean_Parser_ParserExtension_instInhabitedOLeanEntry___closed__2; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -450,13 +444,15 @@ static lean_object* l_Lean_Parser_getParserPriority___closed__2; static lean_object* l_Lean_Parser_parserOfStackFn___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_getUnaryAlias___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2; LEAN_EXPORT lean_object* l_IO_ofExcept___at___private_Lean_Parser_Extension_0__Lean_Parser_addBuiltinParserCategory___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__2___boxed(lean_object*); static lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_compileParserDescr(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26; LEAN_EXPORT lean_object* l_Lean_Parser_withOpenDeclFnCore(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_addEntryImpl(lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____lambda__2___closed__2; @@ -468,9 +464,9 @@ static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserExten LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_parserAttributeHooks; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_declareLeadingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_parserOfStackFn___lambda__2___closed__1; uint8_t lean_internal_is_stage0(lean_object*); @@ -483,19 +479,19 @@ static lean_object* l_Lean_Parser_parserOfStackFn___lambda__2___closed__4; static lean_object* l_Lean_findDeclarationRanges_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__1___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993____closed__8; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3; static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_mkCategoryAntiquotParserFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_getSyntaxNodeKinds___closed__1; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22; static lean_object* l_Lean_Parser_parserOfStackFn___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_ofExcept___at_Lean_Parser_addToken___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773_(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Parser_withCache(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3; lean_object* l_Lean_mkRawNatLit(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_findDeclarationRanges_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -506,6 +502,7 @@ static size_t l_Lean_PersistentHashMap_containsAux___at___private_Lean_Parser_Ex static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__4; static lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__3; static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkParserOfConstant(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getAlias___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -513,16 +510,16 @@ LEAN_EXPORT lean_object* l_Lean_Parser_parserOfStack(lean_object*, lean_object*) lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); static lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__1; static lean_object* l_Lean_Parser_resolveParserNameCore_isParser___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addTokenConfig___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3; uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_183_(uint8_t, uint8_t); -LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5881_; LEAN_EXPORT lean_object* l_Lean_Parser_registerAlias(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instCoeParserParserAliasValue(lean_object*); static lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_addBuiltinLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_findDeclarationRangesCore_x3f___at___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___spec__3___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_registerParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__2; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__3; @@ -530,21 +527,20 @@ LEAN_EXPORT lean_object* l_Lean_Parser_addToken___boxed(lean_object*, lean_objec static lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__5; uint64_t l_Lean_Name_hash___override(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_throwParserCategoryAlreadyDefined___rarg___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24; static uint8_t l_Lean_Parser_isValidSyntaxNodeKind___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Parser_withOpenDeclFnCore___spec__1(size_t, size_t, lean_object*); lean_object* l_Repr_addAppParen(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Parser_addToken___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_categoryParserFnImpl(lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_runParserAttributeHooks(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_getParserPriority___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_getConstAlias(lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at___private_Lean_Parser_Extension_0__Lean_Parser_addBuiltinParserCategory___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_getSyntaxNodeKinds(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1; lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_6____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -558,17 +554,18 @@ LEAN_EXPORT lean_object* l_Lean_Parser_parserOfStack___elambda__1(lean_object*, lean_object* l_Lean_Parser_initCacheForInput(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instReprParserName; LEAN_EXPORT lean_object* l_Lean_Parser_getSyntaxKindOfParserAlias_x3f(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__3___closed__2; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__5; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___closed__4; -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11; lean_object* l_Lean_RBNode_find___at_Lean_findDeclarationRanges_x3f___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withOpenDeclFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__20; LEAN_EXPORT lean_object* l_Lean_Parser_getAlias(lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9; static lean_object* l_Lean_Parser_getConstAlias___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_isParserAlias___boxed(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); @@ -599,13 +596,12 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Parser_Ex static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_40____closed__2; extern lean_object* l_Lean_noConfusionExt; static lean_object* l_Lean_Parser_getConstAlias___rarg___closed__1; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Parser_Extension_0__Lean_Parser_addParserCategoryCore___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); static lean_object* l_Lean_Parser_registerAlias___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_parserAliasesRef; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2; static lean_object* l_Lean_Parser_instReprParserName___closed__1; extern lean_object* l_Id_instMonadId; lean_object* l_Lean_Parser_TokenMap_insert___rarg(lean_object*, lean_object*, lean_object*); @@ -615,45 +611,47 @@ lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Parser_Extension_0__Lean_Parser_addTrailingParserAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___lambda__1(lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Parser_registerAliasCore___rarg___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Parser_addToken___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_parserOfStackFn___lambda__1(lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__9; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_addBuiltinParserCategory___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__12; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10; lean_object* lean_io_error_to_string(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___closed__3; static lean_object* l_Lean_Parser_getConstAlias___rarg___closed__4; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_isParserCategory___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087_(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3; size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__2___closed__1; -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7; +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Parser_resolveParserNameCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_declareBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_instInhabitedEntry; LEAN_EXPORT lean_object* l_Lean_Parser_withOpenDecl(lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_ParserExtension_State_tokens___default; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserAliasInfo_autoGroupArgs___default___boxed(lean_object*); +LEAN_EXPORT lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5884_; LEAN_EXPORT lean_object* l_Lean_Parser_addParserCategory(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_withOpenFn___closed__2; LEAN_EXPORT uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_getBinaryAlias___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkCategoryAntiquotParser(lean_object*); lean_object* l_Lean_Syntax_isNatLit_x3f(lean_object*); static lean_object* l_Lean_Parser_parserOfStackFn___lambda__1___closed__1; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__10; -static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17; lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6____closed__1; @@ -662,11 +660,11 @@ LEAN_EXPORT lean_object* l_Lean_Parser_addSyntaxNodeKind(lean_object*, lean_obje static lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__2; uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Parser_addLeadingParser___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5; LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_updateBuiltinTokens(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerAttributeImplBuilder(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4229_(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6; lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__14; lean_object* l_IO_ofExcept___at_Lean_declareBuiltin___spec__2(lean_object*, lean_object*); @@ -676,11 +674,14 @@ uint8_t l_Lean_Exception_isRuntime(lean_object*); static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__3___closed__4; LEAN_EXPORT uint8_t l_Lean_Parser_leadingIdentBehavior(lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__4; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13; +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3773____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_categoryParserFnRef; LEAN_EXPORT lean_object* l_Lean_Parser_resolveParserNameCore_isParser(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_registerAliasCore___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux_traverse___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_84____closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_isParserAlias(lean_object*, lean_object*); @@ -697,23 +698,24 @@ lean_object* l_Lean_Parser_SyntaxStack_back(lean_object*); static lean_object* l_Lean_Parser_resolveParserNameCore___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Parser_getCategory___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15; +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__18; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_updateBuiltinTokens___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1; -static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2; static lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_throwParserCategoryAlreadyDefined___rarg___closed__1; static lean_object* l_Lean_Parser_parserOfStackFn___closed__2; static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3993____closed__4; -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1(lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Parser_Extension_0__Lean_Parser_withNamespaces___spec__1(uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2; static lean_object* l_Lean_Parser_categoryParserFnImpl___closed__5; LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Parser_getSyntaxKindOfParserAlias_x3f___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_add___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_Parser_mkParserOfConstantUnsafe___spec__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_evalParserConstUnsafe(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18; +uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withOpen(lean_object*); static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6____closed__1() { @@ -9502,21 +9504,32 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } +static lean_object* _init_l_Lean_Parser_mkParserState___closed__1() { +_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; +} +} LEAN_EXPORT lean_object* l_Lean_Parser_mkParserState(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; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_Lean_Parser_initCacheForInput(x_1); x_3 = lean_box(0); x_4 = l_Lean_Parser_SyntaxStack_empty; x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_6, 0, x_4); -lean_ctor_set(x_6, 1, x_5); -lean_ctor_set(x_6, 2, x_5); -lean_ctor_set(x_6, 3, x_2); -lean_ctor_set(x_6, 4, x_3); -return x_6; +x_6 = l_Lean_Parser_mkParserState___closed__1; +x_7 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_7, 0, x_4); +lean_ctor_set(x_7, 1, x_5); +lean_ctor_set(x_7, 2, x_5); +lean_ctor_set(x_7, 3, x_2); +lean_ctor_set(x_7, 4, x_3); +lean_ctor_set(x_7, 5, x_6); +return x_7; } } LEAN_EXPORT lean_object* l_Lean_Parser_mkParserState___boxed(lean_object* x_1) { @@ -9547,7 +9560,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_Parser_runParserCategory(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -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_object* x_11; 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_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; 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_5 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParserFnImpl), 3, 1); lean_closure_set(x_5, 0, x_2); x_6 = l_Lean_Parser_runParserCategory___closed__1; @@ -9569,50 +9582,50 @@ lean_dec(x_1); x_13 = l_Lean_Parser_mkParserState(x_3); lean_inc(x_8); x_14 = l_Lean_Parser_ParserFn_run(x_7, x_8, x_11, x_12, x_13); -x_15 = lean_ctor_get(x_14, 4); -lean_inc(x_15); -x_16 = lean_box(0); -x_17 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_16); -if (x_17 == 0) +lean_inc(x_14); +x_15 = l_Lean_Parser_ParserState_allErrors(x_14); +x_16 = l_Array_isEmpty___rarg(x_15); +lean_dec(x_15); +if (x_16 == 0) { -lean_object* x_18; lean_object* x_19; +lean_object* x_17; lean_object* x_18; lean_dec(x_3); -x_18 = l_Lean_Parser_ParserState_toErrorMsg(x_8, x_14); +x_17 = l_Lean_Parser_ParserState_toErrorMsg(x_8, x_14); lean_dec(x_8); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_18); -return x_19; +x_18 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; } else { -lean_object* x_20; uint8_t x_21; -x_20 = lean_ctor_get(x_14, 2); -lean_inc(x_20); -x_21 = lean_string_utf8_at_end(x_3, x_20); -lean_dec(x_20); +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_14, 2); +lean_inc(x_19); +x_20 = lean_string_utf8_at_end(x_3, x_19); +lean_dec(x_19); lean_dec(x_3); -if (x_21 == 0) +if (x_20 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = l_Lean_Parser_runParserCategory___closed__2; -x_23 = l_Lean_Parser_ParserState_mkError(x_14, x_22); -x_24 = l_Lean_Parser_ParserState_toErrorMsg(x_8, x_23); +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = l_Lean_Parser_runParserCategory___closed__2; +x_22 = l_Lean_Parser_ParserState_mkError(x_14, x_21); +x_23 = l_Lean_Parser_ParserState_toErrorMsg(x_8, x_22); lean_dec(x_8); -x_25 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_25, 0, x_24); -return x_25; +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +return x_24; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_dec(x_8); -x_26 = lean_ctor_get(x_14, 0); -lean_inc(x_26); +x_25 = lean_ctor_get(x_14, 0); +lean_inc(x_25); lean_dec(x_14); -x_27 = l_Lean_Parser_SyntaxStack_back(x_26); -x_28 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_28, 0, x_27); -return x_28; +x_26 = l_Lean_Parser_SyntaxStack_back(x_25); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +return x_27; } } } @@ -12694,7 +12707,7 @@ lean_dec(x_1); return x_2; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1() { _start: { lean_object* x_1; @@ -12702,7 +12715,7 @@ x_1 = lean_mk_string_from_bytes("Tactic", 6); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2() { _start: { lean_object* x_1; @@ -12710,28 +12723,19 @@ x_1 = lean_mk_string_from_bytes("tacticSeq", 9); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1; -x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1; +x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4() { -_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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4() { _start: { lean_object* x_1; @@ -12739,19 +12743,19 @@ x_1 = lean_mk_string_from_bytes("tacticSeq1Indented", 18); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1; -x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1; +x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6() { _start: { lean_object* x_1; @@ -12759,17 +12763,17 @@ x_1 = lean_mk_string_from_bytes("null", 4); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8() { _start: { lean_object* x_1; @@ -12777,41 +12781,41 @@ x_1 = lean_mk_string_from_bytes("exact", 5); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1; -x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1; +x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8; x_3 = lean_alloc_ctor(2, 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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11; +x_1 = l_Lean_Parser_mkParserState___closed__1; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12() { _start: { lean_object* x_1; @@ -12819,7 +12823,7 @@ x_1 = lean_mk_string_from_bytes("Term", 4); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13() { _start: { lean_object* x_1; @@ -12827,19 +12831,19 @@ x_1 = lean_mk_string_from_bytes("declName", 8); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13; -x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12; +x_4 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15() { _start: { lean_object* x_1; @@ -12847,35 +12851,35 @@ x_1 = lean_mk_string_from_bytes("decl_name%", 10); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15; x_3 = lean_alloc_ctor(2, 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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17; +x_1 = l_Lean_Parser_mkParserState___closed__1; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18() { _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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12883,23 +12887,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19; +x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20() { _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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12907,23 +12911,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21; +x_1 = l_Lean_Parser_mkParserState___closed__1; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22() { _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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12931,23 +12935,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23; +x_1 = l_Lean_Parser_mkParserState___closed__1; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24() { _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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12955,23 +12959,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4; -x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25; +x_1 = l_Lean_Parser_mkParserState___closed__1; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26() { _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___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3; -x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26; +x_2 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3; +x_3 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12979,11 +12983,11 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5825_() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5828_() { _start: { lean_object* x_1; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27; +x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26; return x_1; } } @@ -13095,11 +13099,11 @@ lean_dec(x_1); return x_2; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5881_() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_5884_() { _start: { lean_object* x_1; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27; +x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26; return x_1; } } @@ -13112,7 +13116,7 @@ x_6 = l_Lean_registerBuiltinAttribute(x_5, x_4); return x_6; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1() { _start: { lean_object* x_1; @@ -13120,24 +13124,24 @@ x_1 = lean_mk_string_from_bytes("invalid parser attribute implementation builder return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) { lean_object* x_3; lean_dec(x_1); -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; return x_3; } else @@ -13156,7 +13160,7 @@ if (lean_obj_tag(x_5) == 0) lean_object* x_6; lean_dec(x_4); lean_dec(x_1); -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; return x_6; } else @@ -13191,7 +13195,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_4); lean_dec(x_1); -x_13 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; +x_13 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; return x_13; } } @@ -13202,7 +13206,7 @@ lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_14 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; +x_14 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; return x_14; } } @@ -13213,13 +13217,13 @@ lean_object* x_15; lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2; +x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2; return x_15; } } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1() { _start: { lean_object* x_1; @@ -13227,39 +13231,39 @@ x_1 = lean_mk_string_from_bytes("parserAttr", 10); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1), 2, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3; x_4 = l_Lean_registerAttributeImplBuilder(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_6009_() { +static lean_object* _init_l___auto____x40_Lean_Parser_Extension___hyg_6012_() { _start: { lean_object* x_1; -x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27; +x_1 = l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26; return x_1; } } @@ -13291,7 +13295,7 @@ lean_ctor_set(x_14, 1, x_13); x_15 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_15, 0, x_11); lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2; x_17 = l_Lean_registerAttributeOfBuilder(x_9, x_16, x_5, x_15, x_10); return x_17; } @@ -13332,7 +13336,7 @@ x_8 = l_Lean_Parser_registerParserCategory(x_1, x_2, x_3, x_7, x_5, x_6); return x_8; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1() { _start: { lean_object* x_1; @@ -13340,17 +13344,17 @@ x_1 = lean_mk_string_from_bytes("builtin_term_parser", 19); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3() { _start: { lean_object* x_1; @@ -13358,30 +13362,30 @@ x_1 = lean_mk_string_from_bytes("term", 4); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; x_3 = l_Lean_Parser_registerBuiltinParserAttribute___closed__3; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4; x_4 = 0; x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1() { _start: { lean_object* x_1; @@ -13389,48 +13393,48 @@ x_1 = lean_mk_string_from_bytes("term_parser", 11); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__12; -x_2 = lean_unsigned_to_nat(6102u); +x_2 = lean_unsigned_to_nat(6105u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105_(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_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4; x_5 = l_Lean_Parser_registerBuiltinDynamicParserAttribute(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1() { _start: { lean_object* x_1; @@ -13438,17 +13442,17 @@ x_1 = lean_mk_string_from_bytes("builtin_command_parser", 22); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3() { _start: { lean_object* x_1; @@ -13456,30 +13460,30 @@ x_1 = lean_mk_string_from_bytes("command", 7); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4() { _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_mkParserOfConstantUnsafe___closed__4; x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__7; x_3 = l_Lean_Parser_registerBuiltinParserAttribute___closed__3; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4; x_4 = 0; x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1() { _start: { lean_object* x_1; @@ -13487,43 +13491,43 @@ x_1 = lean_mk_string_from_bytes("command_parser", 14); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3698____closed__12; -x_2 = lean_unsigned_to_nat(6156u); +x_2 = lean_unsigned_to_nat(6159u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159_(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_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4; x_5 = l_Lean_Parser_registerBuiltinDynamicParserAttribute(x_2, x_3, x_4, x_1); return x_5; } @@ -13532,7 +13536,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_commandParser(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3; x_3 = l_Lean_Parser_categoryParser(x_2, x_1); return x_3; } @@ -14362,7 +14366,7 @@ return x_8; } } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1() { _start: { lean_object* x_1; @@ -14370,21 +14374,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Parser.ParserName.category", 31); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14392,7 +14396,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -14401,7 +14405,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -14410,7 +14414,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6() { _start: { lean_object* x_1; @@ -14418,21 +14422,21 @@ x_1 = lean_mk_string_from_bytes("Lean.Parser.ParserName.parser", 29); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7; x_2 = lean_box(1); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14440,7 +14444,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9() { _start: { lean_object* x_1; @@ -14448,17 +14452,17 @@ x_1 = lean_mk_string_from_bytes("false", 5); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11() { _start: { lean_object* x_1; @@ -14466,17 +14470,17 @@ x_1 = lean_mk_string_from_bytes("true", 4); return x_1; } } -static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12() { +static lean_object* _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11; +x_1 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618_(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -14488,14 +14492,14 @@ lean_dec(x_1); x_4 = lean_unsigned_to_nat(1024u); x_5 = lean_nat_dec_le(x_4, x_2); x_6 = l_Lean_Name_reprPrec(x_3, x_4); -x_7 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3; +x_7 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3; x_8 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); if (x_5 == 0) { lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; -x_9 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4; +x_9 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4; x_10 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -14509,7 +14513,7 @@ return x_13; else { lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_14 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5; +x_14 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5; x_15 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_8); @@ -14531,7 +14535,7 @@ lean_dec(x_1); x_21 = lean_unsigned_to_nat(1024u); x_22 = lean_nat_dec_le(x_21, x_2); x_23 = l_Lean_Name_reprPrec(x_19, x_21); -x_24 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8; +x_24 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8; x_25 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -14544,11 +14548,11 @@ if (x_22 == 0) if (x_20 == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; -x_28 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10; +x_28 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10; x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); -x_30 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4; +x_30 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4; x_31 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -14562,11 +14566,11 @@ return x_34; else { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; -x_35 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12; +x_35 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12; x_36 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_36, 0, x_27); lean_ctor_set(x_36, 1, x_35); -x_37 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4; +x_37 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4; x_38 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -14583,11 +14587,11 @@ else if (x_20 == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; -x_42 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10; +x_42 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10; x_43 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_43, 0, x_27); lean_ctor_set(x_43, 1, x_42); -x_44 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5; +x_44 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5; x_45 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -14601,11 +14605,11 @@ return x_48; else { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -x_49 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12; +x_49 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12; x_50 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_50, 0, x_27); lean_ctor_set(x_50, 1, x_49); -x_51 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5; +x_51 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5; x_52 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -14620,11 +14624,11 @@ return x_55; } } } -LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615_(x_1, x_2); +x_3 = l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -14633,7 +14637,7 @@ static lean_object* _init_l_Lean_Parser_instReprParserName___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____boxed), 2, 0); return x_1; } } @@ -16241,6 +16245,8 @@ lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at_Lean_Parser_addToken___s l_Lean_Parser_isValidSyntaxNodeKind___closed__1 = _init_l_Lean_Parser_isValidSyntaxNodeKind___closed__1(); l_Lean_Parser_getSyntaxNodeKinds___closed__1 = _init_l_Lean_Parser_getSyntaxNodeKinds___closed__1(); lean_mark_persistent(l_Lean_Parser_getSyntaxNodeKinds___closed__1); +l_Lean_Parser_mkParserState___closed__1 = _init_l_Lean_Parser_mkParserState___closed__1(); +lean_mark_persistent(l_Lean_Parser_mkParserState___closed__1); l_Lean_Parser_runParserCategory___closed__1 = _init_l_Lean_Parser_runParserCategory___closed__1(); lean_mark_persistent(l_Lean_Parser_runParserCategory___closed__1); l_Lean_Parser_runParserCategory___closed__2 = _init_l_Lean_Parser_runParserCategory___closed__2(); @@ -16343,125 +16349,123 @@ l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_ lean_mark_persistent(l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__1___closed__3); l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__1___closed__4 = _init_l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__1___closed__4(); lean_mark_persistent(l_List_forM___at___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___spec__1___closed__4); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__1); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__2); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__3); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__4); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__5); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__6); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__7); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__8); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__9); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__10); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__11); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__12); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__13); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__14); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__15); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__16); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__17); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__18); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__19); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__20); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__21); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__22); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__23); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__24); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__25); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__26); -l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825____closed__27); -l___auto____x40_Lean_Parser_Extension___hyg_5825_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_5825_(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5825_); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__1); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__2); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__3); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__4); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__5); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__6); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__7); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__8); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__9); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__10); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__11); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__12); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__13); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__14); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__15); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__16); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__17); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__18); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__19); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__20); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__21); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__22); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__23); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__24); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__25); +l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26 = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828____closed__26); +l___auto____x40_Lean_Parser_Extension___hyg_5828_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_5828_(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5828_); l_Lean_Parser_mkParserAttributeImpl___closed__1 = _init_l_Lean_Parser_mkParserAttributeImpl___closed__1(); lean_mark_persistent(l_Lean_Parser_mkParserAttributeImpl___closed__1); l_Lean_Parser_mkParserAttributeImpl___closed__2 = _init_l_Lean_Parser_mkParserAttributeImpl___closed__2(); lean_mark_persistent(l_Lean_Parser_mkParserAttributeImpl___closed__2); -l___auto____x40_Lean_Parser_Extension___hyg_5881_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_5881_(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5881_); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____lambda__1___closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932____closed__3); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5932_(lean_io_mk_world()); +l___auto____x40_Lean_Parser_Extension___hyg_5884_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_5884_(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_5884_); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____lambda__1___closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935____closed__3); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_5935_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___auto____x40_Lean_Parser_Extension___hyg_6009_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_6009_(); -lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_6009_); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087____closed__4); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6087_(lean_io_mk_world()); +}l___auto____x40_Lean_Parser_Extension___hyg_6012_ = _init_l___auto____x40_Lean_Parser_Extension___hyg_6012_(); +lean_mark_persistent(l___auto____x40_Lean_Parser_Extension___hyg_6012_); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090____closed__4); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6090_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102____closed__4); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6102_(lean_io_mk_world()); +}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105____closed__4); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6105_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141____closed__4); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6141_(lean_io_mk_world()); +}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144____closed__4); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6144_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156____closed__4); -if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6156_(lean_io_mk_world()); +}l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159____closed__4); +if (builtin) {res = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_6159_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_Parser_withOpenDeclFnCore___closed__1 = _init_l_Lean_Parser_withOpenDeclFnCore___closed__1(); @@ -16478,30 +16482,30 @@ l_Lean_Parser_withOpenFn___closed__1 = _init_l_Lean_Parser_withOpenFn___closed__ lean_mark_persistent(l_Lean_Parser_withOpenFn___closed__1); l_Lean_Parser_withOpenFn___closed__2 = _init_l_Lean_Parser_withOpenFn___closed__2(); lean_mark_persistent(l_Lean_Parser_withOpenFn___closed__2); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__1); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__2); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__3); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__4); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__5); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__6); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__7); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__8); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__9); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__10); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__11); -l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12(); -lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6615____closed__12); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__1); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__2); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__3); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__4); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__5); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__6); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__7); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__8); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__9); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__10); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__11); +l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12 = _init_l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12(); +lean_mark_persistent(l___private_Lean_Parser_Extension_0__Lean_Parser_reprParserName____x40_Lean_Parser_Extension___hyg_6618____closed__12); l_Lean_Parser_instReprParserName___closed__1 = _init_l_Lean_Parser_instReprParserName___closed__1(); lean_mark_persistent(l_Lean_Parser_instReprParserName___closed__1); l_Lean_Parser_instReprParserName = _init_l_Lean_Parser_instReprParserName(); diff --git a/stage0/stdlib/Lean/Parser/Module.c b/stage0/stdlib/Lean/Parser/Module.c index e3c362c270..d1f1801c5c 100644 --- a/stage0/stdlib/Lean/Parser/Module.c +++ b/stage0/stdlib/Lean/Parser/Module.c @@ -55,12 +55,14 @@ lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_prelude_formatter___closed__2; static lean_object* l_Lean_Parser_Module_prelude___closed__2; static lean_object* l_Lean_Parser_Module_header_parenthesizer___closed__4; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forMAux___at_Lean_Parser_testParseModuleAux_parse___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Parser_testParseModuleAux_parse___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Module_import_formatter(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Module_header_formatter(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_module_formatter___closed__1; lean_object* l_Lean_Parser_optional(lean_object*); static lean_object* l_Lean_Parser_Module_module___closed__1; @@ -72,14 +74,13 @@ lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, l static lean_object* l_Lean_Parser_Module_import_formatter___closed__13; static lean_object* l_Lean_Parser_Module_import_formatter___closed__2; lean_object* l_Lean_Syntax_updateLeading(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Parser_isTerminalCommand___closed__1; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__5; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatter___boxed(lean_object*); -static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__1; +LEAN_EXPORT lean_object* l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ModuleParserState_pos___default; -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_formatter___closed__10; @@ -95,7 +96,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forM___at_Lean_Parser_testParseM static lean_object* l_Lean_Parser_Module_header___closed__10; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Parser_ParserFn_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_header_formatter___closed__2; LEAN_EXPORT uint8_t l_Lean_Parser_ModuleParserState_recovering___default; @@ -104,7 +104,6 @@ lean_object* l_Lean_Parser_getTokenTable(lean_object*); static lean_object* l_Lean_Parser_Module_header___closed__1; LEAN_EXPORT lean_object* l_panic___at_Lean_Parser_Module_updateTokens___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Module_header_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3___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_Module_import___closed__2; lean_object* l_IO_println___at_Lean_instEval___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -126,6 +125,7 @@ static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage static lean_object* l_Lean_Parser_Module_header___closed__2; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Module_module___closed__7; +lean_object* l_Subarray_size___rarg(lean_object*); static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Module_header_formatter___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_testParseModuleAux_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -141,10 +141,12 @@ static lean_object* l___regBuiltin_Lean_Parser_Module_prelude_parenthesizer___cl LEAN_EXPORT lean_object* l_Lean_Parser_Module_import_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_formatter___closed__9; static lean_object* l_Lean_Parser_Module_module___closed__3; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3___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_Parser_testParseModuleAux_parse___lambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_formatter___closed__11; lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_prelude_parenthesizer___closed__3; +lean_object* l_Lean_Parser_ParserState_allErrors(lean_object*); static lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Module_import_formatter___closed__2; lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -154,6 +156,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_objec static lean_object* l_Lean_Parser_Module_import_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_isTerminalCommand___boxed(lean_object*); lean_object* l_Lean_Parser_symbol(lean_object*); +LEAN_EXPORT lean_object* l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_module_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Module_prelude_formatter___closed__3; static lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__2; @@ -162,6 +165,7 @@ uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_module_formatter___closed__9; uint8_t l_Lean_Syntax_isMissing(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_prelude_formatter___closed__1; +lean_object* l_Lean_Parser_SyntaxStack_toSubarray(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_header_formatter___closed__1; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__11; lean_object* l_Lean_Parser_checkNoWsBefore(lean_object*); @@ -181,6 +185,7 @@ static lean_object* l_Lean_Parser_Module_import___closed__22; static lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__4; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI___closed__5; +uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_prelude_formatter___closed__4; static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Module_updateTokens(lean_object*); @@ -188,12 +193,11 @@ static lean_object* l_Lean_Parser_isTerminalCommand___closed__3; static lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Module_updateTokens___closed__4; static lean_object* l_Lean_Parser_instInhabitedModuleParserState___closed__1; -static lean_object* l_Lean_Parser_testParseModule___closed__2; +static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Module_header_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__8; lean_object* l_Lean_Parser_commandParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthen(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_module_formatter___closed__2; lean_object* l_Lean_Parser_symbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_testParseFile(lean_object*, lean_object*, lean_object*); @@ -214,6 +218,7 @@ lean_object* l_Lean_Parser_many(lean_object*); static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI___closed__2; static lean_object* l_panic___at_Lean_Parser_Module_updateTokens___spec__1___closed__1; static lean_object* l_Lean_Parser_Module_import___closed__16; +lean_object* l_Subarray_get___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingNode_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import___closed__3; @@ -231,8 +236,10 @@ static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI___closed static lean_object* l_Lean_Parser_Module_import___closed__18; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__12; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_prelude___closed__8; static lean_object* l_Lean_Parser_Module_import___closed__8; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_formatter___closed__14; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_module_formatter___closed__2; @@ -248,8 +255,6 @@ static lean_object* l_Lean_Parser_Module_header_formatter___closed__4; static lean_object* l_Lean_Parser_Module_import___closed__7; static lean_object* l_Lean_Parser_Module_module___closed__10; static lean_object* l_Lean_Parser_Module_updateTokens___closed__2; -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2; static lean_object* l_Lean_Parser_Module_header___closed__6; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Parser_testParseModuleAux_parse___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI(lean_object*); @@ -257,26 +262,28 @@ static lean_object* l_Lean_Parser_Module_import___closed__15; lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_header_parenthesizer___closed__8; uint8_t l_Lean_Parser_SyntaxStack_isEmpty(lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_initCacheForInput(lean_object*); lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Module_module_parenthesizer(lean_object*); +static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Module_header; LEAN_EXPORT lean_object* l_Lean_Parser_Module_prelude_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Module_header_parenthesizer___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Module_header_parenthesizer___closed__6; -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_formatter___closed__8; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_testParseModuleAux_parse___closed__2; static lean_object* l_Lean_Parser_Module_import_formatter___closed__3; static lean_object* l_Lean_Parser_Module_import___closed__14; static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__2; -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Parser_testParseModuleAux_parse___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_testParseModule___closed__1; static lean_object* l_Lean_Parser_Module_import_formatter___closed__15; static lean_object* l_Lean_Parser_parseHeader___closed__2; @@ -286,24 +293,29 @@ static lean_object* l___regBuiltin_Lean_Parser_Module_import_parenthesizer___clo static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__3; static lean_object* l_Lean_Parser_Module_module_formatter___closed__3; lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing(lean_object*); lean_object* l_Lean_mkListNode(lean_object*); uint8_t l_Lean_PersistentArray_isEmpty___rarg(lean_object*); static lean_object* l_Lean_Parser_Module_module_formatter___closed__5; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_formatterAttribute; static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI___closed__3; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__15; lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3; lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Parser_Module_import___closed__12; static lean_object* l_Lean_Parser_Module_import___closed__13; static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1; static lean_object* l_Lean_Parser_Module_header___closed__4; +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_import___closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_parseHeader(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Module_header_formatter___closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__4; lean_object* lean_mk_empty_environment(uint32_t, lean_object*); static lean_object* l_Lean_Parser_parseHeader___closed__5; @@ -328,10 +340,12 @@ static lean_object* l_Lean_Parser_Module_module_formatter___closed__7; static lean_object* l_Lean_Parser_Module_prelude___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Module_import_formatter___closed__1; static lean_object* l_Lean_Parser_Module_prelude___closed__5; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_parseHeader___closed__3; static lean_object* l_Lean_Parser_Module_prelude_formatter___closed__3; static lean_object* l_Lean_Parser_Module_import___closed__11; lean_object* l_Lean_Parser_SyntaxStack_back(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Module_prelude; static lean_object* l_Lean_Parser_Module_module___closed__6; static lean_object* l_Lean_Parser_Module_import_formatter___closed__7; @@ -2229,6 +2243,69 @@ x_1 = l_Lean_Parser_instInhabitedModuleParserState___closed__1; return x_1; } } +LEAN_EXPORT lean_object* l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_2, x_4); +if (x_5 == 0) +{ +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_2, x_6); +lean_dec(x_2); +x_8 = l_Subarray_get___rarg(x_1, x_7); +x_9 = l_Lean_Syntax_getTailInfo(x_8); +lean_dec(x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_7); +x_10 = lean_ctor_get(x_9, 2); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +else +{ +lean_dec(x_9); +x_2 = x_7; +x_3 = lean_box(0); +goto _start; +} +} +else +{ +lean_object* x_13; +lean_dec(x_2); +x_13 = lean_box(0); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l_Lean_Parser_SyntaxStack_toSubarray(x_1); +x_3 = l_Subarray_size___rarg(x_2); +x_4 = l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1(x_2, x_3, lean_box(0)); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Subarray_findSomeRevM_x3f_find___at___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing___spec__1(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} static lean_object* _init_l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__1___closed__1() { _start: { @@ -2354,7 +2431,7 @@ return x_1; LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___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) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_7 = lean_ctor_get(x_3, 0); lean_inc(x_7); x_8 = lean_ctor_get(x_3, 2); @@ -2368,58 +2445,60 @@ if (lean_is_exclusive(x_3)) { lean_dec_ref(x_3); x_9 = lean_box(0); } -x_10 = lean_ctor_get(x_1, 0); -lean_inc(x_10); -lean_dec(x_1); -x_11 = l_Lean_Parser_SyntaxStack_back(x_10); -x_12 = l_Lean_Syntax_getTailInfo(x_11); -lean_dec(x_11); +x_10 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage_lastTrailing(x_1); switch (lean_obj_tag(x_7)) { case 2: { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_26 = lean_ctor_get(x_7, 1); -lean_inc(x_26); -x_27 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__2; -x_28 = lean_string_append(x_27, x_26); -lean_dec(x_26); -x_29 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__3; -x_30 = lean_string_append(x_28, x_29); -x_13 = x_30; -goto block_25; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_24 = lean_ctor_get(x_7, 1); +lean_inc(x_24); +x_25 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__2; +x_26 = lean_string_append(x_25, x_24); +lean_dec(x_24); +x_27 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__3; +x_28 = lean_string_append(x_26, x_27); +x_11 = x_28; +goto block_23; } case 3: { -lean_object* x_31; -x_31 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__4; -x_13 = x_31; -goto block_25; +lean_object* x_29; +x_29 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__4; +x_11 = x_29; +goto block_23; } default: { -lean_object* x_32; -x_32 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__1; -x_13 = x_32; -goto block_25; +lean_object* x_30; +x_30 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2___closed__1; +x_11 = x_30; +goto block_23; } } -block_25: +block_23: { -lean_object* x_14; +lean_object* x_12; if (lean_is_scalar(x_9)) { - x_14 = lean_alloc_ctor(0, 3, 0); + x_12 = lean_alloc_ctor(0, 3, 0); } else { - x_14 = x_9; + x_12 = x_9; } -lean_ctor_set(x_14, 0, x_7); -lean_ctor_set(x_14, 1, x_13); -lean_ctor_set(x_14, 2, x_8); -if (lean_obj_tag(x_12) == 0) +lean_ctor_set(x_12, 0, x_7); +lean_ctor_set(x_12, 1, x_11); +lean_ctor_set(x_12, 2, x_8); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_box(0); +x_14 = lean_apply_4(x_2, x_12, x_4, x_5, x_13); +return x_14; +} +else { lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_ctor_get(x_12, 2); +x_15 = lean_ctor_get(x_10, 0); lean_inc(x_15); -lean_dec(x_12); +lean_dec(x_10); x_16 = lean_ctor_get(x_15, 2); lean_inc(x_16); x_17 = lean_nat_dec_eq(x_16, x_5); @@ -2429,7 +2508,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; lean_dec(x_15); x_18 = lean_box(0); -x_19 = lean_apply_4(x_2, x_14, x_4, x_5, x_18); +x_19 = lean_apply_4(x_2, x_12, x_4, x_5, x_18); return x_19; } else @@ -2440,33 +2519,23 @@ x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_dec(x_15); x_21 = lean_box(0); -x_22 = lean_apply_4(x_2, x_14, x_4, x_20, x_21); +x_22 = lean_apply_4(x_2, x_12, x_4, x_20, x_21); return x_22; } } -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_12); -x_23 = lean_box(0); -x_24 = lean_apply_4(x_2, x_14, x_4, x_5, x_23); -return x_24; } } } -} -LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_ctor_get(x_2, 2); -lean_inc(x_4); +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_box(0); lean_inc(x_1); x_6 = lean_alloc_closure((void*)(l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__1___boxed), 6, 2); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_5); -x_7 = lean_ctor_get(x_3, 0); +x_7 = lean_ctor_get(x_4, 0); lean_inc(x_7); x_8 = l_Lean_Syntax_isMissing(x_7); if (x_8 == 0) @@ -2479,13 +2548,13 @@ if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; x_11 = lean_box(0); -x_12 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_2, x_6, x_3, x_5, x_4, x_11); +x_12 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_3, x_6, x_4, x_5, x_2, x_11); return x_12; } else { uint8_t x_13; -lean_dec(x_4); +lean_dec(x_2); x_13 = !lean_is_exclusive(x_10); if (x_13 == 0) { @@ -2498,7 +2567,7 @@ lean_inc(x_16); lean_dec(x_14); lean_ctor_set(x_10, 0, x_16); x_17 = lean_box(0); -x_18 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_2, x_6, x_3, x_10, x_15, x_17); +x_18 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_3, x_6, x_4, x_10, x_15, x_17); return x_18; } else @@ -2515,7 +2584,7 @@ lean_dec(x_19); x_22 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_22, 0, x_21); x_23 = lean_box(0); -x_24 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_2, x_6, x_3, x_22, x_20, x_23); +x_24 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__2(x_3, x_6, x_4, x_22, x_20, x_23); return x_24; } } @@ -2525,10 +2594,10 @@ else lean_object* x_25; lean_object* x_26; lean_dec(x_7); lean_dec(x_6); -lean_dec(x_2); +lean_dec(x_3); x_25 = lean_box(0); -x_26 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__1(x_1, x_5, x_3, x_5, x_4, x_25); -lean_dec(x_4); +x_26 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage___lambda__1(x_1, x_5, x_4, x_5, x_2, x_25); +lean_dec(x_2); lean_dec(x_1); return x_26; } @@ -2554,6 +2623,45 @@ lean_dec(x_6); return x_7; } } +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_usize_dec_lt(x_4, x_3); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_1); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_5); +lean_ctor_set(x_8, 1, x_6); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; size_t x_16; size_t x_17; +x_9 = lean_array_uget(x_2, x_4); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); +lean_inc(x_1); +x_14 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_11, x_12, x_13); +x_15 = l_Lean_PersistentArray_push___rarg(x_5, x_14); +x_16 = 1; +x_17 = lean_usize_add(x_4, x_16); +x_4 = x_17; +x_5 = x_15; +goto _start; +} +} +} static lean_object* _init_l_Lean_Parser_parseHeader___closed__1() { _start: { @@ -2620,18 +2728,18 @@ x_3 = 0; x_4 = lean_mk_empty_environment(x_3, x_2); if (lean_obj_tag(x_4) == 0) { -uint8_t x_5; -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; 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; uint8_t x_17; -x_6 = lean_ctor_get(x_4, 0); -x_7 = l_Lean_Parser_getTokenTable(x_6); +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_object* x_11; 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_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; lean_object* x_23; +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec(x_4); +x_7 = l_Lean_Parser_getTokenTable(x_5); x_8 = l_Lean_Parser_Module_updateTokens(x_7); x_9 = lean_box(0); x_10 = lean_box(0); x_11 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_11, 0, x_6); +lean_ctor_set(x_11, 0, x_5); lean_ctor_set(x_11, 1, x_9); lean_ctor_set(x_11, 2, x_10); lean_ctor_set(x_11, 3, x_9); @@ -2645,289 +2753,263 @@ x_15 = l_Lean_Parser_ParserFn_run(x_14, x_1, x_11, x_8, x_13); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = l_Lean_Parser_SyntaxStack_isEmpty(x_16); +lean_inc(x_15); +x_18 = l_Lean_Parser_ParserState_allErrors(x_15); +x_19 = lean_array_get_size(x_18); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = l_Lean_Parser_parseHeader___closed__5; +x_23 = l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1(x_1, x_18, x_20, x_21, x_22, x_6); +lean_dec(x_18); if (x_17 == 0) { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_15, 4); -lean_inc(x_18); -x_19 = l_Lean_Parser_SyntaxStack_back(x_16); -if (lean_obj_tag(x_18) == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) { -lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_1); -x_20 = lean_ctor_get(x_15, 2); -lean_inc(x_20); -lean_dec(x_15); -x_21 = 0; -x_22 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_22, 0, x_20); -lean_ctor_set_uint8(x_22, sizeof(void*)*1, x_21); -x_23 = l_Lean_Parser_parseHeader___closed__5; -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_19); -lean_ctor_set(x_25, 1, x_24); -lean_ctor_set(x_4, 0, x_25); -return x_4; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_26 = lean_ctor_get(x_18, 0); -lean_inc(x_26); -lean_dec(x_18); -lean_inc(x_15); -x_27 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_15, x_26); -x_28 = lean_ctor_get(x_15, 2); +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_25 = lean_ctor_get(x_23, 0); +x_26 = l_Lean_Parser_SyntaxStack_back(x_16); +x_27 = lean_ctor_get(x_15, 2); +lean_inc(x_27); +x_28 = lean_ctor_get(x_15, 4); lean_inc(x_28); lean_dec(x_15); -x_29 = 1; -x_30 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set_uint8(x_30, sizeof(void*)*1, x_29); -x_31 = l_Lean_Parser_parseHeader___closed__5; -x_32 = l_Lean_PersistentArray_push___rarg(x_31, x_27); +x_29 = lean_box(0); +x_30 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_29); +if (x_30 == 0) +{ +uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_31 = 1; +x_32 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set_uint8(x_32, sizeof(void*)*1, x_31); x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_30); -lean_ctor_set(x_33, 1, x_32); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_25); x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_19); +lean_ctor_set(x_34, 0, x_26); lean_ctor_set(x_34, 1, x_33); -lean_ctor_set(x_4, 0, x_34); -return x_4; +lean_ctor_set(x_23, 0, x_34); +return x_23; +} +else +{ +uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = 0; +x_36 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_36, 0, x_27); +lean_ctor_set_uint8(x_36, sizeof(void*)*1, x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_25); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_26); +lean_ctor_set(x_38, 1, x_37); +lean_ctor_set(x_23, 0, x_38); +return x_23; } } else { -lean_object* x_35; -lean_dec(x_16); -x_35 = lean_ctor_get(x_15, 4); -lean_inc(x_35); -if (lean_obj_tag(x_35) == 0) -{ -lean_object* x_36; uint8_t 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_1); -x_36 = lean_ctor_get(x_15, 2); -lean_inc(x_36); -lean_dec(x_15); -x_37 = 0; -x_38 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*1, x_37); -x_39 = l_Lean_Parser_parseHeader___closed__5; -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -x_41 = lean_box(0); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -lean_ctor_set(x_4, 0, x_42); -return x_4; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t 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_43 = lean_ctor_get(x_35, 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; uint8_t x_45; +x_39 = lean_ctor_get(x_23, 0); +x_40 = lean_ctor_get(x_23, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_23); +x_41 = l_Lean_Parser_SyntaxStack_back(x_16); +x_42 = lean_ctor_get(x_15, 2); +lean_inc(x_42); +x_43 = lean_ctor_get(x_15, 4); lean_inc(x_43); -lean_dec(x_35); -lean_inc(x_15); -x_44 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_15, x_43); -x_45 = lean_ctor_get(x_15, 2); -lean_inc(x_45); lean_dec(x_15); +x_44 = lean_box(0); +x_45 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_43, x_44); +if (x_45 == 0) +{ +uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_46 = 1; x_47 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 0, x_42); lean_ctor_set_uint8(x_47, sizeof(void*)*1, x_46); -x_48 = l_Lean_Parser_parseHeader___closed__5; -x_49 = l_Lean_PersistentArray_push___rarg(x_48, x_44); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_39); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_41); +lean_ctor_set(x_49, 1, x_48); x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_47); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_box(0); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -lean_ctor_set(x_4, 0, x_52); -return x_4; +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_40); +return x_50; +} +else +{ +uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_51 = 0; +x_52 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_52, 0, x_42); +lean_ctor_set_uint8(x_52, sizeof(void*)*1, x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_39); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_41); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_40); +return x_55; } } } else { -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; uint8_t x_65; -x_53 = lean_ctor_get(x_4, 0); -x_54 = lean_ctor_get(x_4, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_4); -x_55 = l_Lean_Parser_getTokenTable(x_53); -x_56 = l_Lean_Parser_Module_updateTokens(x_55); -x_57 = lean_box(0); -x_58 = lean_box(0); -x_59 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_59, 0, x_53); -lean_ctor_set(x_59, 1, x_57); -lean_ctor_set(x_59, 2, x_58); -lean_ctor_set(x_59, 3, x_57); -x_60 = lean_ctor_get(x_1, 0); -lean_inc(x_60); -x_61 = l_Lean_Parser_mkParserState(x_60); -lean_dec(x_60); -x_62 = l_Lean_Parser_parseHeader___closed__2; -lean_inc(x_1); -x_63 = l_Lean_Parser_ParserFn_run(x_62, x_1, x_59, x_56, x_61); -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -x_65 = l_Lean_Parser_SyntaxStack_isEmpty(x_64); -if (x_65 == 0) +uint8_t x_56; +lean_dec(x_16); +x_56 = !lean_is_exclusive(x_23); +if (x_56 == 0) { -lean_object* x_66; lean_object* x_67; -x_66 = lean_ctor_get(x_63, 4); -lean_inc(x_66); -x_67 = l_Lean_Parser_SyntaxStack_back(x_64); -if (lean_obj_tag(x_66) == 0) +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; +x_57 = lean_ctor_get(x_23, 0); +x_58 = lean_ctor_get(x_15, 2); +lean_inc(x_58); +x_59 = lean_ctor_get(x_15, 4); +lean_inc(x_59); +lean_dec(x_15); +x_60 = lean_box(0); +x_61 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_59, x_60); +if (x_61 == 0) { -lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_1); -x_68 = lean_ctor_get(x_63, 2); -lean_inc(x_68); -lean_dec(x_63); -x_69 = 0; -x_70 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set_uint8(x_70, sizeof(void*)*1, x_69); -x_71 = l_Lean_Parser_parseHeader___closed__5; -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_67); -lean_ctor_set(x_73, 1, x_72); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_54); -return x_74; +uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_62 = 1; +x_63 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_63, 0, x_58); +lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_57); +x_65 = lean_box(0); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_64); +lean_ctor_set(x_23, 0, x_66); +return x_23; } else { -lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t 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; -x_75 = lean_ctor_get(x_66, 0); +uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_67 = 0; +x_68 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_68, 0, x_58); +lean_ctor_set_uint8(x_68, sizeof(void*)*1, x_67); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_57); +x_70 = lean_box(0); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +lean_ctor_set(x_23, 0, x_71); +return x_23; +} +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_72 = lean_ctor_get(x_23, 0); +x_73 = lean_ctor_get(x_23, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_23); +x_74 = lean_ctor_get(x_15, 2); +lean_inc(x_74); +x_75 = lean_ctor_get(x_15, 4); lean_inc(x_75); -lean_dec(x_66); -lean_inc(x_63); -x_76 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_63, x_75); -x_77 = lean_ctor_get(x_63, 2); -lean_inc(x_77); -lean_dec(x_63); +lean_dec(x_15); +x_76 = lean_box(0); +x_77 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_75, x_76); +if (x_77 == 0) +{ +uint8_t x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; x_78 = 1; x_79 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 0, x_74); lean_ctor_set_uint8(x_79, sizeof(void*)*1, x_78); -x_80 = l_Lean_Parser_parseHeader___closed__5; -x_81 = l_Lean_PersistentArray_push___rarg(x_80, x_76); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +x_81 = lean_box(0); x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_81); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_80); x_83 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_83, 0, x_67); -lean_ctor_set(x_83, 1, x_82); -x_84 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_84, 0, x_83); -lean_ctor_set(x_84, 1, x_54); -return x_84; +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_73); +return x_83; +} +else +{ +uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_84 = 0; +x_85 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_85, 0, x_74); +lean_ctor_set_uint8(x_85, sizeof(void*)*1, x_84); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_72); +x_87 = lean_box(0); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_73); +return x_89; +} +} } } else { -lean_object* x_85; -lean_dec(x_64); -x_85 = lean_ctor_get(x_63, 4); -lean_inc(x_85); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; uint8_t 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; +uint8_t x_90; lean_dec(x_1); -x_86 = lean_ctor_get(x_63, 2); -lean_inc(x_86); -lean_dec(x_63); -x_87 = 0; -x_88 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set_uint8(x_88, sizeof(void*)*1, x_87); -x_89 = l_Lean_Parser_parseHeader___closed__5; -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_88); -lean_ctor_set(x_90, 1, x_89); -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); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_54); -return x_93; -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t 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; -x_94 = lean_ctor_get(x_85, 0); -lean_inc(x_94); -lean_dec(x_85); -lean_inc(x_63); -x_95 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_63, x_94); -x_96 = lean_ctor_get(x_63, 2); -lean_inc(x_96); -lean_dec(x_63); -x_97 = 1; -x_98 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set_uint8(x_98, sizeof(void*)*1, x_97); -x_99 = l_Lean_Parser_parseHeader___closed__5; -x_100 = l_Lean_PersistentArray_push___rarg(x_99, x_95); -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_98); -lean_ctor_set(x_101, 1, x_100); -x_102 = lean_box(0); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_101); -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_54); -return x_104; -} -} -} -} -else -{ -uint8_t x_105; -lean_dec(x_1); -x_105 = !lean_is_exclusive(x_4); -if (x_105 == 0) +x_90 = !lean_is_exclusive(x_4); +if (x_90 == 0) { return x_4; } else { -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_4, 0); -x_107 = lean_ctor_get(x_4, 1); -lean_inc(x_107); -lean_inc(x_106); +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_4, 0); +x_92 = lean_ctor_get(x_4, 1); +lean_inc(x_92); +lean_inc(x_91); lean_dec(x_4); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_106); -lean_ctor_set(x_108, 1, x_107); -return x_108; +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; } } } } +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1___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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_9 = l_Array_forInUnsafe_loop___at_Lean_Parser_parseHeader___spec__1(x_1, x_2, x_7, x_8, x_5, x_6); +lean_dec(x_2); +return x_9; +} +} static lean_object* _init_l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI___closed__1() { _start: { @@ -3096,13 +3178,22 @@ static lean_object* _init_l___private_Lean_Parser_Module_0__Lean_Parser_consumeI _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___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; x_1 = lean_box(0); x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tokenFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2() { +static lean_object* _init_l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3() { _start: { uint32_t x_1; lean_object* x_2; @@ -3114,7 +3205,7 @@ return x_2; LEAN_EXPORT lean_object* l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -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_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +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_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); x_5 = l_Lean_Parser_initCacheForInput(x_4); @@ -3122,39 +3213,41 @@ lean_dec(x_4); x_6 = lean_box(0); x_7 = l_Lean_Parser_SyntaxStack_empty; x_8 = lean_unsigned_to_nat(0u); +x_9 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1; lean_inc(x_3); -x_9 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_9, 0, x_7); -lean_ctor_set(x_9, 1, x_8); -lean_ctor_set(x_9, 2, x_3); -lean_ctor_set(x_9, 3, x_5); -lean_ctor_set(x_9, 4, x_6); -x_10 = lean_ctor_get(x_2, 0); -lean_inc(x_10); -x_11 = l_Lean_Parser_getTokenTable(x_10); -lean_dec(x_10); -x_12 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1; -x_13 = l_Lean_Parser_ParserFn_run(x_12, x_1, x_2, x_11, x_9); -x_14 = lean_ctor_get(x_13, 4); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; -lean_dec(x_3); -x_15 = lean_ctor_get(x_13, 2); +x_10 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_3); +lean_ctor_set(x_10, 3, x_5); +lean_ctor_set(x_10, 4, x_6); +lean_ctor_set(x_10, 5, x_9); +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); +x_12 = l_Lean_Parser_getTokenTable(x_11); +lean_dec(x_11); +x_13 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2; +x_14 = l_Lean_Parser_ParserFn_run(x_13, x_1, x_2, x_12, x_10); +x_15 = lean_ctor_get(x_14, 4); lean_inc(x_15); -lean_dec(x_13); -return x_15; +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +lean_dec(x_3); +x_16 = lean_ctor_get(x_14, 2); +lean_inc(x_16); +lean_dec(x_14); +return x_16; } else { -lean_object* x_16; lean_object* x_17; +lean_object* x_17; lean_object* x_18; +lean_dec(x_15); lean_dec(x_14); -lean_dec(x_13); -x_16 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2; -x_17 = lean_nat_add(x_3, x_16); +x_17 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3; +x_18 = lean_nat_add(x_3, x_17); lean_dec(x_3); -return x_17; +return x_18; } } } @@ -3169,7 +3262,42 @@ x_5 = lean_apply_2(x_4, x_1, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = lean_usize_dec_lt(x_4, x_3); +if (x_6 == 0) +{ +lean_dec(x_1); +return x_5; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; size_t x_14; size_t x_15; +x_7 = lean_array_uget(x_2, x_4); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); +lean_dec(x_8); +lean_inc(x_1); +x_12 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_1, x_9, x_10, x_11); +x_13 = l_Lean_PersistentArray_push___rarg(x_5, x_12); +x_14 = 1; +x_15 = lean_usize_add(x_4, x_14); +x_4 = x_15; +x_5 = x_13; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7) { _start: { if (x_1 == 0) @@ -3213,139 +3341,143 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___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, uint8_t x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_9; uint8_t x_10; uint8_t x_22; -x_9 = lean_ctor_get(x_1, 0); -lean_inc(x_9); -x_22 = l_Lean_Parser_SyntaxStack_isEmpty(x_9); -if (x_22 == 0) +lean_object* x_10; uint8_t x_11; uint8_t x_23; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +lean_dec(x_1); +x_23 = l_Lean_Parser_SyntaxStack_isEmpty(x_10); +if (x_23 == 0) { -lean_object* x_23; uint8_t x_24; lean_object* x_25; -lean_inc(x_9); -x_23 = l_Lean_Parser_SyntaxStack_back(x_9); -x_24 = 0; -x_25 = l_Lean_Syntax_getPos_x3f(x_23, x_24); -lean_dec(x_23); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -x_26 = 1; -x_10 = x_26; -goto block_21; -} -else -{ -lean_dec(x_25); -x_10 = x_24; -goto block_21; -} -} -else +lean_object* x_24; uint8_t x_25; lean_object* x_26; +lean_inc(x_10); +x_24 = l_Lean_Parser_SyntaxStack_back(x_10); +x_25 = 0; +x_26 = l_Lean_Syntax_getPos_x3f(x_24, x_25); +lean_dec(x_24); +if (lean_obj_tag(x_26) == 0) { uint8_t x_27; x_27 = 1; -x_10 = x_27; -goto block_21; -} -block_21: -{ -if (x_6 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_2, x_1, x_3); -x_12 = l_Lean_PersistentArray_push___rarg(x_4, x_11); -x_13 = lean_box(0); -x_14 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(x_10, x_9, x_5, x_12, x_6, x_7, x_13); -return x_14; +x_11 = x_27; +goto block_22; } else { -if (x_10 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_2, x_1, x_3); -x_16 = l_Lean_PersistentArray_push___rarg(x_4, x_15); -x_17 = lean_box(0); -x_18 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(x_10, x_9, x_5, x_16, x_6, x_7, x_17); -return x_18; +lean_dec(x_26); +x_11 = x_25; +goto block_22; +} } else { -lean_object* x_19; lean_object* x_20; +uint8_t x_28; +x_28 = 1; +x_11 = x_28; +goto block_22; +} +block_22: +{ +if (x_7 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_10); +x_12 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_2, x_3, x_10, x_4); +x_13 = l_Lean_PersistentArray_push___rarg(x_5, x_12); +x_14 = lean_box(0); +x_15 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(x_11, x_10, x_6, x_13, x_7, x_8, x_14); +return x_15; +} +else +{ +if (x_11 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_inc(x_10); +x_16 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_2, x_3, x_10, x_4); +x_17 = l_Lean_PersistentArray_push___rarg(x_5, x_16); +x_18 = lean_box(0); +x_19 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(x_11, x_10, x_6, x_17, x_7, x_8, x_18); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_1); -x_19 = lean_box(0); -x_20 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(x_10, x_9, x_5, x_4, x_6, x_7, x_19); -return x_20; +x_20 = lean_box(0); +x_21 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(x_11, x_10, x_6, x_5, x_7, x_8, x_20); +return x_21; } } } } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___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, uint8_t x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___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, uint8_t x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; -x_10 = lean_ctor_get(x_1, 4); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) +lean_object* x_11; +x_11 = lean_ctor_get(x_1, 4); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -lean_dec(x_8); +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_9); +lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_11 = lean_ctor_get(x_1, 0); -lean_inc(x_11); +x_12 = lean_ctor_get(x_1, 0); +lean_inc(x_12); lean_dec(x_1); -x_12 = l_Lean_Parser_SyntaxStack_back(x_11); -x_13 = 0; -x_14 = lean_box(x_13); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_12); +x_13 = l_Lean_Parser_SyntaxStack_back(x_12); +x_14 = 0; +x_15 = lean_box(x_14); x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_6); -lean_ctor_set(x_16, 1, x_15); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_13); x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_5); +lean_ctor_set(x_17, 0, x_7); lean_ctor_set(x_17, 1, x_16); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_6); +lean_ctor_set(x_18, 1, x_17); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; } else { -lean_object* x_19; uint8_t x_20; -x_19 = lean_ctor_get(x_10, 0); -lean_inc(x_19); -lean_dec(x_10); -x_20 = lean_nat_dec_eq(x_6, x_3); -lean_dec(x_3); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; +lean_object* x_20; uint8_t x_21; +x_20 = lean_ctor_get(x_11, 0); +lean_inc(x_20); +lean_dec(x_11); +x_21 = lean_nat_dec_eq(x_7, x_4); lean_dec(x_4); -x_21 = lean_box(0); -x_22 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2(x_1, x_2, x_19, x_5, x_6, x_7, x_8, x_21); -return x_22; +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_5); +x_22 = lean_box(0); +x_23 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__2(x_1, x_2, x_3, x_20, x_6, x_7, x_8, x_9, x_22); +return x_23; } else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_inc(x_2); -x_23 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_2, x_4, x_6); -x_24 = lean_box(0); -x_25 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2(x_1, x_2, x_19, x_5, x_23, x_7, x_8, x_24); -return x_25; +x_24 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_2, x_5, x_7); +x_25 = lean_box(0); +x_26 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__2(x_1, x_2, x_3, x_20, x_6, x_24, x_8, x_9, x_25); +return x_26; } } } } -static lean_object* _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1() { +static lean_object* _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -3353,22 +3485,22 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_topLevelCommandParserFn), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2() { +static lean_object* _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_parseHeader___closed__1; -x_2 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1; +x_2 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1; 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; } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_8; lean_object* x_9; 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_8; lean_object* x_9; 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; size_t x_21; size_t x_22; lean_object* x_23; lean_dec(x_7); x_8 = lean_ctor_get(x_1, 0); lean_inc(x_8); @@ -3381,81 +3513,95 @@ lean_dec(x_10); x_12 = lean_box(0); x_13 = l_Lean_Parser_SyntaxStack_empty; x_14 = lean_unsigned_to_nat(0u); +x_15 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1; lean_inc(x_4); -x_15 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); -lean_ctor_set(x_15, 2, x_4); -lean_ctor_set(x_15, 3, x_11); -lean_ctor_set(x_15, 4, x_12); -x_16 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2; +x_16 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, x_14); +lean_ctor_set(x_16, 2, x_4); +lean_ctor_set(x_16, 3, x_11); +lean_ctor_set(x_16, 4, x_12); +lean_ctor_set(x_16, 5, x_15); +x_17 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2; lean_inc(x_1); lean_inc(x_2); -x_17 = l_Lean_Parser_ParserFn_run(x_16, x_2, x_1, x_9, x_15); +x_18 = l_Lean_Parser_ParserFn_run(x_17, x_2, x_1, x_9, x_16); +x_19 = lean_ctor_get(x_18, 5); +lean_inc(x_19); +x_20 = lean_array_get_size(x_19); +x_21 = lean_usize_of_nat(x_20); +lean_dec(x_20); +x_22 = 0; +lean_inc(x_2); +x_23 = l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1(x_2, x_19, x_21, x_22, x_3); +lean_dec(x_19); if (x_5 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_17, 2); -lean_inc(x_18); -x_19 = lean_box(0); -x_20 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3(x_17, x_2, x_4, x_1, x_3, x_18, x_5, x_6, x_19); -return x_20; +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 2); +lean_inc(x_24); +x_25 = lean_box(0); +lean_inc(x_24); +x_26 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3(x_18, x_2, x_24, x_4, x_1, x_23, x_24, x_5, x_6, x_25); +return x_26; } else { -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_ctor_get(x_17, 2); -lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 0); -lean_inc(x_22); -x_23 = l_Lean_Parser_SyntaxStack_isEmpty(x_22); -if (x_23 == 0) +lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_27 = lean_ctor_get(x_18, 2); +lean_inc(x_27); +x_28 = lean_ctor_get(x_18, 0); +lean_inc(x_28); +x_29 = l_Lean_Parser_SyntaxStack_isEmpty(x_28); +if (x_29 == 0) { -lean_object* x_24; uint8_t x_25; -x_24 = l_Lean_Parser_SyntaxStack_back(x_22); -x_25 = l_Lean_Syntax_isAntiquot(x_24); -lean_dec(x_24); -if (x_25 == 0) +lean_object* x_30; uint8_t x_31; +x_30 = l_Lean_Parser_SyntaxStack_back(x_28); +x_31 = l_Lean_Syntax_isAntiquot(x_30); +lean_dec(x_30); +if (x_31 == 0) { -lean_object* x_26; lean_object* x_27; -x_26 = lean_box(0); -x_27 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3(x_17, x_2, x_4, x_1, x_3, x_21, x_5, x_6, x_26); -return x_27; +lean_object* x_32; lean_object* x_33; +x_32 = lean_box(0); +lean_inc(x_27); +x_33 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3(x_18, x_2, x_27, x_4, x_1, x_23, x_27, x_5, x_6, x_32); +return x_33; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_17); +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_18); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_28 = lean_box(x_5); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_6); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_21); -lean_ctor_set(x_30, 1, x_29); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_3); -lean_ctor_set(x_31, 1, x_30); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -return x_32; +x_34 = lean_box(x_5); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_6); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_27); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_23); +lean_ctor_set(x_37, 1, x_36); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +return x_38; } } else { -lean_object* x_33; lean_object* x_34; -lean_dec(x_22); -x_33 = lean_box(0); -x_34 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3(x_17, x_2, x_4, x_1, x_3, x_21, x_5, x_6, x_33); -return x_34; +lean_object* x_39; lean_object* x_40; +lean_dec(x_28); +x_39 = lean_box(0); +lean_inc(x_27); +x_40 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3(x_18, x_2, x_27, x_4, x_1, x_23, x_27, x_5, x_6, x_39); +return x_40; } } } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -3498,7 +3644,7 @@ x_18 = lean_unbox(x_13); lean_dec(x_13); lean_inc(x_1); lean_inc(x_2); -x_19 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(x_2, x_1, x_7, x_10, x_18, x_14, x_17); +x_19 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(x_2, x_1, x_7, x_10, x_18, x_14, x_17); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; @@ -3553,7 +3699,7 @@ x_29 = lean_unbox(x_24); lean_dec(x_24); lean_inc(x_1); lean_inc(x_2); -x_30 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(x_2, x_1, x_7, x_10, x_29, x_25, x_28); +x_30 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(x_2, x_1, x_7, x_10, x_29, x_25, x_28); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; @@ -3622,7 +3768,7 @@ x_43 = lean_unbox(x_37); lean_dec(x_37); lean_inc(x_1); lean_inc(x_2); -x_44 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(x_2, x_1, x_7, x_36, x_43, x_38, x_42); +x_44 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(x_2, x_1, x_7, x_36, x_43, x_38, x_42); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; @@ -3708,7 +3854,7 @@ x_60 = lean_unbox(x_54); lean_dec(x_54); lean_inc(x_1); lean_inc(x_2); -x_61 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(x_2, x_1, x_51, x_52, x_60, x_55, x_59); +x_61 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(x_2, x_1, x_51, x_52, x_60, x_55, x_59); if (lean_obj_tag(x_61) == 0) { lean_object* x_62; @@ -3780,7 +3926,7 @@ lean_ctor_set(x_11, 1, x_10); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_4); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1(x_1, x_2, x_12); +x_13 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2(x_1, x_2, x_12); x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); x_15 = lean_ctor_get(x_14, 1); @@ -3826,7 +3972,7 @@ lean_ctor_set(x_28, 1, x_27); x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_4); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1(x_1, x_2, x_29); +x_30 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2(x_1, x_2, x_29); x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); x_32 = lean_ctor_get(x_31, 1); @@ -3857,7 +4003,20 @@ return x_40; } } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1___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_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_8 = l_Array_forInUnsafe_loop___at_Lean_Parser_parseCommand___spec__1(x_1, x_2, x_6, x_7, x_5); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1___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) { _start: { uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -3865,40 +4024,40 @@ x_8 = lean_unbox(x_1); lean_dec(x_1); x_9 = lean_unbox(x_5); lean_dec(x_5); -x_10 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__1(x_8, x_2, x_3, x_4, x_9, x_6, x_7); +x_10 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__1(x_8, x_2, x_3, x_4, x_9, x_6, x_7); lean_dec(x_7); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___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) { -_start: -{ -uint8_t x_9; lean_object* x_10; -x_9 = lean_unbox(x_6); -lean_dec(x_6); -x_10 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_9, x_7, x_8); -lean_dec(x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3___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) { +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___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: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_7); lean_dec(x_7); -x_11 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_8, x_9); +x_11 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_8, x_9); lean_dec(x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___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_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3___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, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_8); +lean_dec(x_8); +x_12 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_9, x_10); +lean_dec(x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___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) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_5); lean_dec(x_5); -x_9 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4(x_1, x_2, x_3, x_4, x_8, x_6, x_7); +x_9 = l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4(x_1, x_2, x_3, x_4, x_8, x_6, x_7); return x_9; } } @@ -4572,15 +4731,6 @@ static lean_object* _init_l_Lean_Parser_testParseModule___closed__1() { _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_Lean_Parser_testParseModule___closed__2() { -_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; @@ -4611,7 +4761,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_8, 1); lean_inc(x_12); lean_dec(x_8); -x_13 = l_Lean_Parser_testParseModule___closed__1; +x_13 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1; x_14 = l_Lean_Parser_testParseModuleAux_parse(x_1, x_5, x_11, x_12, x_13, x_9); if (lean_obj_tag(x_14) == 0) { @@ -4622,7 +4772,7 @@ if (x_15 == 0) 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; x_16 = lean_ctor_get(x_14, 0); x_17 = l_Lean_mkListNode(x_16); -x_18 = l_Lean_Parser_testParseModule___closed__2; +x_18 = l_Lean_Parser_testParseModule___closed__1; x_19 = lean_array_push(x_18, x_10); x_20 = lean_array_push(x_19, x_17); x_21 = lean_box(2); @@ -4644,7 +4794,7 @@ lean_inc(x_26); lean_inc(x_25); lean_dec(x_14); x_27 = l_Lean_mkListNode(x_25); -x_28 = l_Lean_Parser_testParseModule___closed__2; +x_28 = l_Lean_Parser_testParseModule___closed__1; x_29 = lean_array_push(x_28, x_10); x_30 = lean_array_push(x_29, x_27); x_31 = lean_box(2); @@ -5146,10 +5296,12 @@ l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1 = _init_l lean_mark_persistent(l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__1); l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2 = _init_l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2(); lean_mark_persistent(l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__2); -l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1 = _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1(); -lean_mark_persistent(l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__1); -l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2 = _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2(); -lean_mark_persistent(l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__1___lambda__4___closed__2); +l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3 = _init_l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput___closed__3); +l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1 = _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1(); +lean_mark_persistent(l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__1); +l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2 = _init_l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2(); +lean_mark_persistent(l_Lean_Loop_forIn_loop___at_Lean_Parser_parseCommand___spec__2___lambda__4___closed__2); l_Lean_Parser_testParseModuleAux_parse___closed__1 = _init_l_Lean_Parser_testParseModuleAux_parse___closed__1(); lean_mark_persistent(l_Lean_Parser_testParseModuleAux_parse___closed__1); l_Lean_Parser_testParseModuleAux_parse___closed__2 = _init_l_Lean_Parser_testParseModuleAux_parse___closed__2(); @@ -5158,8 +5310,6 @@ l_Lean_Parser_testParseModuleAux_parse___closed__3 = _init_l_Lean_Parser_testPar lean_mark_persistent(l_Lean_Parser_testParseModuleAux_parse___closed__3); l_Lean_Parser_testParseModule___closed__1 = _init_l_Lean_Parser_testParseModule___closed__1(); lean_mark_persistent(l_Lean_Parser_testParseModule___closed__1); -l_Lean_Parser_testParseModule___closed__2 = _init_l_Lean_Parser_testParseModule___closed__2(); -lean_mark_persistent(l_Lean_Parser_testParseModule___closed__2); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Types.c b/stage0/stdlib/Lean/Parser/Types.c index 89f51806f5..078fff68af 100644 --- a/stage0/stdlib/Lean/Parser/Types.c +++ b/stage0/stdlib/Lean/Parser/Types.c @@ -19,6 +19,7 @@ static lean_object* l_Lean_Parser_withCacheFn___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedParserInfo; lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_instInhabitedParserInfo___closed__1; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_SyntaxStack_pop(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_mkErrorsAt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_instInhabitedError___closed__1; @@ -74,6 +75,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object LEAN_EXPORT lean_object* l_Lean_Parser_adaptUncacheableContextFn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Parser_Types_0__Lean_Parser_beqCacheableParserContext____x40_Lean_Parser_Types___hyg_208_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedParserFn(lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_mkNode___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Error_toString___closed__1; static lean_object* l_Lean_Parser_instBEqParserCacheKey___closed__1; @@ -100,10 +102,13 @@ LEAN_EXPORT lean_object* l_List_eraseReps_loop___at_Lean_Parser_Error_toString__ extern lean_object* l_instInhabitedPUnit; static lean_object* l___private_Lean_Parser_Types_0__Lean_Parser_Error_expectedToString___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_adaptCacheableContext___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_recoveredErrors___default; +static lean_object* l_Lean_Parser_ParserState_allErrors___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_SyntaxStack_extract(lean_object*, lean_object*, lean_object*); lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Parser_Types_0__Lean_Parser_beqParserCacheKey____x40_Lean_Parser_Types___hyg_788_(lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_popSyntax(lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at___private_Lean_Parser_Types_0__Lean_Parser_beqCacheableParserContext____x40_Lean_Parser_Types___hyg_208____spec__1(lean_object*, lean_object*); @@ -133,6 +138,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_stxStack___default; static lean_object* l_Array_qsort_sort___at_Lean_Parser_Error_toString___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Parser_withCacheFn___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_toString___at_Lean_Parser_FirstTokens_toStr___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_allErrors(lean_object*); static lean_object* l_Lean_Parser_SyntaxStack_get_x21___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_SyntaxStack_get_x21(lean_object*, lean_object*); lean_object* lean_array_pop(lean_object*); @@ -174,11 +180,13 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_ob LEAN_EXPORT lean_object* l_Lean_Parser_Error_merge(lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; static lean_object* l_Lean_Parser_instInhabitedParser___closed__2; +uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); size_t lean_hashmap_mk_idx(lean_object*, uint64_t); static lean_object* l_Lean_Parser_Error_instToStringError___closed__1; lean_object* l_Array_append___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedInputContext; LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Parser_withCacheFn___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedError; @@ -210,6 +218,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_FirstTokens_toOptional(lean_object*); static lean_object* l_Lean_Parser_instInhabitedInputContext___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_withFn(lean_object*, lean_object*); static lean_object* l_Lean_Parser_FirstTokens_toStr___closed__2; +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_FirstTokens_instToStringFirstTokens; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -240,7 +249,6 @@ LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x4 static lean_object* l_Lean_Parser_Parser_info___default___closed__2; lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_next_x27(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_instBEqError; LEAN_EXPORT lean_object* l_Lean_Parser_initCacheForInput(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_withResetCacheFn(lean_object*, lean_object*, lean_object*); @@ -296,6 +304,8 @@ static lean_object* l_Lean_Parser_instBEqError___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_minPrec; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedParserFn___boxed(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); @@ -1397,7 +1407,7 @@ return x_12; else { uint8_t x_13; -x_13 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(x_5, x_8); +x_13 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(x_5, x_8); lean_dec(x_8); lean_dec(x_5); return x_13; @@ -1700,7 +1710,7 @@ x_5 = lean_ctor_get(x_1, 2); lean_inc(x_5); lean_dec(x_1); x_6 = lean_box(0); -x_7 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_2711____spec__1(x_5, x_6); +x_7 = l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_4084____spec__1(x_5, x_6); if (x_4 == 0) { lean_object* x_8; @@ -2462,6 +2472,14 @@ x_1 = lean_box(0); return x_1; } } +static lean_object* _init_l_Lean_Parser_ParserState_recoveredErrors___default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_instInhabitedInputContext___closed__1; +return x_1; +} +} LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -2586,23 +2604,26 @@ return x_1; } else { -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_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; x_10 = lean_ctor_get(x_1, 0); x_11 = lean_ctor_get(x_1, 1); x_12 = lean_ctor_get(x_1, 3); +x_13 = lean_ctor_get(x_1, 5); +lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_dec(x_1); -x_13 = l_Lean_Parser_SyntaxStack_shrink(x_10, x_2); -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_11); -lean_ctor_set(x_15, 2, x_3); -lean_ctor_set(x_15, 3, x_12); -lean_ctor_set(x_15, 4, x_14); -return x_15; +x_14 = l_Lean_Parser_SyntaxStack_shrink(x_10, x_2); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_11); +lean_ctor_set(x_16, 2, x_3); +lean_ctor_set(x_16, 3, x_12); +lean_ctor_set(x_16, 4, x_15); +lean_ctor_set(x_16, 5, x_13); +return x_16; } } } @@ -2630,23 +2651,26 @@ return x_1; } else { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 3); x_8 = lean_ctor_get(x_1, 4); +x_9 = lean_ctor_get(x_1, 5); +lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_dec(x_1); -x_9 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_9, 0, x_5); -lean_ctor_set(x_9, 1, x_6); -lean_ctor_set(x_9, 2, x_2); -lean_ctor_set(x_9, 3, x_7); -lean_ctor_set(x_9, 4, x_8); -return x_9; +x_10 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_6); +lean_ctor_set(x_10, 2, x_2); +lean_ctor_set(x_10, 3, x_7); +lean_ctor_set(x_10, 4, x_8); +lean_ctor_set(x_10, 5, x_9); +return x_10; } } } @@ -2665,23 +2689,26 @@ return x_1; } else { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 2); x_8 = lean_ctor_get(x_1, 4); +x_9 = lean_ctor_get(x_1, 5); +lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_dec(x_1); -x_9 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_9, 0, x_5); -lean_ctor_set(x_9, 1, x_6); -lean_ctor_set(x_9, 2, x_7); -lean_ctor_set(x_9, 3, x_2); -lean_ctor_set(x_9, 4, x_8); -return x_9; +x_10 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_6); +lean_ctor_set(x_10, 2, x_7); +lean_ctor_set(x_10, 3, x_2); +lean_ctor_set(x_10, 4, x_8); +lean_ctor_set(x_10, 5, x_9); +return x_10; } } } @@ -2700,26 +2727,29 @@ return x_1; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_ctor_get(x_1, 1); x_8 = lean_ctor_get(x_1, 2); x_9 = lean_ctor_get(x_1, 3); x_10 = lean_ctor_get(x_1, 4); +x_11 = lean_ctor_get(x_1, 5); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_dec(x_1); -x_11 = l_Lean_Parser_SyntaxStack_push(x_6, x_2); -x_12 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_7); -lean_ctor_set(x_12, 2, x_8); -lean_ctor_set(x_12, 3, x_9); -lean_ctor_set(x_12, 4, x_10); -return x_12; +x_12 = l_Lean_Parser_SyntaxStack_push(x_6, x_2); +x_13 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +lean_ctor_set(x_13, 2, x_8); +lean_ctor_set(x_13, 3, x_9); +lean_ctor_set(x_13, 4, x_10); +lean_ctor_set(x_13, 5, x_11); +return x_13; } } } @@ -2738,26 +2768,29 @@ return x_1; } else { -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_object* x_11; +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_object* x_11; lean_object* x_12; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 2); x_8 = lean_ctor_get(x_1, 3); x_9 = lean_ctor_get(x_1, 4); +x_10 = lean_ctor_get(x_1, 5); +lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_dec(x_1); -x_10 = l_Lean_Parser_SyntaxStack_pop(x_5); -x_11 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_6); -lean_ctor_set(x_11, 2, x_7); -lean_ctor_set(x_11, 3, x_8); -lean_ctor_set(x_11, 4, x_9); -return x_11; +x_11 = l_Lean_Parser_SyntaxStack_pop(x_5); +x_12 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_6); +lean_ctor_set(x_12, 2, x_7); +lean_ctor_set(x_12, 3, x_8); +lean_ctor_set(x_12, 4, x_9); +lean_ctor_set(x_12, 5, x_10); +return x_12; } } } @@ -2776,26 +2809,29 @@ return x_1; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_ctor_get(x_1, 1); x_8 = lean_ctor_get(x_1, 2); x_9 = lean_ctor_get(x_1, 3); x_10 = lean_ctor_get(x_1, 4); +x_11 = lean_ctor_get(x_1, 5); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_dec(x_1); -x_11 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); -x_12 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_7); -lean_ctor_set(x_12, 2, x_8); -lean_ctor_set(x_12, 3, x_9); -lean_ctor_set(x_12, 4, x_10); -return x_12; +x_12 = l_Lean_Parser_SyntaxStack_shrink(x_6, x_2); +x_13 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +lean_ctor_set(x_13, 2, x_8); +lean_ctor_set(x_13, 3, x_9); +lean_ctor_set(x_13, 4, x_10); +lean_ctor_set(x_13, 5, x_11); +return x_13; } } } @@ -2824,24 +2860,27 @@ return x_1; } else { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); x_9 = lean_ctor_get(x_1, 3); x_10 = lean_ctor_get(x_1, 4); +x_11 = lean_ctor_get(x_1, 5); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_dec(x_1); -x_11 = lean_string_utf8_next(x_2, x_3); -x_12 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_12, 0, x_7); -lean_ctor_set(x_12, 1, x_8); -lean_ctor_set(x_12, 2, x_11); -lean_ctor_set(x_12, 3, x_9); -lean_ctor_set(x_12, 4, x_10); -return x_12; +x_12 = lean_string_utf8_next(x_2, x_3); +x_13 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_13, 0, x_7); +lean_ctor_set(x_13, 1, x_8); +lean_ctor_set(x_13, 2, x_12); +lean_ctor_set(x_13, 3, x_9); +lean_ctor_set(x_13, 4, x_10); +lean_ctor_set(x_13, 5, x_11); +return x_13; } } } @@ -2871,24 +2910,27 @@ return x_1; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; x_8 = lean_ctor_get(x_1, 0); x_9 = lean_ctor_get(x_1, 1); x_10 = lean_ctor_get(x_1, 3); x_11 = lean_ctor_get(x_1, 4); +x_12 = lean_ctor_get(x_1, 5); +lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_12 = lean_string_utf8_next_fast(x_2, x_3); -x_13 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_13, 0, x_8); -lean_ctor_set(x_13, 1, x_9); -lean_ctor_set(x_13, 2, x_12); -lean_ctor_set(x_13, 3, x_10); -lean_ctor_set(x_13, 4, x_11); -return x_13; +x_13 = lean_string_utf8_next_fast(x_2, x_3); +x_14 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_14, 0, x_8); +lean_ctor_set(x_14, 1, x_9); +lean_ctor_set(x_14, 2, x_13); +lean_ctor_set(x_14, 3, x_10); +lean_ctor_set(x_14, 4, x_11); +lean_ctor_set(x_14, 5, x_12); +return x_14; } } } @@ -2902,49 +2944,6 @@ lean_dec(x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_toErrorMsg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_ctor_get(x_2, 4); -lean_inc(x_3); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; -lean_dec(x_2); -x_4 = l_Lean_Parser_instInhabitedInputContext___closed__2; -return x_4; -} -else -{ -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_object* x_11; lean_object* x_12; -x_5 = lean_ctor_get(x_3, 0); -lean_inc(x_5); -lean_dec(x_3); -x_6 = lean_ctor_get(x_1, 2); -x_7 = lean_ctor_get(x_2, 2); -lean_inc(x_7); -lean_dec(x_2); -x_8 = l_Lean_FileMap_toPosition(x_6, x_7); -lean_dec(x_7); -x_9 = lean_ctor_get(x_1, 1); -x_10 = l_Lean_Parser_Error_toString(x_5); -x_11 = lean_box(0); -x_12 = l_Lean_mkErrorStringWithPos(x_9, x_8, x_10, x_11); -lean_dec(x_10); -return x_12; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_toErrorMsg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Parser_ParserState_toErrorMsg(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_mkNode(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -3008,82 +3007,87 @@ return x_1; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +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; uint8_t x_31; x_24 = lean_ctor_get(x_1, 0); x_25 = lean_ctor_get(x_1, 1); x_26 = lean_ctor_get(x_1, 2); x_27 = lean_ctor_get(x_1, 3); x_28 = lean_ctor_get(x_1, 4); +x_29 = lean_ctor_get(x_1, 5); +lean_inc(x_29); lean_inc(x_28); lean_inc(x_27); lean_inc(x_26); lean_inc(x_25); lean_inc(x_24); lean_dec(x_1); -x_29 = lean_box(0); +x_30 = lean_box(0); lean_inc(x_28); -x_30 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_29); -if (x_30 == 0) +x_31 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_158____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_30); +if (x_31 == 0) { -lean_object* x_31; uint8_t x_32; -x_31 = l_Lean_Parser_SyntaxStack_size(x_24); -x_32 = lean_nat_dec_eq(x_31, x_3); -if (x_32 == 0) +lean_object* x_32; uint8_t x_33; +x_32 = l_Lean_Parser_SyntaxStack_size(x_24); +x_33 = lean_nat_dec_eq(x_32, x_3); +if (x_33 == 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 = l_Lean_Parser_SyntaxStack_extract(x_24, x_3, x_31); -lean_dec(x_31); -x_34 = lean_box(2); -x_35 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_2); -lean_ctor_set(x_35, 2, x_33); -x_36 = l_Lean_Parser_SyntaxStack_shrink(x_24, x_3); -x_37 = l_Lean_Parser_SyntaxStack_push(x_36, x_35); -x_38 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_25); -lean_ctor_set(x_38, 2, x_26); -lean_ctor_set(x_38, 3, x_27); -lean_ctor_set(x_38, 4, x_28); -return x_38; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_34 = l_Lean_Parser_SyntaxStack_extract(x_24, x_3, x_32); +lean_dec(x_32); +x_35 = lean_box(2); +x_36 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_2); +lean_ctor_set(x_36, 2, x_34); +x_37 = l_Lean_Parser_SyntaxStack_shrink(x_24, x_3); +x_38 = l_Lean_Parser_SyntaxStack_push(x_37, x_36); +x_39 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_25); +lean_ctor_set(x_39, 2, x_26); +lean_ctor_set(x_39, 3, x_27); +lean_ctor_set(x_39, 4, x_28); +lean_ctor_set(x_39, 5, x_29); +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_31); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_32); lean_dec(x_2); -x_39 = lean_box(0); -x_40 = l_Lean_Parser_SyntaxStack_push(x_24, x_39); -x_41 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_25); -lean_ctor_set(x_41, 2, x_26); -lean_ctor_set(x_41, 3, x_27); -lean_ctor_set(x_41, 4, x_28); -return x_41; +x_40 = lean_box(0); +x_41 = l_Lean_Parser_SyntaxStack_push(x_24, x_40); +x_42 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_25); +lean_ctor_set(x_42, 2, x_26); +lean_ctor_set(x_42, 3, x_27); +lean_ctor_set(x_42, 4, x_28); +lean_ctor_set(x_42, 5, x_29); +return x_42; } } else { -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; -x_42 = l_Lean_Parser_SyntaxStack_size(x_24); -x_43 = l_Lean_Parser_SyntaxStack_extract(x_24, x_3, x_42); -lean_dec(x_42); -x_44 = lean_box(2); -x_45 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_2); -lean_ctor_set(x_45, 2, x_43); -x_46 = l_Lean_Parser_SyntaxStack_shrink(x_24, x_3); -x_47 = l_Lean_Parser_SyntaxStack_push(x_46, x_45); -x_48 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_25); -lean_ctor_set(x_48, 2, x_26); -lean_ctor_set(x_48, 3, x_27); -lean_ctor_set(x_48, 4, x_28); -return x_48; +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_43 = l_Lean_Parser_SyntaxStack_size(x_24); +x_44 = l_Lean_Parser_SyntaxStack_extract(x_24, x_3, x_43); +lean_dec(x_43); +x_45 = lean_box(2); +x_46 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_2); +lean_ctor_set(x_46, 2, x_44); +x_47 = l_Lean_Parser_SyntaxStack_shrink(x_24, x_3); +x_48 = l_Lean_Parser_SyntaxStack_push(x_47, x_46); +x_49 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_25); +lean_ctor_set(x_49, 2, x_26); +lean_ctor_set(x_49, 3, x_27); +lean_ctor_set(x_49, 4, x_28); +lean_ctor_set(x_49, 5, x_29); +return x_49; } } } @@ -3124,38 +3128,41 @@ return x_1; } else { -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_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; x_14 = lean_ctor_get(x_1, 0); x_15 = lean_ctor_get(x_1, 1); x_16 = lean_ctor_get(x_1, 2); x_17 = lean_ctor_get(x_1, 3); x_18 = lean_ctor_get(x_1, 4); +x_19 = lean_ctor_get(x_1, 5); +lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_dec(x_1); -x_19 = lean_unsigned_to_nat(1u); -x_20 = lean_nat_sub(x_3, x_19); -x_21 = l_Lean_Parser_SyntaxStack_size(x_14); -x_22 = l_Lean_Parser_SyntaxStack_extract(x_14, x_20, x_21); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_sub(x_3, x_20); +x_22 = l_Lean_Parser_SyntaxStack_size(x_14); +x_23 = l_Lean_Parser_SyntaxStack_extract(x_14, x_21, x_22); +lean_dec(x_22); +x_24 = lean_box(2); +x_25 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_2); +lean_ctor_set(x_25, 2, x_23); +x_26 = l_Lean_Parser_SyntaxStack_shrink(x_14, x_21); lean_dec(x_21); -x_23 = lean_box(2); -x_24 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_2); -lean_ctor_set(x_24, 2, x_22); -x_25 = l_Lean_Parser_SyntaxStack_shrink(x_14, x_20); -lean_dec(x_20); -x_26 = l_Lean_Parser_SyntaxStack_push(x_25, x_24); -x_27 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_15); -lean_ctor_set(x_27, 2, x_16); -lean_ctor_set(x_27, 3, x_17); -lean_ctor_set(x_27, 4, x_18); -return x_27; +x_27 = l_Lean_Parser_SyntaxStack_push(x_26, x_25); +x_28 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_15); +lean_ctor_set(x_28, 2, x_16); +lean_ctor_set(x_28, 3, x_17); +lean_ctor_set(x_28, 4, x_18); +lean_ctor_set(x_28, 5, x_19); +return x_28; } } } @@ -3168,6 +3175,57 @@ lean_dec(x_3); return x_4; } } +static lean_object* _init_l_Lean_Parser_ParserState_allErrors___closed__1() { +_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; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_allErrors(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 4); +lean_inc(x_2); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 5); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_Parser_instInhabitedInputContext___closed__1; +x_5 = l_Array_append___rarg(x_3, x_4); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_1, 2); +lean_inc(x_7); +x_8 = lean_ctor_get(x_1, 5); +lean_inc(x_8); +lean_dec(x_1); +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +lean_dec(x_2); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_6); +lean_ctor_set(x_10, 1, x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +x_12 = l_Lean_Parser_ParserState_allErrors___closed__1; +x_13 = lean_array_push(x_12, x_11); +x_14 = l_Array_append___rarg(x_8, x_13); +return x_14; +} +} +} LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_setError(lean_object* x_1, lean_object* x_2) { _start: { @@ -3185,25 +3243,28 @@ return x_1; } else { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_ctor_get(x_1, 1); x_8 = lean_ctor_get(x_1, 2); x_9 = lean_ctor_get(x_1, 3); +x_10 = lean_ctor_get(x_1, 5); +lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_dec(x_1); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_2); -x_11 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_11, 0, x_6); -lean_ctor_set(x_11, 1, x_7); -lean_ctor_set(x_11, 2, x_8); -lean_ctor_set(x_11, 3, x_9); -lean_ctor_set(x_11, 4, x_10); -return x_11; +x_11 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_11, 0, x_2); +x_12 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_12, 0, x_6); +lean_ctor_set(x_12, 1, x_7); +lean_ctor_set(x_12, 2, x_8); +lean_ctor_set(x_12, 3, x_9); +lean_ctor_set(x_12, 4, x_11); +lean_ctor_set(x_12, 5, x_10); +return x_12; } } } @@ -3235,26 +3296,29 @@ return x_11; } else { -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_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; x_12 = lean_ctor_get(x_1, 0); x_13 = lean_ctor_get(x_1, 1); x_14 = lean_ctor_get(x_1, 2); x_15 = lean_ctor_get(x_1, 3); +x_16 = lean_ctor_get(x_1, 5); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_dec(x_1); -x_16 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_16, 0, x_7); -x_17 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_17, 0, x_12); -lean_ctor_set(x_17, 1, x_13); -lean_ctor_set(x_17, 2, x_14); -lean_ctor_set(x_17, 3, x_15); -lean_ctor_set(x_17, 4, x_16); -x_18 = l_Lean_Parser_ParserState_pushSyntax(x_17, x_5); -return x_18; +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_7); +x_18 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_18, 0, x_12); +lean_ctor_set(x_18, 1, x_13); +lean_ctor_set(x_18, 2, x_14); +lean_ctor_set(x_18, 3, x_15); +lean_ctor_set(x_18, 4, x_17); +lean_ctor_set(x_18, 5, x_16); +x_19 = l_Lean_Parser_ParserState_pushSyntax(x_18, x_5); +return x_19; } } } @@ -3289,33 +3353,36 @@ return x_10; } else { -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_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; x_11 = lean_ctor_get(x_1, 0); x_12 = lean_ctor_get(x_1, 1); x_13 = lean_ctor_get(x_1, 2); x_14 = lean_ctor_get(x_1, 3); +x_15 = lean_ctor_get(x_1, 5); +lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_dec(x_1); -x_15 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_15, 0, x_6); -x_16 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_16, 0, x_11); -lean_ctor_set(x_16, 1, x_12); -lean_ctor_set(x_16, 2, x_13); -lean_ctor_set(x_16, 3, x_14); -lean_ctor_set(x_16, 4, x_15); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_6); +x_17 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_17, 0, x_11); +lean_ctor_set(x_17, 1, x_12); +lean_ctor_set(x_17, 2, x_13); +lean_ctor_set(x_17, 3, x_14); +lean_ctor_set(x_17, 4, x_16); +lean_ctor_set(x_17, 5, x_15); if (x_4 == 0) { -return x_16; +return x_17; } else { -lean_object* x_17; -x_17 = l_Lean_Parser_ParserState_pushSyntax(x_16, x_5); -return x_17; +lean_object* x_18; +x_18 = l_Lean_Parser_ParserState_pushSyntax(x_17, x_5); +return x_18; } } } @@ -3372,26 +3439,29 @@ return x_10; } else { -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_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; x_11 = lean_ctor_get(x_2, 0); x_12 = lean_ctor_get(x_2, 1); x_13 = lean_ctor_get(x_2, 2); x_14 = lean_ctor_get(x_2, 3); +x_15 = lean_ctor_get(x_2, 5); +lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_dec(x_2); -x_15 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_15, 0, x_6); -x_16 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_16, 0, x_11); -lean_ctor_set(x_16, 1, x_12); -lean_ctor_set(x_16, 2, x_13); -lean_ctor_set(x_16, 3, x_14); -lean_ctor_set(x_16, 4, x_15); -x_17 = l_Lean_Parser_ParserState_pushSyntax(x_16, x_4); -return x_17; +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_6); +x_17 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_17, 0, x_11); +lean_ctor_set(x_17, 1, x_12); +lean_ctor_set(x_17, 2, x_13); +lean_ctor_set(x_17, 3, x_14); +lean_ctor_set(x_17, 4, x_16); +lean_ctor_set(x_17, 5, x_15); +x_18 = l_Lean_Parser_ParserState_pushSyntax(x_17, x_4); +return x_18; } } } @@ -3547,165 +3617,178 @@ return x_20; } else { -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_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_21 = lean_ctor_get(x_14, 0); x_22 = lean_ctor_get(x_14, 1); x_23 = lean_ctor_get(x_14, 2); x_24 = lean_ctor_get(x_14, 3); +x_25 = lean_ctor_get(x_14, 5); +lean_inc(x_25); lean_inc(x_24); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); lean_dec(x_14); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_9); -x_26 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_26, 0, x_21); -lean_ctor_set(x_26, 1, x_22); -lean_ctor_set(x_26, 2, x_23); -lean_ctor_set(x_26, 3, x_24); -lean_ctor_set(x_26, 4, x_25); -x_27 = l_Lean_Parser_ParserState_popSyntax(x_26); -x_28 = lean_box(0); -x_29 = l_Lean_Parser_ParserState_pushSyntax(x_27, x_28); -return x_29; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_9); +x_27 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_27, 0, x_21); +lean_ctor_set(x_27, 1, x_22); +lean_ctor_set(x_27, 2, x_23); +lean_ctor_set(x_27, 3, x_24); +lean_ctor_set(x_27, 4, x_26); +lean_ctor_set(x_27, 5, x_25); +x_28 = l_Lean_Parser_ParserState_popSyntax(x_27); +x_29 = lean_box(0); +x_30 = l_Lean_Parser_ParserState_pushSyntax(x_28, x_29); +return x_30; } } else { -uint8_t x_30; -x_30 = !lean_is_exclusive(x_11); -if (x_30 == 0) +uint8_t x_31; +x_31 = !lean_is_exclusive(x_11); +if (x_31 == 0) { -lean_object* x_31; lean_object* x_32; uint8_t x_33; -x_31 = lean_ctor_get(x_11, 0); -x_32 = l_Lean_Parser_ParserState_setPos(x_1, x_31); -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_11, 0); +x_33 = l_Lean_Parser_ParserState_setPos(x_1, x_32); +x_34 = !lean_is_exclusive(x_33); +if (x_34 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_34 = lean_ctor_get(x_32, 4); -lean_dec(x_34); +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_33, 4); +lean_dec(x_35); lean_ctor_set(x_11, 0, x_9); -lean_ctor_set(x_32, 4, x_11); -x_35 = l_Lean_Parser_ParserState_popSyntax(x_32); -x_36 = lean_box(0); -x_37 = l_Lean_Parser_ParserState_pushSyntax(x_35, x_36); -return x_37; +lean_ctor_set(x_33, 4, x_11); +x_36 = l_Lean_Parser_ParserState_popSyntax(x_33); +x_37 = lean_box(0); +x_38 = l_Lean_Parser_ParserState_pushSyntax(x_36, x_37); +return x_38; } 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; -x_38 = lean_ctor_get(x_32, 0); -x_39 = lean_ctor_get(x_32, 1); -x_40 = lean_ctor_get(x_32, 2); -x_41 = lean_ctor_get(x_32, 3); +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; +x_39 = lean_ctor_get(x_33, 0); +x_40 = lean_ctor_get(x_33, 1); +x_41 = lean_ctor_get(x_33, 2); +x_42 = lean_ctor_get(x_33, 3); +x_43 = lean_ctor_get(x_33, 5); +lean_inc(x_43); +lean_inc(x_42); lean_inc(x_41); lean_inc(x_40); lean_inc(x_39); -lean_inc(x_38); -lean_dec(x_32); +lean_dec(x_33); lean_ctor_set(x_11, 0, x_9); -x_42 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_42, 0, x_38); -lean_ctor_set(x_42, 1, x_39); -lean_ctor_set(x_42, 2, x_40); -lean_ctor_set(x_42, 3, x_41); -lean_ctor_set(x_42, 4, x_11); -x_43 = l_Lean_Parser_ParserState_popSyntax(x_42); -x_44 = lean_box(0); -x_45 = l_Lean_Parser_ParserState_pushSyntax(x_43, x_44); -return x_45; +x_44 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_44, 0, x_39); +lean_ctor_set(x_44, 1, x_40); +lean_ctor_set(x_44, 2, x_41); +lean_ctor_set(x_44, 3, x_42); +lean_ctor_set(x_44, 4, x_11); +lean_ctor_set(x_44, 5, x_43); +x_45 = l_Lean_Parser_ParserState_popSyntax(x_44); +x_46 = lean_box(0); +x_47 = l_Lean_Parser_ParserState_pushSyntax(x_45, x_46); +return x_47; } } else { -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; -x_46 = lean_ctor_get(x_11, 0); -lean_inc(x_46); -lean_dec(x_11); -x_47 = l_Lean_Parser_ParserState_setPos(x_1, x_46); -x_48 = lean_ctor_get(x_47, 0); +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; +x_48 = lean_ctor_get(x_11, 0); lean_inc(x_48); -x_49 = lean_ctor_get(x_47, 1); -lean_inc(x_49); -x_50 = lean_ctor_get(x_47, 2); +lean_dec(x_11); +x_49 = l_Lean_Parser_ParserState_setPos(x_1, x_48); +x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); -x_51 = lean_ctor_get(x_47, 3); +x_51 = lean_ctor_get(x_49, 1); lean_inc(x_51); -if (lean_is_exclusive(x_47)) { - lean_ctor_release(x_47, 0); - lean_ctor_release(x_47, 1); - lean_ctor_release(x_47, 2); - lean_ctor_release(x_47, 3); - lean_ctor_release(x_47, 4); - x_52 = x_47; +x_52 = lean_ctor_get(x_49, 2); +lean_inc(x_52); +x_53 = lean_ctor_get(x_49, 3); +lean_inc(x_53); +x_54 = lean_ctor_get(x_49, 5); +lean_inc(x_54); +if (lean_is_exclusive(x_49)) { + lean_ctor_release(x_49, 0); + lean_ctor_release(x_49, 1); + lean_ctor_release(x_49, 2); + lean_ctor_release(x_49, 3); + lean_ctor_release(x_49, 4); + lean_ctor_release(x_49, 5); + x_55 = x_49; } else { - lean_dec_ref(x_47); - x_52 = lean_box(0); + lean_dec_ref(x_49); + x_55 = lean_box(0); } -x_53 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_53, 0, x_9); -if (lean_is_scalar(x_52)) { - x_54 = lean_alloc_ctor(0, 5, 0); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_9); +if (lean_is_scalar(x_55)) { + x_57 = lean_alloc_ctor(0, 6, 0); } else { - x_54 = x_52; + x_57 = x_55; } -lean_ctor_set(x_54, 0, x_48); -lean_ctor_set(x_54, 1, x_49); -lean_ctor_set(x_54, 2, x_50); -lean_ctor_set(x_54, 3, x_51); -lean_ctor_set(x_54, 4, x_53); -x_55 = l_Lean_Parser_ParserState_popSyntax(x_54); -x_56 = lean_box(0); -x_57 = l_Lean_Parser_ParserState_pushSyntax(x_55, x_56); -return x_57; +lean_ctor_set(x_57, 0, x_50); +lean_ctor_set(x_57, 1, x_51); +lean_ctor_set(x_57, 2, x_52); +lean_ctor_set(x_57, 3, x_53); +lean_ctor_set(x_57, 4, x_56); +lean_ctor_set(x_57, 5, x_54); +x_58 = l_Lean_Parser_ParserState_popSyntax(x_57); +x_59 = lean_box(0); +x_60 = l_Lean_Parser_ParserState_pushSyntax(x_58, x_59); +return x_60; } } } else { -lean_object* x_58; uint8_t x_59; +lean_object* x_61; uint8_t x_62; lean_dec(x_5); -x_58 = l_Lean_Parser_ParserState_setPos(x_1, x_3); -x_59 = !lean_is_exclusive(x_58); -if (x_59 == 0) +x_61 = l_Lean_Parser_ParserState_setPos(x_1, x_3); +x_62 = !lean_is_exclusive(x_61); +if (x_62 == 0) { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_60 = lean_ctor_get(x_58, 4); -lean_dec(x_60); -x_61 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_61, 0, x_9); -lean_ctor_set(x_58, 4, x_61); -x_62 = l_Lean_Parser_ParserState_popSyntax(x_58); -x_63 = lean_box(0); -x_64 = l_Lean_Parser_ParserState_pushSyntax(x_62, x_63); -return x_64; +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_63 = lean_ctor_get(x_61, 4); +lean_dec(x_63); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_9); +lean_ctor_set(x_61, 4, x_64); +x_65 = l_Lean_Parser_ParserState_popSyntax(x_61); +x_66 = lean_box(0); +x_67 = l_Lean_Parser_ParserState_pushSyntax(x_65, x_66); +return x_67; } 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; -x_65 = lean_ctor_get(x_58, 0); -x_66 = lean_ctor_get(x_58, 1); -x_67 = lean_ctor_get(x_58, 2); -x_68 = lean_ctor_get(x_58, 3); +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; +x_68 = lean_ctor_get(x_61, 0); +x_69 = lean_ctor_get(x_61, 1); +x_70 = lean_ctor_get(x_61, 2); +x_71 = lean_ctor_get(x_61, 3); +x_72 = lean_ctor_get(x_61, 5); +lean_inc(x_72); +lean_inc(x_71); +lean_inc(x_70); +lean_inc(x_69); lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_58); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_9); -x_70 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_70, 0, x_65); -lean_ctor_set(x_70, 1, x_66); -lean_ctor_set(x_70, 2, x_67); -lean_ctor_set(x_70, 3, x_68); -lean_ctor_set(x_70, 4, x_69); -x_71 = l_Lean_Parser_ParserState_popSyntax(x_70); -x_72 = lean_box(0); -x_73 = l_Lean_Parser_ParserState_pushSyntax(x_71, x_72); -return x_73; +lean_dec(x_61); +x_73 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_73, 0, x_9); +x_74 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_74, 0, x_68); +lean_ctor_set(x_74, 1, x_69); +lean_ctor_set(x_74, 2, x_70); +lean_ctor_set(x_74, 3, x_71); +lean_ctor_set(x_74, 4, x_73); +lean_ctor_set(x_74, 5, x_72); +x_75 = l_Lean_Parser_ParserState_popSyntax(x_74); +x_76 = lean_box(0); +x_77 = l_Lean_Parser_ParserState_pushSyntax(x_75, x_76); +return x_77; } } } @@ -3733,6 +3816,139 @@ x_7 = l_Lean_Parser_ParserState_mkUnexpectedError(x_4, x_2, x_5, x_6); return x_7; } } +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1(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; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_6 = lean_ctor_get(x_1, 2); +x_7 = l_Lean_FileMap_toPosition(x_6, x_2); +x_8 = lean_ctor_get(x_1, 1); +x_9 = l_Lean_Parser_Error_toString(x_3); +x_10 = lean_box(0); +x_11 = l_Lean_mkErrorStringWithPos(x_8, x_7, x_9, x_10); +lean_dec(x_9); +x_12 = lean_string_append(x_4, x_11); +lean_dec(x_11); +x_13 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("\n", 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = lean_usize_dec_lt(x_4, x_3); +if (x_6 == 0) +{ +return x_5; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_7 = lean_array_uget(x_2, x_4); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 0); +lean_inc(x_9); +lean_dec(x_7); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_Parser_instInhabitedInputContext___closed__2; +x_12 = lean_string_dec_eq(x_5, x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; +x_13 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1; +x_14 = lean_string_append(x_5, x_13); +x_15 = lean_box(0); +x_16 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1(x_1, x_9, x_10, x_14, x_15); +lean_dec(x_9); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec(x_16); +x_18 = 1; +x_19 = lean_usize_add(x_4, x_18); +x_4 = x_19; +x_5 = x_17; +goto _start; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; +x_21 = lean_box(0); +x_22 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1(x_1, x_9, x_10, x_5, x_21); +lean_dec(x_9); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec(x_22); +x_24 = 1; +x_25 = lean_usize_add(x_4, x_24); +x_4 = x_25; +x_5 = x_23; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_toErrorMsg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; +x_3 = l_Lean_Parser_ParserState_allErrors(x_2); +x_4 = lean_array_get_size(x_3); +x_5 = lean_usize_of_nat(x_4); +lean_dec(x_4); +x_6 = 0; +x_7 = l_Lean_Parser_instInhabitedInputContext___closed__2; +x_8 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1(x_1, x_3, x_5, x_6, x_7); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1___boxed(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; +x_6 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_8 = l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1(x_1, x_2, x_6, x_7, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_ParserState_toErrorMsg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Parser_ParserState_toErrorMsg(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l_Lean_Parser_instInhabitedParserFn___rarg(lean_object* x_1) { _start: { @@ -4651,197 +4867,211 @@ return x_9; } else { -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_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; x_16 = lean_ctor_get(x_9, 0); x_17 = lean_ctor_get(x_9, 1); x_18 = lean_ctor_get(x_9, 2); x_19 = lean_ctor_get(x_9, 3); x_20 = lean_ctor_get(x_9, 4); +x_21 = lean_ctor_get(x_9, 5); +lean_inc(x_21); lean_inc(x_20); lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_dec(x_9); -x_21 = lean_ctor_get(x_16, 0); -lean_inc(x_21); +x_22 = lean_ctor_get(x_16, 0); +lean_inc(x_22); if (lean_is_exclusive(x_16)) { lean_ctor_release(x_16, 0); lean_ctor_release(x_16, 1); - x_22 = x_16; + x_23 = x_16; } else { lean_dec_ref(x_16); - x_22 = lean_box(0); + x_23 = lean_box(0); } -if (lean_is_scalar(x_22)) { - x_23 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_23)) { + x_24 = lean_alloc_ctor(0, 2, 0); } else { - x_23 = x_22; + x_24 = x_23; } -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_8); -x_24 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_17); -lean_ctor_set(x_24, 2, x_18); -lean_ctor_set(x_24, 3, x_19); -lean_ctor_set(x_24, 4, x_20); -return x_24; +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_8); +x_25 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_17); +lean_ctor_set(x_25, 2, x_18); +lean_ctor_set(x_25, 3, x_19); +lean_ctor_set(x_25, 4, x_20); +lean_ctor_set(x_25, 5, x_21); +return x_25; } } 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_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_25 = lean_ctor_get(x_6, 0); -x_26 = lean_ctor_get(x_6, 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; 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_26 = lean_ctor_get(x_6, 0); +x_27 = lean_ctor_get(x_6, 1); +lean_inc(x_27); lean_inc(x_26); -lean_inc(x_25); lean_dec(x_6); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_1); -lean_ctor_set(x_4, 0, x_27); -x_28 = lean_apply_2(x_2, x_3, x_4); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_1); +lean_ctor_set(x_4, 0, x_28); +x_29 = lean_apply_2(x_2, x_3, x_4); +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 2); +x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); -x_32 = lean_ctor_get(x_28, 3); +x_32 = lean_ctor_get(x_29, 2); lean_inc(x_32); -x_33 = lean_ctor_get(x_28, 4); +x_33 = lean_ctor_get(x_29, 3); lean_inc(x_33); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - lean_ctor_release(x_28, 1); - lean_ctor_release(x_28, 2); - lean_ctor_release(x_28, 3); - lean_ctor_release(x_28, 4); - x_34 = x_28; -} else { - lean_dec_ref(x_28); - x_34 = lean_box(0); -} -x_35 = lean_ctor_get(x_29, 0); +x_34 = lean_ctor_get(x_29, 4); +lean_inc(x_34); +x_35 = lean_ctor_get(x_29, 5); lean_inc(x_35); if (lean_is_exclusive(x_29)) { lean_ctor_release(x_29, 0); lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + lean_ctor_release(x_29, 3); + lean_ctor_release(x_29, 4); + lean_ctor_release(x_29, 5); x_36 = x_29; } else { lean_dec_ref(x_29); x_36 = lean_box(0); } +x_37 = lean_ctor_get(x_30, 0); +lean_inc(x_37); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_38 = x_30; +} else { + lean_dec_ref(x_30); + x_38 = lean_box(0); +} +if (lean_is_scalar(x_38)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_38; +} +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_27); if (lean_is_scalar(x_36)) { - x_37 = lean_alloc_ctor(0, 2, 0); + x_40 = lean_alloc_ctor(0, 6, 0); } else { - x_37 = x_36; + x_40 = x_36; } -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_26); -if (lean_is_scalar(x_34)) { - x_38 = lean_alloc_ctor(0, 5, 0); -} else { - x_38 = x_34; -} -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_30); -lean_ctor_set(x_38, 2, x_31); -lean_ctor_set(x_38, 3, x_32); -lean_ctor_set(x_38, 4, x_33); -return x_38; +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_31); +lean_ctor_set(x_40, 2, x_32); +lean_ctor_set(x_40, 3, x_33); +lean_ctor_set(x_40, 4, x_34); +lean_ctor_set(x_40, 5, x_35); +return x_40; } } 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; 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; -x_39 = lean_ctor_get(x_4, 0); -x_40 = lean_ctor_get(x_4, 1); -x_41 = lean_ctor_get(x_4, 2); -x_42 = lean_ctor_get(x_4, 3); -x_43 = lean_ctor_get(x_4, 4); +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; +x_41 = lean_ctor_get(x_4, 0); +x_42 = lean_ctor_get(x_4, 1); +x_43 = lean_ctor_get(x_4, 2); +x_44 = lean_ctor_get(x_4, 3); +x_45 = lean_ctor_get(x_4, 4); +x_46 = lean_ctor_get(x_4, 5); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); lean_dec(x_4); -x_44 = lean_ctor_get(x_39, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_39, 1); -lean_inc(x_45); -if (lean_is_exclusive(x_39)) { - lean_ctor_release(x_39, 0); - lean_ctor_release(x_39, 1); - x_46 = x_39; +x_47 = lean_ctor_get(x_41, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + x_49 = x_41; } else { - lean_dec_ref(x_39); - x_46 = lean_box(0); + lean_dec_ref(x_41); + x_49 = lean_box(0); } -if (lean_is_scalar(x_46)) { - x_47 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_49)) { + x_50 = lean_alloc_ctor(0, 2, 0); } else { - x_47 = x_46; + x_50 = x_49; } -lean_ctor_set(x_47, 0, x_44); -lean_ctor_set(x_47, 1, x_1); -x_48 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_40); -lean_ctor_set(x_48, 2, x_41); -lean_ctor_set(x_48, 3, x_42); -lean_ctor_set(x_48, 4, x_43); -x_49 = lean_apply_2(x_2, x_3, x_48); -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -x_52 = lean_ctor_get(x_49, 2); -lean_inc(x_52); -x_53 = lean_ctor_get(x_49, 3); +lean_ctor_set(x_50, 0, x_47); +lean_ctor_set(x_50, 1, x_1); +x_51 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_42); +lean_ctor_set(x_51, 2, x_43); +lean_ctor_set(x_51, 3, x_44); +lean_ctor_set(x_51, 4, x_45); +lean_ctor_set(x_51, 5, x_46); +x_52 = lean_apply_2(x_2, x_3, x_51); +x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); -x_54 = lean_ctor_get(x_49, 4); +x_54 = lean_ctor_get(x_52, 1); lean_inc(x_54); -if (lean_is_exclusive(x_49)) { - lean_ctor_release(x_49, 0); - lean_ctor_release(x_49, 1); - lean_ctor_release(x_49, 2); - lean_ctor_release(x_49, 3); - lean_ctor_release(x_49, 4); - x_55 = x_49; -} else { - lean_dec_ref(x_49); - x_55 = lean_box(0); -} -x_56 = lean_ctor_get(x_50, 0); +x_55 = lean_ctor_get(x_52, 2); +lean_inc(x_55); +x_56 = lean_ctor_get(x_52, 3); lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +x_57 = lean_ctor_get(x_52, 4); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 5); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + lean_ctor_release(x_52, 2); + lean_ctor_release(x_52, 3); + lean_ctor_release(x_52, 4); + lean_ctor_release(x_52, 5); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +x_60 = lean_ctor_get(x_53, 0); +lean_inc(x_60); +if (lean_is_exclusive(x_53)) { + lean_ctor_release(x_53, 0); + lean_ctor_release(x_53, 1); + x_61 = x_53; } else { - x_58 = x_57; + lean_dec_ref(x_53); + x_61 = lean_box(0); } -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_45); -if (lean_is_scalar(x_55)) { - x_59 = lean_alloc_ctor(0, 5, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(0, 2, 0); } else { - x_59 = x_55; + x_62 = x_61; } -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_51); -lean_ctor_set(x_59, 2, x_52); -lean_ctor_set(x_59, 3, x_53); -lean_ctor_set(x_59, 4, x_54); -return x_59; +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_48); +if (lean_is_scalar(x_59)) { + x_63 = lean_alloc_ctor(0, 6, 0); +} else { + x_63 = x_59; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_54); +lean_ctor_set(x_63, 2, x_55); +lean_ctor_set(x_63, 3, x_56); +lean_ctor_set(x_63, 4, x_57); +lean_ctor_set(x_63, 5, x_58); +return x_63; } } } @@ -4900,199 +5130,213 @@ return x_9; } else { -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_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; x_16 = lean_ctor_get(x_9, 3); x_17 = lean_ctor_get(x_9, 0); x_18 = lean_ctor_get(x_9, 1); x_19 = lean_ctor_get(x_9, 2); x_20 = lean_ctor_get(x_9, 4); +x_21 = lean_ctor_get(x_9, 5); +lean_inc(x_21); lean_inc(x_20); lean_inc(x_16); lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_dec(x_9); -x_21 = lean_ctor_get(x_16, 0); -lean_inc(x_21); +x_22 = lean_ctor_get(x_16, 0); +lean_inc(x_22); if (lean_is_exclusive(x_16)) { lean_ctor_release(x_16, 0); lean_ctor_release(x_16, 1); - x_22 = x_16; + x_23 = x_16; } else { lean_dec_ref(x_16); - x_22 = lean_box(0); + x_23 = lean_box(0); } -if (lean_is_scalar(x_22)) { - x_23 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_23)) { + x_24 = lean_alloc_ctor(0, 2, 0); } else { - x_23 = x_22; + x_24 = x_23; } -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_7); -x_24 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_24, 0, x_17); -lean_ctor_set(x_24, 1, x_18); -lean_ctor_set(x_24, 2, x_19); -lean_ctor_set(x_24, 3, x_23); -lean_ctor_set(x_24, 4, x_20); -return x_24; +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_7); +x_25 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_25, 0, x_17); +lean_ctor_set(x_25, 1, x_18); +lean_ctor_set(x_25, 2, x_19); +lean_ctor_set(x_25, 3, x_24); +lean_ctor_set(x_25, 4, x_20); +lean_ctor_set(x_25, 5, x_21); +return x_25; } } 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_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_25 = lean_ctor_get(x_5, 0); -x_26 = lean_ctor_get(x_5, 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; 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_26 = lean_ctor_get(x_5, 0); +x_27 = lean_ctor_get(x_5, 1); +lean_inc(x_27); lean_inc(x_26); -lean_inc(x_25); lean_dec(x_5); -x_27 = l_Lean_Parser_withResetCacheFn___lambda__1___closed__1; -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_25); -lean_ctor_set(x_28, 1, x_27); -lean_ctor_set(x_3, 3, x_28); -x_29 = lean_apply_2(x_1, x_2, x_3); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 0); +x_28 = l_Lean_Parser_withResetCacheFn___lambda__1___closed__1; +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_26); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_3, 3, x_29); +x_30 = lean_apply_2(x_1, x_2, x_3); +x_31 = lean_ctor_get(x_30, 3); lean_inc(x_31); -x_32 = lean_ctor_get(x_29, 1); +x_32 = lean_ctor_get(x_30, 0); lean_inc(x_32); -x_33 = lean_ctor_get(x_29, 2); +x_33 = lean_ctor_get(x_30, 1); lean_inc(x_33); -x_34 = lean_ctor_get(x_29, 4); +x_34 = lean_ctor_get(x_30, 2); lean_inc(x_34); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - lean_ctor_release(x_29, 1); - lean_ctor_release(x_29, 2); - lean_ctor_release(x_29, 3); - lean_ctor_release(x_29, 4); - x_35 = x_29; -} else { - lean_dec_ref(x_29); - x_35 = lean_box(0); -} -x_36 = lean_ctor_get(x_30, 0); +x_35 = lean_ctor_get(x_30, 4); +lean_inc(x_35); +x_36 = lean_ctor_get(x_30, 5); lean_inc(x_36); if (lean_is_exclusive(x_30)) { lean_ctor_release(x_30, 0); lean_ctor_release(x_30, 1); + lean_ctor_release(x_30, 2); + lean_ctor_release(x_30, 3); + lean_ctor_release(x_30, 4); + lean_ctor_release(x_30, 5); x_37 = x_30; } else { lean_dec_ref(x_30); x_37 = lean_box(0); } +x_38 = lean_ctor_get(x_31, 0); +lean_inc(x_38); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_39 = x_31; +} else { + lean_dec_ref(x_31); + x_39 = lean_box(0); +} +if (lean_is_scalar(x_39)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_39; +} +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_27); if (lean_is_scalar(x_37)) { - x_38 = lean_alloc_ctor(0, 2, 0); + x_41 = lean_alloc_ctor(0, 6, 0); } else { - x_38 = x_37; + x_41 = x_37; } -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_26); -if (lean_is_scalar(x_35)) { - x_39 = lean_alloc_ctor(0, 5, 0); -} else { - x_39 = x_35; -} -lean_ctor_set(x_39, 0, x_31); -lean_ctor_set(x_39, 1, x_32); -lean_ctor_set(x_39, 2, x_33); -lean_ctor_set(x_39, 3, x_38); -lean_ctor_set(x_39, 4, x_34); -return x_39; +lean_ctor_set(x_41, 0, x_32); +lean_ctor_set(x_41, 1, x_33); +lean_ctor_set(x_41, 2, x_34); +lean_ctor_set(x_41, 3, x_40); +lean_ctor_set(x_41, 4, x_35); +lean_ctor_set(x_41, 5, x_36); +return x_41; } } else { -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; -x_40 = lean_ctor_get(x_3, 3); -x_41 = lean_ctor_get(x_3, 0); -x_42 = lean_ctor_get(x_3, 1); -x_43 = lean_ctor_get(x_3, 2); -x_44 = lean_ctor_get(x_3, 4); -lean_inc(x_44); -lean_inc(x_40); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_3); -x_45 = lean_ctor_get(x_40, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_40, 1); +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_42 = lean_ctor_get(x_3, 3); +x_43 = lean_ctor_get(x_3, 0); +x_44 = lean_ctor_get(x_3, 1); +x_45 = lean_ctor_get(x_3, 2); +x_46 = lean_ctor_get(x_3, 4); +x_47 = lean_ctor_get(x_3, 5); +lean_inc(x_47); lean_inc(x_46); -if (lean_is_exclusive(x_40)) { - lean_ctor_release(x_40, 0); - lean_ctor_release(x_40, 1); - x_47 = x_40; +lean_inc(x_42); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_3); +x_48 = lean_ctor_get(x_42, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); +if (lean_is_exclusive(x_42)) { + lean_ctor_release(x_42, 0); + lean_ctor_release(x_42, 1); + x_50 = x_42; } else { - lean_dec_ref(x_40); - x_47 = lean_box(0); + lean_dec_ref(x_42); + x_50 = lean_box(0); } -x_48 = l_Lean_Parser_withResetCacheFn___lambda__1___closed__1; -if (lean_is_scalar(x_47)) { - x_49 = lean_alloc_ctor(0, 2, 0); +x_51 = l_Lean_Parser_withResetCacheFn___lambda__1___closed__1; +if (lean_is_scalar(x_50)) { + x_52 = lean_alloc_ctor(0, 2, 0); } else { - x_49 = x_47; + x_52 = x_50; } -lean_ctor_set(x_49, 0, x_45); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_50, 0, x_41); -lean_ctor_set(x_50, 1, x_42); -lean_ctor_set(x_50, 2, x_43); -lean_ctor_set(x_50, 3, x_49); -lean_ctor_set(x_50, 4, x_44); -x_51 = lean_apply_2(x_1, x_2, x_50); -x_52 = lean_ctor_get(x_51, 3); -lean_inc(x_52); -x_53 = lean_ctor_get(x_51, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_51, 1); -lean_inc(x_54); -x_55 = lean_ctor_get(x_51, 2); +lean_ctor_set(x_52, 0, x_48); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_53, 0, x_43); +lean_ctor_set(x_53, 1, x_44); +lean_ctor_set(x_53, 2, x_45); +lean_ctor_set(x_53, 3, x_52); +lean_ctor_set(x_53, 4, x_46); +lean_ctor_set(x_53, 5, x_47); +x_54 = lean_apply_2(x_1, x_2, x_53); +x_55 = lean_ctor_get(x_54, 3); lean_inc(x_55); -x_56 = lean_ctor_get(x_51, 4); +x_56 = lean_ctor_get(x_54, 0); lean_inc(x_56); -if (lean_is_exclusive(x_51)) { - lean_ctor_release(x_51, 0); - lean_ctor_release(x_51, 1); - lean_ctor_release(x_51, 2); - lean_ctor_release(x_51, 3); - lean_ctor_release(x_51, 4); - x_57 = x_51; -} else { - lean_dec_ref(x_51); - x_57 = lean_box(0); -} -x_58 = lean_ctor_get(x_52, 0); +x_57 = lean_ctor_get(x_54, 1); +lean_inc(x_57); +x_58 = lean_ctor_get(x_54, 2); lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +x_59 = lean_ctor_get(x_54, 4); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 5); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + lean_ctor_release(x_54, 2); + lean_ctor_release(x_54, 3); + lean_ctor_release(x_54, 4); + lean_ctor_release(x_54, 5); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(0, 2, 0); +x_62 = lean_ctor_get(x_55, 0); +lean_inc(x_62); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_63 = x_55; } else { - x_60 = x_59; + lean_dec_ref(x_55); + x_63 = lean_box(0); } -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_46); -if (lean_is_scalar(x_57)) { - x_61 = lean_alloc_ctor(0, 5, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(0, 2, 0); } else { - x_61 = x_57; + x_64 = x_63; } -lean_ctor_set(x_61, 0, x_53); -lean_ctor_set(x_61, 1, x_54); -lean_ctor_set(x_61, 2, x_55); -lean_ctor_set(x_61, 3, x_60); -lean_ctor_set(x_61, 4, x_56); -return x_61; +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_49); +if (lean_is_scalar(x_61)) { + x_65 = lean_alloc_ctor(0, 6, 0); +} else { + x_65 = x_61; +} +lean_ctor_set(x_65, 0, x_56); +lean_ctor_set(x_65, 1, x_57); +lean_ctor_set(x_65, 2, x_58); +lean_ctor_set(x_65, 3, x_64); +lean_ctor_set(x_65, 4, x_59); +lean_ctor_set(x_65, 5, x_60); +return x_65; } } } @@ -5803,55 +6047,58 @@ return x_1; } 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_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +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; x_25 = lean_ctor_get(x_1, 3); x_26 = lean_ctor_get(x_1, 0); x_27 = lean_ctor_get(x_1, 1); x_28 = lean_ctor_get(x_1, 2); x_29 = lean_ctor_get(x_1, 4); +x_30 = lean_ctor_get(x_1, 5); +lean_inc(x_30); lean_inc(x_29); lean_inc(x_25); lean_inc(x_28); lean_inc(x_27); lean_inc(x_26); lean_dec(x_1); -x_30 = lean_ctor_get(x_25, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_25, 1); +x_31 = lean_ctor_get(x_25, 0); lean_inc(x_31); +x_32 = lean_ctor_get(x_25, 1); +lean_inc(x_32); if (lean_is_exclusive(x_25)) { lean_ctor_release(x_25, 0); lean_ctor_release(x_25, 1); - x_32 = x_25; + x_33 = x_25; } else { lean_dec_ref(x_25); - x_32 = lean_box(0); + x_33 = lean_box(0); } lean_inc(x_26); -x_33 = l_Lean_Parser_SyntaxStack_back(x_26); +x_34 = l_Lean_Parser_SyntaxStack_back(x_26); lean_inc(x_29); lean_inc(x_28); lean_inc(x_27); -x_34 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_27); -lean_ctor_set(x_34, 2, x_28); -lean_ctor_set(x_34, 3, x_29); -x_35 = l_Lean_HashMap_insert___at_Lean_Parser_withCacheFn___spec__1(x_31, x_2, x_34); -if (lean_is_scalar(x_32)) { - x_36 = lean_alloc_ctor(0, 2, 0); +x_35 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_27); +lean_ctor_set(x_35, 2, x_28); +lean_ctor_set(x_35, 3, x_29); +x_36 = l_Lean_HashMap_insert___at_Lean_Parser_withCacheFn___spec__1(x_32, x_2, x_35); +if (lean_is_scalar(x_33)) { + x_37 = lean_alloc_ctor(0, 2, 0); } else { - x_36 = x_32; + x_37 = x_33; } -lean_ctor_set(x_36, 0, x_30); -lean_ctor_set(x_36, 1, x_35); -x_37 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_37, 0, x_26); -lean_ctor_set(x_37, 1, x_27); -lean_ctor_set(x_37, 2, x_28); -lean_ctor_set(x_37, 3, x_36); -lean_ctor_set(x_37, 4, x_29); -return x_37; +lean_ctor_set(x_37, 0, x_31); +lean_ctor_set(x_37, 1, x_36); +x_38 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_38, 0, x_26); +lean_ctor_set(x_38, 1, x_27); +lean_ctor_set(x_38, 2, x_28); +lean_ctor_set(x_38, 3, x_37); +lean_ctor_set(x_38, 4, x_29); +lean_ctor_set(x_38, 5, x_30); +return x_38; } } } @@ -5882,7 +6129,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_Parser_withCacheFn___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) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; 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; uint8_t x_20; +lean_object* x_7; lean_object* x_8; lean_object* x_9; 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; uint8_t x_21; x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); x_8 = lean_ctor_get(x_7, 0); @@ -5891,67 +6138,70 @@ x_9 = lean_array_get_size(x_8); lean_dec(x_8); x_10 = lean_ctor_get(x_1, 3); lean_inc(x_10); -lean_dec(x_1); x_11 = lean_box(0); -x_12 = lean_unsigned_to_nat(0u); -x_13 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_13, 0, x_7); -lean_ctor_set(x_13, 1, x_12); -lean_ctor_set(x_13, 2, x_2); -lean_ctor_set(x_13, 3, x_10); -lean_ctor_set(x_13, 4, x_11); +x_12 = lean_ctor_get(x_1, 5); +lean_inc(x_12); +lean_dec(x_1); +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_13); +lean_ctor_set(x_14, 2, x_2); +lean_ctor_set(x_14, 3, x_10); +lean_ctor_set(x_14, 4, x_11); +lean_ctor_set(x_14, 5, x_12); lean_inc(x_9); -x_14 = l___private_Lean_Parser_Types_0__Lean_Parser_withStackDrop(x_9, x_3, x_4, x_13); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); +x_15 = l___private_Lean_Parser_Types_0__Lean_Parser_withStackDrop(x_9, x_3, x_4, x_14); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); -lean_dec(x_15); -x_17 = lean_array_get_size(x_16); -x_18 = lean_unsigned_to_nat(1u); -x_19 = lean_nat_add(x_9, x_18); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec(x_16); +x_18 = lean_array_get_size(x_17); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_9, x_19); lean_dec(x_9); -x_20 = lean_nat_dec_eq(x_17, x_19); -lean_dec(x_19); -lean_dec(x_17); -if (x_20 == 0) +x_21 = lean_nat_dec_eq(x_18, x_20); +lean_dec(x_20); +lean_dec(x_18); +if (x_21 == 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; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_21 = lean_array_to_list(lean_box(0), x_16); -x_22 = l_List_toString___at_Lean_Parser_withCacheFn___spec__8(x_21); -x_23 = l_Lean_Parser_withCacheFn___lambda__2___closed__1; -x_24 = lean_string_append(x_23, x_22); -lean_dec(x_22); -x_25 = l_Lean_Parser_withCacheFn___lambda__2___closed__2; -x_26 = lean_string_append(x_25, x_24); -lean_dec(x_24); -x_27 = l_Lean_Parser_instInhabitedInputContext___closed__2; -x_28 = lean_string_append(x_26, x_27); -x_29 = l_Lean_Parser_SyntaxStack_back___closed__1; -x_30 = l_Lean_Parser_withCacheFn___lambda__2___closed__3; -x_31 = lean_unsigned_to_nat(423u); -x_32 = lean_unsigned_to_nat(4u); -x_33 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_29, x_30, x_31, x_32, x_28); -lean_dec(x_28); -x_34 = l_panic___at_Lean_Parser_withCacheFn___spec__10(x_33); -x_35 = l_Lean_Parser_withCacheFn___lambda__1(x_14, x_5, x_34); -lean_dec(x_34); -return x_35; +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; +x_22 = lean_array_to_list(lean_box(0), x_17); +x_23 = l_List_toString___at_Lean_Parser_withCacheFn___spec__8(x_22); +x_24 = l_Lean_Parser_withCacheFn___lambda__2___closed__1; +x_25 = lean_string_append(x_24, x_23); +lean_dec(x_23); +x_26 = l_Lean_Parser_withCacheFn___lambda__2___closed__2; +x_27 = lean_string_append(x_26, x_25); +lean_dec(x_25); +x_28 = l_Lean_Parser_instInhabitedInputContext___closed__2; +x_29 = lean_string_append(x_27, x_28); +x_30 = l_Lean_Parser_SyntaxStack_back___closed__1; +x_31 = l_Lean_Parser_withCacheFn___lambda__2___closed__3; +x_32 = lean_unsigned_to_nat(428u); +x_33 = lean_unsigned_to_nat(4u); +x_34 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_30, x_31, x_32, x_33, x_29); +lean_dec(x_29); +x_35 = l_panic___at_Lean_Parser_withCacheFn___spec__10(x_34); +x_36 = l_Lean_Parser_withCacheFn___lambda__1(x_15, x_5, x_35); +lean_dec(x_35); +return x_36; } else { -lean_object* x_36; lean_object* x_37; -lean_dec(x_16); -x_36 = lean_box(0); -x_37 = l_Lean_Parser_withCacheFn___lambda__1(x_14, x_5, x_36); -return x_37; +lean_object* x_37; lean_object* x_38; +lean_dec(x_17); +x_37 = lean_box(0); +x_38 = l_Lean_Parser_withCacheFn___lambda__1(x_15, x_5, x_37); +return x_38; } } } LEAN_EXPORT lean_object* l_Lean_Parser_withCacheFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -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_object* x_11; +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_object* x_11; lean_object* x_12; x_5 = lean_ctor_get(x_3, 2); lean_inc(x_5); x_6 = lean_ctor_get(x_4, 0); @@ -5960,88 +6210,94 @@ x_7 = lean_ctor_get(x_4, 2); lean_inc(x_7); x_8 = lean_ctor_get(x_4, 3); lean_inc(x_8); -lean_inc(x_7); -x_9 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_9, 0, x_5); -lean_ctor_set(x_9, 1, x_1); -lean_ctor_set(x_9, 2, x_7); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); +x_9 = lean_ctor_get(x_4, 5); lean_inc(x_9); -x_11 = l_Lean_HashMapImp_find_x3f___at_Lean_Parser_withCacheFn___spec__11(x_10, x_9); -if (lean_obj_tag(x_11) == 0) +lean_inc(x_7); +x_10 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_1); +lean_ctor_set(x_10, 2, x_7); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); +lean_inc(x_10); +x_12 = l_Lean_HashMapImp_find_x3f___at_Lean_Parser_withCacheFn___spec__11(x_11, x_10); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_12; lean_object* x_13; +lean_object* x_13; lean_object* x_14; +lean_dec(x_9); lean_dec(x_8); lean_dec(x_6); -x_12 = lean_box(0); -x_13 = l_Lean_Parser_withCacheFn___lambda__2(x_4, x_7, x_2, x_3, x_9, x_12); -return x_13; +x_13 = lean_box(0); +x_14 = l_Lean_Parser_withCacheFn___lambda__2(x_4, x_7, x_2, x_3, x_10, x_13); +return x_14; } else { -uint8_t x_14; -lean_dec(x_9); +uint8_t x_15; +lean_dec(x_10); lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); -x_14 = !lean_is_exclusive(x_4); -if (x_14 == 0) +x_15 = !lean_is_exclusive(x_4); +if (x_15 == 0) { -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; -x_15 = lean_ctor_get(x_4, 4); -lean_dec(x_15); -x_16 = lean_ctor_get(x_4, 3); +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; +x_16 = lean_ctor_get(x_4, 5); lean_dec(x_16); -x_17 = lean_ctor_get(x_4, 2); +x_17 = lean_ctor_get(x_4, 4); lean_dec(x_17); -x_18 = lean_ctor_get(x_4, 1); +x_18 = lean_ctor_get(x_4, 3); lean_dec(x_18); -x_19 = lean_ctor_get(x_4, 0); +x_19 = lean_ctor_get(x_4, 2); lean_dec(x_19); -x_20 = lean_ctor_get(x_11, 0); -lean_inc(x_20); -lean_dec(x_11); -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -x_23 = lean_ctor_get(x_20, 2); -lean_inc(x_23); -x_24 = lean_ctor_get(x_20, 3); -lean_inc(x_24); +x_20 = lean_ctor_get(x_4, 1); lean_dec(x_20); -x_25 = l_Lean_Parser_SyntaxStack_push(x_6, x_21); -lean_ctor_set(x_4, 4, x_24); -lean_ctor_set(x_4, 2, x_23); -lean_ctor_set(x_4, 1, x_22); -lean_ctor_set(x_4, 0, x_25); +x_21 = lean_ctor_get(x_4, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_12, 0); +lean_inc(x_22); +lean_dec(x_12); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_22, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_22, 3); +lean_inc(x_26); +lean_dec(x_22); +x_27 = l_Lean_Parser_SyntaxStack_push(x_6, x_23); +lean_ctor_set(x_4, 4, x_26); +lean_ctor_set(x_4, 2, x_25); +lean_ctor_set(x_4, 1, x_24); +lean_ctor_set(x_4, 0, x_27); return x_4; } 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_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_dec(x_4); -x_26 = lean_ctor_get(x_11, 0); -lean_inc(x_26); -lean_dec(x_11); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); +x_28 = lean_ctor_get(x_12, 0); lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 2); +lean_dec(x_12); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -x_30 = lean_ctor_get(x_26, 3); +x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); -lean_dec(x_26); -x_31 = l_Lean_Parser_SyntaxStack_push(x_6, x_27); -x_32 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_28); -lean_ctor_set(x_32, 2, x_29); -lean_ctor_set(x_32, 3, x_8); -lean_ctor_set(x_32, 4, x_30); -return x_32; +x_31 = lean_ctor_get(x_28, 2); +lean_inc(x_31); +x_32 = lean_ctor_get(x_28, 3); +lean_inc(x_32); +lean_dec(x_28); +x_33 = l_Lean_Parser_SyntaxStack_push(x_6, x_29); +x_34 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_30); +lean_ctor_set(x_34, 2, x_31); +lean_ctor_set(x_34, 3, x_8); +lean_ctor_set(x_34, 4, x_32); +lean_ctor_set(x_34, 5, x_9); +return x_34; } } } @@ -6280,6 +6536,10 @@ l_Lean_Parser_ParserState_pos___default = _init_l_Lean_Parser_ParserState_pos___ lean_mark_persistent(l_Lean_Parser_ParserState_pos___default); l_Lean_Parser_ParserState_errorMsg___default = _init_l_Lean_Parser_ParserState_errorMsg___default(); lean_mark_persistent(l_Lean_Parser_ParserState_errorMsg___default); +l_Lean_Parser_ParserState_recoveredErrors___default = _init_l_Lean_Parser_ParserState_recoveredErrors___default(); +lean_mark_persistent(l_Lean_Parser_ParserState_recoveredErrors___default); +l_Lean_Parser_ParserState_allErrors___closed__1 = _init_l_Lean_Parser_ParserState_allErrors___closed__1(); +lean_mark_persistent(l_Lean_Parser_ParserState_allErrors___closed__1); l_Lean_Parser_ParserState_mkEOIError___closed__1 = _init_l_Lean_Parser_ParserState_mkEOIError___closed__1(); lean_mark_persistent(l_Lean_Parser_ParserState_mkEOIError___closed__1); l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__1 = _init_l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__1(); @@ -6290,6 +6550,8 @@ l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__3 = _init_l_Lean_Par lean_mark_persistent(l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__3); l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__4 = _init_l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__4(); lean_mark_persistent(l_Lean_Parser_ParserState_mkUnexpectedTokenErrors___closed__4); +l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Parser_ParserState_toErrorMsg___spec__1___closed__1); l_Lean_Parser_instInhabitedFirstTokens = _init_l_Lean_Parser_instInhabitedFirstTokens(); lean_mark_persistent(l_Lean_Parser_instInhabitedFirstTokens); l_List_toString___at_Lean_Parser_FirstTokens_toStr___spec__1___closed__1 = _init_l_List_toString___at_Lean_Parser_FirstTokens_toStr___spec__1___closed__1(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c index acccfbda73..3d14f77e63 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c @@ -37,7 +37,6 @@ extern lean_object* l_Std_instInhabitedFormat; static lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___lambda__4___closed__5; static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Formatter_0__Lean_PrettyPrinter_Formatter_SourceInfo_getExprPos_x3f(lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2; static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkWsBefore_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -48,7 +47,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_State_leadWord___default static lean_object* l_Lean_PrettyPrinter_formatCommand___closed__2; LEAN_EXPORT lean_object* l_List_forM___at_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__13; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_parseToken(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -60,13 +59,11 @@ static lean_object* l_Lean_PrettyPrinter_FormatterM_orElse___rarg___closed__1; static lean_object* l_panic___at_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___spec__1___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___spec__2___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_Formatter_fill(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__10; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_getStackSize___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__3; lean_object* l_Lean_indentD(lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_parseToken___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); @@ -96,6 +93,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_runForNodeKind___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___spec__1(lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkColGe_formatter___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_format___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -129,15 +127,17 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatte LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_format(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__4; lean_object* l_Lean_Elab_addConstInfo___at_Lean_registerInitAttrUnsafe___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4813_(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_error_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_FormatterM_orElse(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_parseToken___closed__2; LEAN_EXPORT lean_object* l_List_forM___at_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter___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_PrettyPrinter_Formatter_checkStackTop_formatter___rarg(lean_object*); LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Formatter_State_isUngrouped___default; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_State_stack___default; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_PrettyPrinter_Formatter_categoryFormatterCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkLhsPrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_fieldIdx_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -159,6 +159,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__1___ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_format___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_lookahead_formatter___rarg(lean_object*); lean_object* l_Lean_Parser_ParserFn_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -168,7 +169,6 @@ uint8_t l_Std_Format_isNil(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withMaybeTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_format___lambda__4___closed__4; extern lean_object* l_instInhabitedNat; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_skip_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instInhabitedPUnit; LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_format___lambda__2(uint32_t); @@ -178,16 +178,16 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_getStack___rarg(lean_obj LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___boxed(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_Formatter_pushToken___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_format___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkLinebreakBefore_formatter___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_FormatterM_orElse___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withFn_formatter(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_recover_x27_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_format___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkTailWs_formatter(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -214,10 +214,10 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPri static lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter___rarg(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_nameLitNoAntiquot_formatter___closed__1; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1; static lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_formatCommand(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_getStack___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Formatter_State_mustBeGrouped___default; static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__2; @@ -235,6 +235,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_concat___lambda__1(lean_ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5; lean_object* l_List_range(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter___closed__2; static lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__4___closed__1; @@ -246,6 +247,7 @@ static lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___close LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserState(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Formatter_0__Lean_PrettyPrinter_Formatter_push(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375_(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__5; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -272,6 +274,7 @@ lean_object* l_Lean_FileMap_ofString(lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushWhitespace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9; lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_scientificLitNoAntiquot_formatter___closed__1; static lean_object* l_Lean_PrettyPrinter_Formatter_formatterForKindUnsafe___closed__4; @@ -280,7 +283,6 @@ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_instInhabited___rarg(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__1; static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__3; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_throwBacktrack___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___rarg(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter___closed__2; @@ -300,18 +302,19 @@ uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_formatTerm___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_antiquot_formatter(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_formatTerm___closed__1; static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__9; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11; uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_rawCh_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__7; static lean_object* l_Lean_PrettyPrinter_format___closed__2; -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891_(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter___closed__1; uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___closed__2; @@ -319,6 +322,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Forma static lean_object* l_Lean_PrettyPrinter_Formatter_concat___closed__1; LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___spec__1___closed__3; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6; static lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_identEq_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___boxed(lean_object*); @@ -327,12 +331,10 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___rar static lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__2___closed__3; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_pp_oneline; static lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___closed__1; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3; static lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__5; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5; uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12; extern lean_object* l_Lean_inheritedTraceOptions; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -353,7 +355,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___box LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_combinatorFormatterAttribute; static lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___closed__5; static lean_object* l_Lean_PrettyPrinter_Formatter_formatterForKindUnsafe___closed__3; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3; uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_registerCombinatorAttribute(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter___closed__4; @@ -379,8 +380,6 @@ static lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4797_(lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_fold(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_errorAtSavedPos_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_setStack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -403,12 +402,11 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_eoi_formatter___boxed(le static lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__2___closed__1; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter___closed__2; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2; lean_object* l_Array_shrink___rarg(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___closed__2; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_format___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -425,6 +423,7 @@ lean_object* l_Std_Format_getIndent(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__2(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__4; extern lean_object* l_Lean_PrettyPrinter_backtrackExceptionId; +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907_(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_skip_formatter___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_errorAtSavedPos_formatter(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -456,11 +455,13 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withMaybeTag___boxed(lea LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_format___lambda__4___closed__5; static lean_object* l_Lean_PrettyPrinter_format___lambda__4___closed__7; +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_recover_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_getStackSize(lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_many1NoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_Traverser_up(lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10; static lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___closed__1; lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__2; @@ -479,6 +480,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_pushAlign___boxed(lean_o LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_hygieneInfoNoAntiquot_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_registerAlias___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_instCoeForAllFormatterFormatterAliasValue(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; @@ -489,13 +491,13 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatt lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_checkLinebreakBefore_formatter(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359_(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at_Lean_PrettyPrinter_Formatter_categoryFormatterCore___spec__1___closed__1; static lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1(lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__4___boxed(lean_object*); static lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_withFn_formatter___boxed(lean_object*); @@ -4223,6 +4225,22 @@ return x_57; } } } +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_recover_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_recover_x27_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_mkAntiquot_formatter_x27___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: { @@ -7785,7 +7803,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_Formatter_symbolNoAntiquot_formatter___closed__5; x_2 = l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__6; -x_3 = lean_unsigned_to_nat(388u); +x_3 = lean_unsigned_to_nat(394u); x_4 = lean_unsigned_to_nat(42u); x_5 = l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__7; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -10241,7 +10259,7 @@ x_10 = l_Lean_PrettyPrinter_Formatter_ite___rarg(x_9, x_2, x_3, x_4, x_5, x_6, x return x_10; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4797_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4813_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -10311,7 +10329,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1() { _start: { lean_object* x_1; @@ -10319,7 +10337,7 @@ x_1 = lean_mk_string_from_bytes("pp", 2); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2() { _start: { lean_object* x_1; @@ -10327,17 +10345,17 @@ x_1 = lean_mk_string_from_bytes("oneline", 7); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4() { _start: { lean_object* x_1; @@ -10345,13 +10363,13 @@ x_1 = lean_mk_string_from_bytes("(pretty printer) elide all but first line of pr return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 0; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1; -x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1; +x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -10360,25 +10378,25 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6() { _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_PrettyPrinter_mkFormatterAttribute___closed__5; x_2 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; -x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1; -x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2; +x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1; +x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907_(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_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3; -x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5; -x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3; +x_3 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5; +x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6; x_5 = l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_6____spec__1(x_2, x_3, x_4, x_1); return x_5; } @@ -11187,7 +11205,7 @@ x_6 = l_Lean_PrettyPrinter_formatCategory(x_5, x_1, x_2, x_3, x_4); return x_6; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11197,17 +11215,17 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1; x_2 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3() { _start: { lean_object* x_1; @@ -11215,17 +11233,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5() { _start: { lean_object* x_1; @@ -11233,47 +11251,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6; x_2 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7; x_2 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8; x_2 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10() { _start: { lean_object* x_1; @@ -11281,33 +11299,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11; -x_2 = lean_unsigned_to_nat(5359u); +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11; +x_2 = lean_unsigned_to_nat(5375u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Formatter_categoryFormatterCore___closed__2; x_3 = 0; -x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12; +x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -11638,26 +11656,26 @@ l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Formatter_interpolatedStr_form lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___spec__2___closed__2); l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1 = _init_l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1); -if (builtin) {res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4797_(lean_io_mk_world()); +if (builtin) {res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4813_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_PrettyPrinter_Formatter_formatterAliasesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_formatterAliasesRef); lean_dec_ref(res); }l_Lean_PrettyPrinter_Formatter_registerAlias___closed__1 = _init_l_Lean_PrettyPrinter_Formatter_registerAlias___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_registerAlias___closed__1); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__1); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__2); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__3); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__4); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__5); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891____closed__6); -if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4891_(lean_io_mk_world()); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__1); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__2); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__3); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__4); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__5); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907____closed__6); +if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_4907_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_PrettyPrinter_pp_oneline = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_PrettyPrinter_pp_oneline); @@ -11692,31 +11710,31 @@ l_Lean_PrettyPrinter_formatCommand___closed__1 = _init_l_Lean_PrettyPrinter_form lean_mark_persistent(l_Lean_PrettyPrinter_formatCommand___closed__1); l_Lean_PrettyPrinter_formatCommand___closed__2 = _init_l_Lean_PrettyPrinter_formatCommand___closed__2(); lean_mark_persistent(l_Lean_PrettyPrinter_formatCommand___closed__2); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__1); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__2); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__3); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__4); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__5); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__6); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__7); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__8); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__9); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__10); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__11); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359____closed__12); -if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5359_(lean_io_mk_world()); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__1); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__2); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__3); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__4); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__5); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__6); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__7); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__8); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__9); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__10); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__11); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375____closed__12); +if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_5375_(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/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 80dffa57f8..548aa5fbee 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -15,6 +15,7 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_fieldIdx_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__4___closed__4; +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__5; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -32,7 +33,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawStx_parenthesizer LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_categoryParenthesizerAttribute; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_trailCat___default; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -48,15 +48,17 @@ static lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___clos LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkStackTop_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__12; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer(lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_parenthesizeTerm(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer_wrapParens___closed__2; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_skip_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2; lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__5___closed__1; lean_object* l_Lean_indentD(lean_object*); @@ -75,7 +77,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSp uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___rarg(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10; +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4278_(lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__4; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; @@ -88,6 +90,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_setCur___at_Lean_PrettyPri LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawCh_parenthesizer___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584_(lean_object*); LEAN_EXPORT lean_object* l_List_forM___at_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer___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_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1Unbox_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -128,6 +131,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute__ LEAN_EXPORT lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkKind___closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawCh_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4; LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addConstInfo___at_Lean_registerInitAttrUnsafe___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1(lean_object*); @@ -176,7 +180,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthes static lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkLinebreakBefore_parenthesizer___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4262_(lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer___closed__1; extern lean_object* l_instInhabitedNat; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute(lean_object*); @@ -195,7 +198,7 @@ uint8_t l_Lean_Syntax_isAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568_(lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_instOrElseParenthesizerM(lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___closed__1; @@ -227,7 +230,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_term_pa LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkWsBefore_parenthesizer___rarg(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_range(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -241,6 +243,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer_w LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM; lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_optionalNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5; static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_error_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_setCur___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -270,6 +273,7 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_x27_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_parenthesize___closed__1; lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__10___closed__20; @@ -277,6 +281,7 @@ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9; lean_object* l_Lean_Syntax_Traverser_right(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,7 +292,6 @@ static lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthes LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__8(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_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__4___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkKind___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColEq_parenthesizer___rarg(lean_object*); @@ -297,7 +301,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitToken(lean_obje static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__10___closed__16; static lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__1; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___lambda__1___closed__1; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_addDecl___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdentNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -334,6 +337,7 @@ uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_parenthesize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1Unbox_parenthesizer___closed__2; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__4___closed__1; @@ -361,7 +365,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Paren static lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___closed__3; extern lean_object* l_Lean_Core_instMonadQuotationCoreM; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkKind___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__5; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -374,7 +377,6 @@ static lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___clos static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__10___closed__21; static lean_object* l_Lean_PrettyPrinter_parenthesize___closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__10___closed__12; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instMonadQuotation___rarg(lean_object*, lean_object*, lean_object*); @@ -401,7 +403,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer_wrapParens___closed__3; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__3; @@ -438,7 +440,6 @@ lean_object* l_Lean_ScopedEnvExtension_getState___rarg(lean_object*, lean_object lean_object* l_Lean_Syntax_Traverser_setCur(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkTailWs_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_error_parenthesizer___rarg(lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1; extern lean_object* l_Lean_PrettyPrinter_backtrackExceptionId; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer(lean_object*); @@ -456,7 +457,6 @@ lean_object* l_Array_back___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___boxed(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack___rarg___closed__1; static lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__6; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -464,6 +464,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_instCoeForAllParenth static lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__10___closed__15; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_parenthesize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__3___closed__3; +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_tokenWithAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -481,6 +482,7 @@ lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_contPrec___default; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -541,12 +543,12 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1NoAntiquot_pare LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3; lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Parser_getCategory___spec__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkTailWs_parenthesizer___rarg(lean_object*); static lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__11; -static lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12; lean_object* l_Nat_repr(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKindUnsafe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___closed__1; @@ -6388,6 +6390,22 @@ lean_dec(x_3); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_recover_x27_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_apply_5(x_1, x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_mkAntiquot_parenthesizer_x27___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: { @@ -10120,7 +10138,7 @@ x_10 = l_Lean_PrettyPrinter_Parenthesizer_ite___rarg(x_9, x_2, x_3, x_4, x_5, x_ return x_10; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4262_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4278_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -10786,7 +10804,7 @@ x_6 = l_Lean_PrettyPrinter_parenthesizeCategory(x_5, x_1, x_2, x_3, x_4); return x_6; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10796,17 +10814,17 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1; x_2 = l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3() { _start: { lean_object* x_1; @@ -10814,17 +10832,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5() { _start: { lean_object* x_1; @@ -10832,47 +10850,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6; x_2 = l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7; x_2 = l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8; x_2 = l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10() { _start: { lean_object* x_1; @@ -10880,33 +10898,33 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9; -x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10; +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9; +x_2 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12() { +static lean_object* _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11; -x_2 = lean_unsigned_to_nat(4568u); +x_1 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11; +x_2 = lean_unsigned_to_nat(4584u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__2; x_3 = 0; -x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12; +x_4 = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -11333,7 +11351,7 @@ l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___closed__1 = _ lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___closed__1); l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1); -if (builtin) {res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4262_(lean_io_mk_world()); +if (builtin) {res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4278_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef); @@ -11352,31 +11370,31 @@ l_Lean_PrettyPrinter_parenthesizeCommand___closed__1 = _init_l_Lean_PrettyPrinte lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeCommand___closed__1); l_Lean_PrettyPrinter_parenthesizeCommand___closed__2 = _init_l_Lean_PrettyPrinter_parenthesizeCommand___closed__2(); lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeCommand___closed__2); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__1); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__2); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__3); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__4); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__5); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__6); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__7); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__8); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__9); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__10); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__11); -l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12(); -lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568____closed__12); -if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4568_(lean_io_mk_world()); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__1); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__2); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__3); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__4); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__5); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__6); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__7); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__8); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__9); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__10); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__11); +l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12 = _init_l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12(); +lean_mark_persistent(l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584____closed__12); +if (builtin) {res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_4584_(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/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c index 0d7950405d..27f3dd9adf 100644 --- a/stage0/stdlib/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -197,6 +197,7 @@ static lean_object* l_Lean_resetTraceState___rarg___closed__1; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNode___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Util_Trace___hyg_2607____closed__15; LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg___lambda__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_exceptEmoji___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_printTraces___spec__3___rarg___lambda__3(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1(lean_object*, lean_object*, lean_object*); @@ -341,6 +342,7 @@ static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__24; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__4; LEAN_EXPORT lean_object* l_Lean_shouldEnableNestedTrace___rarg___lambda__1(lean_object*, uint8_t, double, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___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_exceptEmoji___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1330_(lean_object*); LEAN_EXPORT lean_object* l_Lean_printTraces___rarg___lambda__1___boxed(lean_object*, lean_object*); @@ -380,6 +382,7 @@ static lean_object* l___auto____x40_Lean_Util_Trace___hyg_2607____closed__9; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8___boxed(lean_object**); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__15; +LEAN_EXPORT lean_object* l_Lean_exceptEmoji(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__8___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*, lean_object*, lean_object*); @@ -6855,6 +6858,40 @@ lean_dec(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_exceptEmoji___rarg(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_crossEmoji; +return x_2; +} +else +{ +lean_object* x_3; +x_3 = l_Lean_checkEmoji; +return x_3; +} +} +} +LEAN_EXPORT lean_object* l_Lean_exceptEmoji(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_exceptEmoji___rarg___boxed), 1, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_exceptEmoji___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_exceptEmoji___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} static lean_object* _init_l_Lean_instExceptToEmojiBool___closed__1() { _start: {